@forge/cli-shared 7.1.0-next.7 → 8.0.0-experimental-71cedbc
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 +108 -0
- package/out/app-logs/graphql-client.d.ts +1 -1
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +33 -18
- package/out/app-logs/view-logs.d.ts +4 -2
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -3
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +4 -1
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +4 -2
- package/out/file-system/file-system-reader.d.ts +1 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +1705 -382
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +203 -115
- package/out/service/bridge-script-service.d.ts +1 -0
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/i18n-resource-bundling-service.d.ts +1 -0
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.d.ts +1 -0
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +2 -3
- package/out/ui/command-line-ui.d.ts +0 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +0 -5
- package/out/ui/logger.d.ts +0 -1
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +0 -2
- package/out/ui/text.d.ts +0 -14
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -20
- package/package.json +3 -3
|
@@ -123,6 +123,350 @@ export declare type AiConfigResponse = {
|
|
|
123
123
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
124
124
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
125
125
|
};
|
|
126
|
+
export declare type AvpAddDashboardElementInput = {
|
|
127
|
+
canvasRowId: Scalars['ID']['input'];
|
|
128
|
+
dashboardAri: Scalars['ID']['input'];
|
|
129
|
+
insertIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
130
|
+
};
|
|
131
|
+
export declare type AvpAddDashboardElementPayload = Payload & {
|
|
132
|
+
__typename?: 'AVPAddDashboardElementPayload';
|
|
133
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
134
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135
|
+
success: Scalars['Boolean']['output'];
|
|
136
|
+
};
|
|
137
|
+
export declare type AvpAddDashboardRowInput = {
|
|
138
|
+
dashboardAri: Scalars['ID']['input'];
|
|
139
|
+
height?: InputMaybe<AvpCanvasRowHeight>;
|
|
140
|
+
numElements?: InputMaybe<Scalars['Int']['input']>;
|
|
141
|
+
rowIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
142
|
+
};
|
|
143
|
+
export declare type AvpAddDashboardRowPayload = Payload & {
|
|
144
|
+
__typename?: 'AVPAddDashboardRowPayload';
|
|
145
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
146
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147
|
+
success: Scalars['Boolean']['output'];
|
|
148
|
+
};
|
|
149
|
+
export declare enum AvpCanvasRowHeight {
|
|
150
|
+
Large = "large",
|
|
151
|
+
Medium = "medium",
|
|
152
|
+
Small = "small",
|
|
153
|
+
Xsmall = "xsmall"
|
|
154
|
+
}
|
|
155
|
+
export declare type AvpChart = {
|
|
156
|
+
__typename?: 'AVPChart';
|
|
157
|
+
chartConfig?: Maybe<AvpChartConfig>;
|
|
158
|
+
chartLayout?: Maybe<AvpChartLayout>;
|
|
159
|
+
chartType?: Maybe<Scalars['String']['output']>;
|
|
160
|
+
envVarId?: Maybe<Scalars['ID']['output']>;
|
|
161
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
162
|
+
pipelineId?: Maybe<Scalars['ID']['output']>;
|
|
163
|
+
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
164
|
+
};
|
|
165
|
+
export declare type AvpChartClientSettings = {
|
|
166
|
+
__typename?: 'AVPChartClientSettings';
|
|
167
|
+
options?: Maybe<Array<AvpChartSetting>>;
|
|
168
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
169
|
+
};
|
|
170
|
+
export declare type AvpChartClientSettingsInput = {
|
|
171
|
+
options?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
172
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
+
};
|
|
174
|
+
export declare type AvpChartConfig = {
|
|
175
|
+
__typename?: 'AVPChartConfig';
|
|
176
|
+
clientSettings?: Maybe<AvpChartClientSettings>;
|
|
177
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
178
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
179
|
+
settings?: Maybe<Array<AvpChartSetting>>;
|
|
180
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
181
|
+
};
|
|
182
|
+
export declare type AvpChartConfigInput = {
|
|
183
|
+
clientSettings?: InputMaybe<AvpChartClientSettingsInput>;
|
|
184
|
+
settings?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
185
|
+
};
|
|
186
|
+
export declare type AvpChartInput = {
|
|
187
|
+
chartConfig?: InputMaybe<AvpChartConfigInput>;
|
|
188
|
+
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
189
|
+
envVarId?: InputMaybe<Scalars['ID']['input']>;
|
|
190
|
+
pipelineId?: InputMaybe<Scalars['ID']['input']>;
|
|
191
|
+
templateChartId?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
};
|
|
193
|
+
export declare type AvpChartLayout = {
|
|
194
|
+
__typename?: 'AVPChartLayout';
|
|
195
|
+
blocksHigh?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
blocksWide?: Maybe<Scalars['Int']['output']>;
|
|
197
|
+
x?: Maybe<Scalars['Int']['output']>;
|
|
198
|
+
y?: Maybe<Scalars['Int']['output']>;
|
|
199
|
+
z?: Maybe<Scalars['Int']['output']>;
|
|
200
|
+
};
|
|
201
|
+
export declare type AvpChartSetting = {
|
|
202
|
+
__typename?: 'AVPChartSetting';
|
|
203
|
+
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
204
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
205
|
+
};
|
|
206
|
+
export declare type AvpChartSettingInput = {
|
|
207
|
+
jsonValue?: InputMaybe<Scalars['String']['input']>;
|
|
208
|
+
name: Scalars['String']['input'];
|
|
209
|
+
};
|
|
210
|
+
export declare type AvpClearChartInRowPayload = Payload & {
|
|
211
|
+
__typename?: 'AVPClearChartInRowPayload';
|
|
212
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
213
|
+
errors?: Maybe<Array<MutationError>>;
|
|
214
|
+
success: Scalars['Boolean']['output'];
|
|
215
|
+
};
|
|
216
|
+
export declare type AvpClearChartsInRowInput = {
|
|
217
|
+
dashboardAri: Scalars['ID']['input'];
|
|
218
|
+
rowId: Scalars['ID']['input'];
|
|
219
|
+
};
|
|
220
|
+
export declare type AvpCopyChartInput = {
|
|
221
|
+
chartAri: Scalars['ID']['input'];
|
|
222
|
+
};
|
|
223
|
+
export declare type AvpCopyChartPayload = Payload & {
|
|
224
|
+
__typename?: 'AVPCopyChartPayload';
|
|
225
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
226
|
+
chart?: Maybe<AvpChart>;
|
|
227
|
+
errors?: Maybe<Array<MutationError>>;
|
|
228
|
+
success: Scalars['Boolean']['output'];
|
|
229
|
+
};
|
|
230
|
+
export declare type AvpCopyDashboardRowInput = {
|
|
231
|
+
dashboardAri: Scalars['ID']['input'];
|
|
232
|
+
rowId: Scalars['ID']['input'];
|
|
233
|
+
};
|
|
234
|
+
export declare type AvpCopyDashboardRowPayload = Payload & {
|
|
235
|
+
__typename?: 'AVPCopyDashboardRowPayload';
|
|
236
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
237
|
+
charts?: Maybe<Array<AvpChart>>;
|
|
238
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239
|
+
success: Scalars['Boolean']['output'];
|
|
240
|
+
};
|
|
241
|
+
export declare type AvpCreateChartInput = {
|
|
242
|
+
canvasElementId?: InputMaybe<Scalars['ID']['input']>;
|
|
243
|
+
chart: AvpChartInput;
|
|
244
|
+
dashboardAri: Scalars['ID']['input'];
|
|
245
|
+
};
|
|
246
|
+
export declare type AvpCreateChartPayload = Payload & {
|
|
247
|
+
__typename?: 'AVPCreateChartPayload';
|
|
248
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
249
|
+
chart?: Maybe<AvpChart>;
|
|
250
|
+
errors?: Maybe<Array<MutationError>>;
|
|
251
|
+
success: Scalars['Boolean']['output'];
|
|
252
|
+
};
|
|
253
|
+
export declare type AvpDashboard = {
|
|
254
|
+
__typename?: 'AVPDashboard';
|
|
255
|
+
access?: Maybe<Scalars['Int']['output']>;
|
|
256
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
257
|
+
charts?: Maybe<Array<AvpChart>>;
|
|
258
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
259
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
260
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
261
|
+
envVars?: Maybe<Array<AvpEnvVar>>;
|
|
262
|
+
fromTemplate?: Maybe<Scalars['String']['output']>;
|
|
263
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
264
|
+
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
265
|
+
settings?: Maybe<AvpDashboardSettings>;
|
|
266
|
+
status?: Maybe<AvpDashboardStatus>;
|
|
267
|
+
templateVersion?: Maybe<Scalars['Int']['output']>;
|
|
268
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
269
|
+
trashedAt?: Maybe<Scalars['String']['output']>;
|
|
270
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
271
|
+
};
|
|
272
|
+
export declare type AvpDashboardCanvasLayout = {
|
|
273
|
+
__typename?: 'AVPDashboardCanvasLayout';
|
|
274
|
+
controlIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
275
|
+
rows?: Maybe<Array<AvpDashboardCanvasLayoutRow>>;
|
|
276
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
277
|
+
};
|
|
278
|
+
export declare type AvpDashboardCanvasLayoutElement = {
|
|
279
|
+
__typename?: 'AVPDashboardCanvasLayoutElement';
|
|
280
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
281
|
+
item?: Maybe<AvpDashboardCanvasLayoutItem>;
|
|
282
|
+
span?: Maybe<Scalars['Int']['output']>;
|
|
283
|
+
};
|
|
284
|
+
export declare type AvpDashboardCanvasLayoutItem = {
|
|
285
|
+
__typename?: 'AVPDashboardCanvasLayoutItem';
|
|
286
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
287
|
+
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
288
|
+
};
|
|
289
|
+
export declare type AvpDashboardCanvasLayoutRow = {
|
|
290
|
+
__typename?: 'AVPDashboardCanvasLayoutRow';
|
|
291
|
+
elements?: Maybe<Array<AvpDashboardCanvasLayoutElement>>;
|
|
292
|
+
height?: Maybe<AvpCanvasRowHeight>;
|
|
293
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
294
|
+
};
|
|
295
|
+
export declare type AvpDashboardInput = {
|
|
296
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
297
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
298
|
+
settings?: InputMaybe<AvpDashboardSettingsInput>;
|
|
299
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
300
|
+
};
|
|
301
|
+
export declare type AvpDashboardSettings = {
|
|
302
|
+
__typename?: 'AVPDashboardSettings';
|
|
303
|
+
allowTzOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
304
|
+
allowViewerRefresh?: Maybe<Scalars['Boolean']['output']>;
|
|
305
|
+
autoApplyVars?: Maybe<Scalars['Boolean']['output']>;
|
|
306
|
+
autoRefreshInterval?: Maybe<Scalars['Int']['output']>;
|
|
307
|
+
cacheDuration?: Maybe<Scalars['Int']['output']>;
|
|
308
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
309
|
+
refreshMethod?: Maybe<AvpRefreshMethod>;
|
|
310
|
+
subscriptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
311
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
312
|
+
};
|
|
313
|
+
export declare type AvpDashboardSettingsInput = {
|
|
314
|
+
allowTzOverride?: InputMaybe<Scalars['Boolean']['input']>;
|
|
315
|
+
allowViewerRefresh?: InputMaybe<Scalars['Boolean']['input']>;
|
|
316
|
+
autoApplyVars?: InputMaybe<Scalars['Boolean']['input']>;
|
|
317
|
+
autoRefreshInterval?: InputMaybe<Scalars['Int']['input']>;
|
|
318
|
+
cacheDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
319
|
+
refreshMethod?: InputMaybe<AvpRefreshMethod>;
|
|
320
|
+
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
321
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
322
|
+
};
|
|
323
|
+
export declare enum AvpDashboardStatus {
|
|
324
|
+
Active = "ACTIVE",
|
|
325
|
+
Archived = "ARCHIVED",
|
|
326
|
+
Trashed = "TRASHED"
|
|
327
|
+
}
|
|
328
|
+
export declare type AvpDeleteChartInput = {
|
|
329
|
+
chartAri: Scalars['ID']['input'];
|
|
330
|
+
};
|
|
331
|
+
export declare type AvpDeleteChartPayload = Payload & {
|
|
332
|
+
__typename?: 'AVPDeleteChartPayload';
|
|
333
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
335
|
+
success: Scalars['Boolean']['output'];
|
|
336
|
+
};
|
|
337
|
+
export declare type AvpEnvVar = {
|
|
338
|
+
__typename?: 'AVPEnvVar';
|
|
339
|
+
chartId?: Maybe<Scalars['ID']['output']>;
|
|
340
|
+
dataType?: Maybe<AvpEnvVarDataType>;
|
|
341
|
+
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
342
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
343
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
344
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
345
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
346
|
+
};
|
|
347
|
+
export declare enum AvpEnvVarDataType {
|
|
348
|
+
Boolean = "BOOLEAN",
|
|
349
|
+
Date = "DATE",
|
|
350
|
+
Datetime = "DATETIME",
|
|
351
|
+
DateRange = "DATE_RANGE",
|
|
352
|
+
Number = "NUMBER",
|
|
353
|
+
NumberRange = "NUMBER_RANGE",
|
|
354
|
+
Text = "TEXT"
|
|
355
|
+
}
|
|
356
|
+
export declare type AvpMoveCanvasElementInput = {
|
|
357
|
+
dashboardAri: Scalars['ID']['input'];
|
|
358
|
+
sourceElementId: Scalars['ID']['input'];
|
|
359
|
+
sourceRowId: Scalars['ID']['input'];
|
|
360
|
+
targetElementIndex: Scalars['Int']['input'];
|
|
361
|
+
targetRowId: Scalars['ID']['input'];
|
|
362
|
+
};
|
|
363
|
+
export declare type AvpMoveCanvasElementPayload = Payload & {
|
|
364
|
+
__typename?: 'AVPMoveCanvasElementPayload';
|
|
365
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
367
|
+
success: Scalars['Boolean']['output'];
|
|
368
|
+
};
|
|
369
|
+
export declare type AvpMoveCanvasElementToNewRowInput = {
|
|
370
|
+
dashboardAri: Scalars['ID']['input'];
|
|
371
|
+
sourceElementId: Scalars['ID']['input'];
|
|
372
|
+
sourceRowId: Scalars['ID']['input'];
|
|
373
|
+
targetRowIndex: Scalars['Int']['input'];
|
|
374
|
+
};
|
|
375
|
+
export declare type AvpMoveCanvasElementToNewRowPayload = Payload & {
|
|
376
|
+
__typename?: 'AVPMoveCanvasElementToNewRowPayload';
|
|
377
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
379
|
+
success: Scalars['Boolean']['output'];
|
|
380
|
+
};
|
|
381
|
+
export declare type AvpMoveDashboardRowInput = {
|
|
382
|
+
dashboardAri: Scalars['ID']['input'];
|
|
383
|
+
sourceRowId: Scalars['ID']['input'];
|
|
384
|
+
targetRowIndex: Scalars['Int']['input'];
|
|
385
|
+
};
|
|
386
|
+
export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
387
|
+
__typename?: 'AVPMoveDashboardRowPayload';
|
|
388
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
389
|
+
errors?: Maybe<Array<MutationError>>;
|
|
390
|
+
success: Scalars['Boolean']['output'];
|
|
391
|
+
};
|
|
392
|
+
export declare enum AvpRefreshMethod {
|
|
393
|
+
RefreshAuto = "REFRESH_AUTO",
|
|
394
|
+
RefreshLoad = "REFRESH_LOAD",
|
|
395
|
+
RefreshManual = "REFRESH_MANUAL",
|
|
396
|
+
RefreshSmart = "REFRESH_SMART"
|
|
397
|
+
}
|
|
398
|
+
export declare type AvpRemoveDashboardElementInput = {
|
|
399
|
+
canvasElementId: Scalars['ID']['input'];
|
|
400
|
+
dashboardAri: Scalars['ID']['input'];
|
|
401
|
+
};
|
|
402
|
+
export declare type AvpRemoveDashboardElementPayload = Payload & {
|
|
403
|
+
__typename?: 'AVPRemoveDashboardElementPayload';
|
|
404
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
406
|
+
success: Scalars['Boolean']['output'];
|
|
407
|
+
};
|
|
408
|
+
export declare type AvpRemoveDashboardRowInput = {
|
|
409
|
+
dashboardAri: Scalars['ID']['input'];
|
|
410
|
+
rowId: Scalars['ID']['input'];
|
|
411
|
+
};
|
|
412
|
+
export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
413
|
+
__typename?: 'AVPRemoveDashboardRowPayload';
|
|
414
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
415
|
+
errors?: Maybe<Array<MutationError>>;
|
|
416
|
+
success: Scalars['Boolean']['output'];
|
|
417
|
+
};
|
|
418
|
+
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
419
|
+
dashboardAri: Scalars['ID']['input'];
|
|
420
|
+
elementId: Scalars['ID']['input'];
|
|
421
|
+
};
|
|
422
|
+
export declare type AvpToggleCanvasElementExpandedPayload = Payload & {
|
|
423
|
+
__typename?: 'AVPToggleCanvasElementExpandedPayload';
|
|
424
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
425
|
+
errors?: Maybe<Array<MutationError>>;
|
|
426
|
+
success: Scalars['Boolean']['output'];
|
|
427
|
+
};
|
|
428
|
+
export declare type AvpUpdateChartInput = {
|
|
429
|
+
chart: AvpChartInput;
|
|
430
|
+
chartAri: Scalars['ID']['input'];
|
|
431
|
+
};
|
|
432
|
+
export declare type AvpUpdateChartPayload = Payload & {
|
|
433
|
+
__typename?: 'AVPUpdateChartPayload';
|
|
434
|
+
chart?: Maybe<AvpChart>;
|
|
435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
436
|
+
success: Scalars['Boolean']['output'];
|
|
437
|
+
};
|
|
438
|
+
export declare type AvpUpdateDashboardInput = {
|
|
439
|
+
dashboard: AvpDashboardInput;
|
|
440
|
+
dashboardAri: Scalars['ID']['input'];
|
|
441
|
+
};
|
|
442
|
+
export declare type AvpUpdateDashboardPayload = Payload & {
|
|
443
|
+
__typename?: 'AVPUpdateDashboardPayload';
|
|
444
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
446
|
+
success: Scalars['Boolean']['output'];
|
|
447
|
+
};
|
|
448
|
+
export declare type AvpUpdateDashboardRowHeightInput = {
|
|
449
|
+
dashboardAri: Scalars['ID']['input'];
|
|
450
|
+
height: AvpCanvasRowHeight;
|
|
451
|
+
rowId: Scalars['ID']['input'];
|
|
452
|
+
};
|
|
453
|
+
export declare type AvpUpdateDashboardRowHeightPayload = Payload & {
|
|
454
|
+
__typename?: 'AVPUpdateDashboardRowHeightPayload';
|
|
455
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
457
|
+
success: Scalars['Boolean']['output'];
|
|
458
|
+
};
|
|
459
|
+
export declare type AvpUpdateDashboardRowNumElementsInput = {
|
|
460
|
+
dashboardAri: Scalars['ID']['input'];
|
|
461
|
+
numElements: Scalars['Int']['input'];
|
|
462
|
+
rowId: Scalars['ID']['input'];
|
|
463
|
+
};
|
|
464
|
+
export declare type AvpUpdateDashboardRowNumElementsPayload = Payload & {
|
|
465
|
+
__typename?: 'AVPUpdateDashboardRowNumElementsPayload';
|
|
466
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
467
|
+
errors?: Maybe<Array<MutationError>>;
|
|
468
|
+
success: Scalars['Boolean']['output'];
|
|
469
|
+
};
|
|
126
470
|
export declare enum AcceptableResponse {
|
|
127
471
|
False = "FALSE",
|
|
128
472
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -725,6 +1069,36 @@ export declare type AddPublicLinkPermissionsPayload = Payload & {
|
|
|
725
1069
|
success: Scalars['Boolean']['output'];
|
|
726
1070
|
};
|
|
727
1071
|
export declare type Admin = JiraUser | JiraUserGroup;
|
|
1072
|
+
export declare type AdminAccessUrl = {
|
|
1073
|
+
__typename?: 'AdminAccessUrl';
|
|
1074
|
+
expirationDate?: Maybe<Scalars['String']['output']>;
|
|
1075
|
+
id: Scalars['ID']['output'];
|
|
1076
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
1077
|
+
resources?: Maybe<Array<AdminResource>>;
|
|
1078
|
+
status: Scalars['String']['output'];
|
|
1079
|
+
url: Scalars['String']['output'];
|
|
1080
|
+
};
|
|
1081
|
+
export declare type AdminAccessUrlConnection = {
|
|
1082
|
+
__typename?: 'AdminAccessUrlConnection';
|
|
1083
|
+
edges?: Maybe<Array<AdminAccessUrlEdge>>;
|
|
1084
|
+
pageInfo: PageInfo;
|
|
1085
|
+
};
|
|
1086
|
+
export declare type AdminAccessUrlCreationResponsePayload = Payload & {
|
|
1087
|
+
__typename?: 'AdminAccessUrlCreationResponsePayload';
|
|
1088
|
+
accessUrl?: Maybe<AdminAccessUrl>;
|
|
1089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1090
|
+
success: Scalars['Boolean']['output'];
|
|
1091
|
+
};
|
|
1092
|
+
export declare type AdminAccessUrlDeletionResponsePayload = Payload & {
|
|
1093
|
+
__typename?: 'AdminAccessUrlDeletionResponsePayload';
|
|
1094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1095
|
+
success: Scalars['Boolean']['output'];
|
|
1096
|
+
};
|
|
1097
|
+
export declare type AdminAccessUrlEdge = {
|
|
1098
|
+
__typename?: 'AdminAccessUrlEdge';
|
|
1099
|
+
cursor: Scalars['String']['output'];
|
|
1100
|
+
node: AdminAccessUrl;
|
|
1101
|
+
};
|
|
728
1102
|
export declare type AdminAnnouncementBannerFeature = {
|
|
729
1103
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
730
1104
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -746,6 +1120,12 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
746
1120
|
ScheduledStartDate = "SCHEDULED_START_DATE",
|
|
747
1121
|
Visibility = "VISIBILITY"
|
|
748
1122
|
}
|
|
1123
|
+
export declare type AdminPolicy = AdminAccessUrl;
|
|
1124
|
+
export declare type AdminResource = AdminSite;
|
|
1125
|
+
export declare type AdminSite = {
|
|
1126
|
+
__typename?: 'AdminSite';
|
|
1127
|
+
id: Scalars['ID']['output'];
|
|
1128
|
+
};
|
|
749
1129
|
export declare type AgentAiContextPanelResponse = {
|
|
750
1130
|
__typename?: 'AgentAIContextPanelResponse';
|
|
751
1131
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
@@ -817,6 +1197,7 @@ export declare type AgentStudioAgentEdge = {
|
|
|
817
1197
|
};
|
|
818
1198
|
export declare type AgentStudioAgentQueryInput = {
|
|
819
1199
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
+
onlyCodingAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
820
1201
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
821
1202
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
822
1203
|
};
|
|
@@ -836,8 +1217,11 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
836
1217
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
837
1218
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
838
1219
|
creator?: Maybe<User>;
|
|
1220
|
+
creatorType?: Maybe<Scalars['String']['output']>;
|
|
839
1221
|
description?: Maybe<Scalars['String']['output']>;
|
|
1222
|
+
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
840
1223
|
id: Scalars['ID']['output'];
|
|
1224
|
+
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
841
1225
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
842
1226
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
843
1227
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
@@ -2052,6 +2436,14 @@ export declare type AppStorageAdmin = {
|
|
|
2052
2436
|
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2053
2437
|
input: AppStorageKvsQueryInput;
|
|
2054
2438
|
};
|
|
2439
|
+
export declare type AppStorageAdminMutation = {
|
|
2440
|
+
__typename?: 'AppStorageAdminMutation';
|
|
2441
|
+
appId: Scalars['ID']['output'];
|
|
2442
|
+
kvsSet?: Maybe<AppStorageKvsSetPayload>;
|
|
2443
|
+
};
|
|
2444
|
+
export declare type AppStorageAdminMutationKvsSetArgs = {
|
|
2445
|
+
input: AppStorageKvsSetInput;
|
|
2446
|
+
};
|
|
2055
2447
|
export declare type AppStorageCustomEntityMutation = {
|
|
2056
2448
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2057
2449
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2083,6 +2475,19 @@ export declare type AppStorageKvsQueryPayload = {
|
|
|
2083
2475
|
pageInfo: AppStoragePageInfo;
|
|
2084
2476
|
totalCount: Scalars['Int']['output'];
|
|
2085
2477
|
};
|
|
2478
|
+
export declare type AppStorageKvsSetInput = {
|
|
2479
|
+
contextAri: Scalars['ID']['input'];
|
|
2480
|
+
environmentId: Scalars['ID']['input'];
|
|
2481
|
+
installationId: Scalars['ID']['input'];
|
|
2482
|
+
key: Scalars['String']['input'];
|
|
2483
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2484
|
+
value: Scalars['AppStorageEntityValue']['input'];
|
|
2485
|
+
};
|
|
2486
|
+
export declare type AppStorageKvsSetPayload = {
|
|
2487
|
+
__typename?: 'AppStorageKvsSetPayload';
|
|
2488
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2489
|
+
success: Scalars['Boolean']['output'];
|
|
2490
|
+
};
|
|
2086
2491
|
export declare type AppStorageMutation = {
|
|
2087
2492
|
__typename?: 'AppStorageMutation';
|
|
2088
2493
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -3697,6 +4102,15 @@ export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienc
|
|
|
3697
4102
|
export declare enum CcpCancelEntitlementExperienceCapabilityReasonCode {
|
|
3698
4103
|
EntitlementIsCollectionInstance = "ENTITLEMENT_IS_COLLECTION_INSTANCE"
|
|
3699
4104
|
}
|
|
4105
|
+
export declare type CcpCatalogAccount = Node & {
|
|
4106
|
+
__typename?: 'CcpCatalogAccount';
|
|
4107
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4108
|
+
id: Scalars['ID']['output'];
|
|
4109
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
4110
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4111
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4112
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
4113
|
+
};
|
|
3700
4114
|
export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability & {
|
|
3701
4115
|
__typename?: 'CcpChangeOfferingExperienceCapability';
|
|
3702
4116
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -4010,14 +4424,29 @@ export declare enum CcpEntitlementStatus {
|
|
|
4010
4424
|
Active = "ACTIVE",
|
|
4011
4425
|
Inactive = "INACTIVE"
|
|
4012
4426
|
}
|
|
4013
|
-
export declare type CcpEntitlementTemplate = {
|
|
4427
|
+
export declare type CcpEntitlementTemplate = Node & {
|
|
4014
4428
|
__typename?: 'CcpEntitlementTemplate';
|
|
4429
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4430
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4015
4431
|
data?: Maybe<Scalars['String']['output']>;
|
|
4432
|
+
defaultRevision?: Maybe<Scalars['Boolean']['output']>;
|
|
4433
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4434
|
+
id: Scalars['ID']['output'];
|
|
4016
4435
|
key?: Maybe<Scalars['ID']['output']>;
|
|
4436
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
4017
4437
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
4438
|
+
status?: Maybe<CcpEntitlementTemplateStatus>;
|
|
4439
|
+
uniqueKey?: Maybe<Scalars['ID']['output']>;
|
|
4440
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4018
4441
|
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
4019
4442
|
version?: Maybe<Scalars['Int']['output']>;
|
|
4020
4443
|
};
|
|
4444
|
+
export declare enum CcpEntitlementTemplateStatus {
|
|
4445
|
+
Deprecated = "DEPRECATED",
|
|
4446
|
+
None = "NONE",
|
|
4447
|
+
Published = "PUBLISHED",
|
|
4448
|
+
Unpublished = "UNPUBLISHED"
|
|
4449
|
+
}
|
|
4021
4450
|
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
4022
4451
|
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
4023
4452
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -4782,8 +5211,11 @@ export declare type CcpPurchaseOrder = {
|
|
|
4782
5211
|
};
|
|
4783
5212
|
export declare type CcpQueryApi = {
|
|
4784
5213
|
__typename?: 'CcpQueryApi';
|
|
5214
|
+
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
4785
5215
|
entitlement?: Maybe<CcpEntitlement>;
|
|
5216
|
+
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
4786
5217
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5218
|
+
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4787
5219
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4788
5220
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
4789
5221
|
offering?: Maybe<CcpOffering>;
|
|
@@ -4799,12 +5231,21 @@ export declare type CcpQueryApi = {
|
|
|
4799
5231
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4800
5232
|
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4801
5233
|
};
|
|
5234
|
+
export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
5235
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5236
|
+
};
|
|
4802
5237
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4803
5238
|
id: Scalars['ID']['input'];
|
|
4804
5239
|
};
|
|
5240
|
+
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
5241
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5242
|
+
};
|
|
4805
5243
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
4806
5244
|
ids: Array<Scalars['ID']['input']>;
|
|
4807
5245
|
};
|
|
5246
|
+
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
5247
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5248
|
+
};
|
|
4808
5249
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
4809
5250
|
ids: Array<Scalars['ID']['input']>;
|
|
4810
5251
|
};
|
|
@@ -5416,6 +5857,27 @@ export declare enum ChannelPlatformMutationStatus {
|
|
|
5416
5857
|
Failure = "FAILURE",
|
|
5417
5858
|
Success = "SUCCESS"
|
|
5418
5859
|
}
|
|
5860
|
+
export declare enum ChannelPlatformParticipantRole {
|
|
5861
|
+
Agent = "AGENT",
|
|
5862
|
+
Customer = "CUSTOMER",
|
|
5863
|
+
CustomBot = "CUSTOM_BOT",
|
|
5864
|
+
Supervisor = "SUPERVISOR",
|
|
5865
|
+
System = "SYSTEM"
|
|
5866
|
+
}
|
|
5867
|
+
export declare type ChannelPlatformPluginActionRequest = {
|
|
5868
|
+
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
5869
|
+
appId?: InputMaybe<Scalars['String']['input']>;
|
|
5870
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
5871
|
+
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5872
|
+
};
|
|
5873
|
+
export declare type ChannelPlatformPluginActionResponse = {
|
|
5874
|
+
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
5875
|
+
response?: Maybe<Scalars['JSON']['output']>;
|
|
5876
|
+
};
|
|
5877
|
+
export declare enum ChannelPlatformRole {
|
|
5878
|
+
Agent = "AGENT",
|
|
5879
|
+
Customer = "CUSTOMER"
|
|
5880
|
+
}
|
|
5419
5881
|
export declare type ChannelPlatformSampleQueue = {
|
|
5420
5882
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
5421
5883
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -5428,6 +5890,7 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5428
5890
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5429
5891
|
};
|
|
5430
5892
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5893
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5431
5894
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5432
5895
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5433
5896
|
};
|
|
@@ -5442,6 +5905,27 @@ export declare type ChannelPlatformSubmitTicketResponse = {
|
|
|
5442
5905
|
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
5443
5906
|
};
|
|
5444
5907
|
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
5908
|
+
export declare type ChannelPlatformTranscriptEntry = {
|
|
5909
|
+
__typename?: 'ChannelPlatformTranscriptEntry';
|
|
5910
|
+
contactId?: Maybe<Scalars['String']['output']>;
|
|
5911
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
5912
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
5913
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
5914
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5915
|
+
initialContactId?: Maybe<Scalars['String']['output']>;
|
|
5916
|
+
participantId?: Maybe<Scalars['String']['output']>;
|
|
5917
|
+
participantRole?: Maybe<ChannelPlatformParticipantRole>;
|
|
5918
|
+
time?: Maybe<Scalars['String']['output']>;
|
|
5919
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
5920
|
+
};
|
|
5921
|
+
export declare type ChannelPlatformTranscriptRequest = {
|
|
5922
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
5923
|
+
role?: InputMaybe<ChannelPlatformRole>;
|
|
5924
|
+
};
|
|
5925
|
+
export declare type ChannelPlatformTranscriptResponse = {
|
|
5926
|
+
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
5927
|
+
chatTranscript?: Maybe<Array<Maybe<ChannelPlatformTranscriptEntry>>>;
|
|
5928
|
+
};
|
|
5445
5929
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
5446
5930
|
cloudId: Scalars['ID']['input'];
|
|
5447
5931
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -7095,6 +7579,7 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
7095
7579
|
appliedSince: Scalars['DateTime']['output'];
|
|
7096
7580
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
7097
7581
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
7582
|
+
scorecardMaturityLevelHistories?: Maybe<CompassScorecardMaturityLevelHistoryConnection>;
|
|
7098
7583
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
7099
7584
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
7100
7585
|
};
|
|
@@ -7109,6 +7594,11 @@ export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesA
|
|
|
7109
7594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7110
7595
|
query?: InputMaybe<CompassScorecardCriteriaScoreHistoryQuery>;
|
|
7111
7596
|
};
|
|
7597
|
+
export declare type CompassComponentScorecardRelationshipScorecardMaturityLevelHistoriesArgs = {
|
|
7598
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7600
|
+
query?: InputMaybe<CompassScorecardMaturityLevelHistoryQuery>;
|
|
7601
|
+
};
|
|
7112
7602
|
export declare type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
7113
7603
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7114
7604
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7420,6 +7910,7 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
7420
7910
|
};
|
|
7421
7911
|
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
7422
7912
|
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
7913
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7423
7914
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7424
7915
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7425
7916
|
weight: Scalars['Int']['input'];
|
|
@@ -7452,6 +7943,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
7452
7943
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
7453
7944
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7454
7945
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7946
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7455
7947
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7456
7948
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7457
7949
|
weight: Scalars['Int']['input'];
|
|
@@ -7461,6 +7953,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7461
7953
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7462
7954
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7463
7955
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7956
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7464
7957
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7465
7958
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7466
7959
|
weight: Scalars['Int']['input'];
|
|
@@ -7468,6 +7961,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7468
7961
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
7469
7962
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7470
7963
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7964
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7471
7965
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7472
7966
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
7473
7967
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7477,6 +7971,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
7477
7971
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
7478
7972
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7479
7973
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7974
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7480
7975
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
7481
7976
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7482
7977
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7486,6 +7981,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
7486
7981
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
7487
7982
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7488
7983
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7984
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7489
7985
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7490
7986
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7491
7987
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -7495,6 +7991,7 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7495
7991
|
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
7496
7992
|
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
7497
7993
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7994
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7498
7995
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7499
7996
|
packageManager: CompassPackageDependencyManagerOptions;
|
|
7500
7997
|
packageName: Scalars['String']['input'];
|
|
@@ -7948,6 +8445,7 @@ export declare type CompassCustomNumberFieldFilter = CompassCustomFieldFilter &
|
|
|
7948
8445
|
export declare type CompassCustomNumberFieldFilterInput = {
|
|
7949
8446
|
comparator?: InputMaybe<CustomNumberFieldInputComparators>;
|
|
7950
8447
|
customFieldId: Scalars['String']['input'];
|
|
8448
|
+
values?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
7951
8449
|
};
|
|
7952
8450
|
export declare type CompassCustomNumberFieldInput = {
|
|
7953
8451
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -8033,6 +8531,7 @@ export declare type CompassCustomTextFieldFilter = CompassCustomFieldFilter & {
|
|
|
8033
8531
|
export declare type CompassCustomTextFieldFilterInput = {
|
|
8034
8532
|
comparator?: InputMaybe<CustomTextFieldInputComparators>;
|
|
8035
8533
|
customFieldId: Scalars['String']['input'];
|
|
8534
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8036
8535
|
};
|
|
8037
8536
|
export declare type CompassCustomTextFieldInput = {
|
|
8038
8537
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -9550,6 +10049,7 @@ export declare type CompassScorecard = Node & {
|
|
|
9550
10049
|
name: Scalars['String']['output'];
|
|
9551
10050
|
owner?: Maybe<User>;
|
|
9552
10051
|
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
10052
|
+
scorecardMaturityLevelStatisticsHistories?: Maybe<CompassScorecardMaturityLevelStatisticsHistoryConnection>;
|
|
9553
10053
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
9554
10054
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
9555
10055
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -9579,6 +10079,11 @@ export declare type CompassScorecardDeactivatedComponentsArgs = {
|
|
|
9579
10079
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9580
10080
|
query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
|
|
9581
10081
|
};
|
|
10082
|
+
export declare type CompassScorecardScorecardMaturityLevelStatisticsHistoriesArgs = {
|
|
10083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10085
|
+
query?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQuery>;
|
|
10086
|
+
};
|
|
9582
10087
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
9583
10088
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
9584
10089
|
};
|
|
@@ -9593,6 +10098,9 @@ export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
|
9593
10098
|
export declare type CompassScorecardApplicationModel = {
|
|
9594
10099
|
applicationType: Scalars['String']['output'];
|
|
9595
10100
|
};
|
|
10101
|
+
export declare type CompassScorecardAppliedToComponentsComponentStateFilter = {
|
|
10102
|
+
in: Array<Scalars['String']['input']>;
|
|
10103
|
+
};
|
|
9596
10104
|
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
9597
10105
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
9598
10106
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -9626,6 +10134,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
9626
10134
|
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
9627
10135
|
in: Array<Scalars['String']['input']>;
|
|
9628
10136
|
};
|
|
10137
|
+
export declare type CompassScorecardAppliedToComponentsMaturityLevelFilter = {
|
|
10138
|
+
maturityLevels: Array<Scalars['ID']['input']>;
|
|
10139
|
+
};
|
|
9629
10140
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
9630
10141
|
in: Array<Scalars['ID']['input']>;
|
|
9631
10142
|
};
|
|
@@ -9636,6 +10147,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
9636
10147
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
9637
10148
|
};
|
|
9638
10149
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
10150
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
9639
10151
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9640
10152
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
9641
10153
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
@@ -9643,6 +10155,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
9643
10155
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
9644
10156
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
9645
10157
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
10158
|
+
scorecardMaturityLevels?: InputMaybe<CompassScorecardAppliedToComponentsMaturityLevelFilter>;
|
|
9646
10159
|
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
9647
10160
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
9648
10161
|
};
|
|
@@ -9702,6 +10215,12 @@ export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
|
9702
10215
|
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
9703
10216
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9704
10217
|
};
|
|
10218
|
+
export declare type CompassScorecardCriteriaMaturityGroupInput = {
|
|
10219
|
+
maturityLevel: CompassScorecardCriteriaMaturityLevelInput;
|
|
10220
|
+
};
|
|
10221
|
+
export declare type CompassScorecardCriteriaMaturityLevelInput = {
|
|
10222
|
+
id: Scalars['ID']['input'];
|
|
10223
|
+
};
|
|
9705
10224
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9706
10225
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9707
10226
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10054,10 +10573,63 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
10054
10573
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
10055
10574
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
10056
10575
|
};
|
|
10576
|
+
export declare type CompassScorecardMaturityLevelHistory = {
|
|
10577
|
+
__typename?: 'CompassScorecardMaturityLevelHistory';
|
|
10578
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10579
|
+
maturityLevelAwarded?: Maybe<CompassScorecardMaturityLevel>;
|
|
10580
|
+
};
|
|
10581
|
+
export declare type CompassScorecardMaturityLevelHistoryConnection = {
|
|
10582
|
+
__typename?: 'CompassScorecardMaturityLevelHistoryConnection';
|
|
10583
|
+
edges?: Maybe<Array<CompassScorecardMaturityLevelHistoryEdge>>;
|
|
10584
|
+
nodes?: Maybe<Array<CompassScorecardMaturityLevelHistory>>;
|
|
10585
|
+
pageInfo: PageInfo;
|
|
10586
|
+
};
|
|
10587
|
+
export declare type CompassScorecardMaturityLevelHistoryEdge = {
|
|
10588
|
+
__typename?: 'CompassScorecardMaturityLevelHistoryEdge';
|
|
10589
|
+
cursor: Scalars['String']['output'];
|
|
10590
|
+
node?: Maybe<CompassScorecardMaturityLevelHistory>;
|
|
10591
|
+
};
|
|
10592
|
+
export declare type CompassScorecardMaturityLevelHistoryQuery = {
|
|
10593
|
+
filter?: InputMaybe<CompassScorecardMaturityLevelHistoryQueryFilter>;
|
|
10594
|
+
};
|
|
10595
|
+
export declare type CompassScorecardMaturityLevelHistoryQueryFilter = {
|
|
10596
|
+
periodicity?: InputMaybe<CompassScorecardScoreHistoryPeriodicity>;
|
|
10597
|
+
startFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
10598
|
+
};
|
|
10057
10599
|
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
10058
10600
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
10059
10601
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
10060
10602
|
};
|
|
10603
|
+
export declare type CompassScorecardMaturityLevelStatistic = {
|
|
10604
|
+
__typename?: 'CompassScorecardMaturityLevelStatistic';
|
|
10605
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10606
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10607
|
+
};
|
|
10608
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistory = {
|
|
10609
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistory';
|
|
10610
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10611
|
+
statistics?: Maybe<Array<CompassScorecardMaturityLevelStatistic>>;
|
|
10612
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10613
|
+
};
|
|
10614
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryConnection = {
|
|
10615
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryConnection';
|
|
10616
|
+
edges?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistoryEdge>>;
|
|
10617
|
+
nodes?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistory>>;
|
|
10618
|
+
pageInfo: PageInfo;
|
|
10619
|
+
};
|
|
10620
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryEdge = {
|
|
10621
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryEdge';
|
|
10622
|
+
cursor: Scalars['String']['output'];
|
|
10623
|
+
node?: Maybe<CompassScorecardMaturityLevelStatisticsHistory>;
|
|
10624
|
+
};
|
|
10625
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
10626
|
+
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
10627
|
+
};
|
|
10628
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
10629
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
10630
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
10631
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
10632
|
+
};
|
|
10061
10633
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
10062
10634
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
10063
10635
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10200,6 +10772,11 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
10200
10772
|
since: Scalars['DateTime']['output'];
|
|
10201
10773
|
};
|
|
10202
10774
|
export declare type CompassScorecardScoreSystem = CompassScorecardMaturityLevelScoreSystem | CompassScorecardThresholdStatusScoreSystem;
|
|
10775
|
+
export declare enum CompassScorecardScoreSystemType {
|
|
10776
|
+
MaturityLevel = "MATURITY_LEVEL",
|
|
10777
|
+
ThresholdPercentageBased = "THRESHOLD_PERCENTAGE_BASED",
|
|
10778
|
+
ThresholdPointBased = "THRESHOLD_POINT_BASED"
|
|
10779
|
+
}
|
|
10203
10780
|
export declare enum CompassScorecardScoringStrategyType {
|
|
10204
10781
|
PercentageBased = "PERCENTAGE_BASED",
|
|
10205
10782
|
PointBased = "POINT_BASED",
|
|
@@ -10616,6 +11193,7 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
10616
11193
|
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
10617
11194
|
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
10618
11195
|
id: Scalars['ID']['input'];
|
|
11196
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10619
11197
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10620
11198
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10621
11199
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10626,6 +11204,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
10626
11204
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10627
11205
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10628
11206
|
id: Scalars['ID']['input'];
|
|
11207
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10629
11208
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10630
11209
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10631
11210
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10636,6 +11215,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
10636
11215
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10637
11216
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10638
11217
|
id: Scalars['ID']['input'];
|
|
11218
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10639
11219
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10640
11220
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10641
11221
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10644,6 +11224,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
10644
11224
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10645
11225
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10646
11226
|
id: Scalars['ID']['input'];
|
|
11227
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10647
11228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10648
11229
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
10649
11230
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -10654,6 +11235,7 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
10654
11235
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10655
11236
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10656
11237
|
id: Scalars['ID']['input'];
|
|
11238
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10657
11239
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
10658
11240
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10659
11241
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10664,6 +11246,7 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
10664
11246
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10665
11247
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10666
11248
|
id: Scalars['ID']['input'];
|
|
11249
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10667
11250
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10668
11251
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10669
11252
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -10674,6 +11257,7 @@ export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
|
10674
11257
|
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
10675
11258
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10676
11259
|
id: Scalars['ID']['input'];
|
|
11260
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10677
11261
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10678
11262
|
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
10679
11263
|
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10951,6 +11535,10 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
10951
11535
|
success: Scalars['Boolean']['output'];
|
|
10952
11536
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
10953
11537
|
};
|
|
11538
|
+
export declare enum ComplianceBoundary {
|
|
11539
|
+
Commercial = "COMMERCIAL",
|
|
11540
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11541
|
+
}
|
|
10954
11542
|
export declare type ComponentApiUpload = {
|
|
10955
11543
|
__typename?: 'ComponentApiUpload';
|
|
10956
11544
|
specUrl: Scalars['String']['output'];
|
|
@@ -10979,21 +11567,6 @@ export declare enum ComponentSyncEventStatus {
|
|
|
10979
11567
|
Success = "SUCCESS",
|
|
10980
11568
|
UserError = "USER_ERROR"
|
|
10981
11569
|
}
|
|
10982
|
-
export declare type ConfigurePolarisRefreshInput = {
|
|
10983
|
-
autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
10984
|
-
clearError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10985
|
-
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10986
|
-
project: Scalars['ID']['input'];
|
|
10987
|
-
setError?: InputMaybe<PolarisRefreshError>;
|
|
10988
|
-
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
10989
|
-
timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
10990
|
-
};
|
|
10991
|
-
export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
10992
|
-
__typename?: 'ConfigurePolarisRefreshPayload';
|
|
10993
|
-
errors?: Maybe<Array<MutationError>>;
|
|
10994
|
-
node?: Maybe<Scalars['Int']['output']>;
|
|
10995
|
-
success: Scalars['Boolean']['output'];
|
|
10996
|
-
};
|
|
10997
11570
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
10998
11571
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
10999
11572
|
appearance: Scalars['String']['output'];
|
|
@@ -21190,6 +21763,7 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
21190
21763
|
};
|
|
21191
21764
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
21192
21765
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21766
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21193
21767
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21194
21768
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21195
21769
|
weight: Scalars['Int']['input'];
|
|
@@ -21197,6 +21771,7 @@ export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
|
21197
21771
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
21198
21772
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21199
21773
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
21774
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21200
21775
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21201
21776
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21202
21777
|
weight: Scalars['Int']['input'];
|
|
@@ -21204,6 +21779,7 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
21204
21779
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
21205
21780
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21206
21781
|
linkType: CompassLinkType;
|
|
21782
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21207
21783
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21208
21784
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21209
21785
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -21216,6 +21792,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21216
21792
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
21217
21793
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21218
21794
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
21795
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21219
21796
|
metricDefinitionId: Scalars['ID']['input'];
|
|
21220
21797
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21221
21798
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -21223,6 +21800,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21223
21800
|
};
|
|
21224
21801
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
21225
21802
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21803
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21226
21804
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21227
21805
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21228
21806
|
weight: Scalars['Int']['input'];
|
|
@@ -21275,6 +21853,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
21275
21853
|
name: Scalars['String']['input'];
|
|
21276
21854
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
21277
21855
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
21856
|
+
scoreSystemType?: InputMaybe<CompassScorecardScoreSystemType>;
|
|
21278
21857
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
21279
21858
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
21280
21859
|
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
@@ -21492,6 +22071,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
21492
22071
|
export declare type CreateJiraPlaybookInput = {
|
|
21493
22072
|
cloudId: Scalars['ID']['input'];
|
|
21494
22073
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
22074
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
21495
22075
|
name: Scalars['String']['input'];
|
|
21496
22076
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
21497
22077
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -21737,6 +22317,7 @@ export declare type CsmAiAction = {
|
|
|
21737
22317
|
description?: Maybe<Scalars['String']['output']>;
|
|
21738
22318
|
id: Scalars['ID']['output'];
|
|
21739
22319
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
22320
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21740
22321
|
name?: Maybe<Scalars['String']['output']>;
|
|
21741
22322
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
21742
22323
|
};
|
|
@@ -21829,6 +22410,7 @@ export declare type CsmAiCreateActionInput = {
|
|
|
21829
22410
|
authentication: CsmAiAuthenticationInput;
|
|
21830
22411
|
description: Scalars['String']['input'];
|
|
21831
22412
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
22413
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
21832
22414
|
name: Scalars['String']['input'];
|
|
21833
22415
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
21834
22416
|
};
|
|
@@ -21872,6 +22454,10 @@ export declare type CsmAiHub = {
|
|
|
21872
22454
|
agent?: Maybe<CsmAiAgentResult>;
|
|
21873
22455
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
21874
22456
|
id: Scalars['ID']['output'];
|
|
22457
|
+
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22458
|
+
};
|
|
22459
|
+
export declare type CsmAiHubActionsArgs = {
|
|
22460
|
+
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21875
22461
|
};
|
|
21876
22462
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
21877
22463
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -21903,6 +22489,7 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
21903
22489
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
21904
22490
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21905
22491
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22492
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21906
22493
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21907
22494
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
21908
22495
|
};
|
|
@@ -21944,6 +22531,78 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
21944
22531
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
21945
22532
|
success: Scalars['Boolean']['output'];
|
|
21946
22533
|
};
|
|
22534
|
+
export declare type CsmAiUpdateWidgetPayload = Payload & {
|
|
22535
|
+
__typename?: 'CsmAiUpdateWidgetPayload';
|
|
22536
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22537
|
+
success: Scalars['Boolean']['output'];
|
|
22538
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
22539
|
+
};
|
|
22540
|
+
export declare type CsmAiWidgetBrandingAttribution = {
|
|
22541
|
+
__typename?: 'CsmAiWidgetBrandingAttribution';
|
|
22542
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22543
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22544
|
+
};
|
|
22545
|
+
export declare type CsmAiWidgetBrandingAttributionInput = {
|
|
22546
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
22547
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
22548
|
+
};
|
|
22549
|
+
export declare enum CsmAiWidgetBrandingChatColorVibeVariant {
|
|
22550
|
+
Dark = "DARK",
|
|
22551
|
+
Default = "DEFAULT",
|
|
22552
|
+
Light = "LIGHT",
|
|
22553
|
+
Vibrant = "VIBRANT"
|
|
22554
|
+
}
|
|
22555
|
+
export declare enum CsmAiWidgetBrandingColorVibeVariant {
|
|
22556
|
+
Dark = "DARK",
|
|
22557
|
+
Light = "LIGHT",
|
|
22558
|
+
Vibrant = "VIBRANT"
|
|
22559
|
+
}
|
|
22560
|
+
export declare enum CsmAiWidgetBrandingRadius {
|
|
22561
|
+
Normal = "NORMAL",
|
|
22562
|
+
Rounded = "ROUNDED",
|
|
22563
|
+
Sharp = "SHARP"
|
|
22564
|
+
}
|
|
22565
|
+
export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
22566
|
+
Comfortable = "COMFORTABLE",
|
|
22567
|
+
Cosy = "COSY",
|
|
22568
|
+
Generous = "GENEROUS"
|
|
22569
|
+
}
|
|
22570
|
+
export declare type CsmAiWidgetBrandingTheme = {
|
|
22571
|
+
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
22572
|
+
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
22573
|
+
chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
|
|
22574
|
+
colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
|
|
22575
|
+
radius?: Maybe<CsmAiWidgetBrandingRadius>;
|
|
22576
|
+
space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
|
|
22577
|
+
};
|
|
22578
|
+
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
22579
|
+
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
22580
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
22581
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
22582
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
22583
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
22584
|
+
};
|
|
22585
|
+
export declare type CsmAiWidgetConfig = {
|
|
22586
|
+
__typename?: 'CsmAiWidgetConfig';
|
|
22587
|
+
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
22588
|
+
id: Scalars['ID']['output'];
|
|
22589
|
+
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22590
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22591
|
+
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
22592
|
+
type: CsmAiWidgetType;
|
|
22593
|
+
};
|
|
22594
|
+
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
22595
|
+
export declare enum CsmAiWidgetType {
|
|
22596
|
+
Embed = "EMBED",
|
|
22597
|
+
SupportSite = "SUPPORT_SITE"
|
|
22598
|
+
}
|
|
22599
|
+
export declare type CsmAiWidgetUpdateInput = {
|
|
22600
|
+
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
22601
|
+
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22602
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22603
|
+
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
22604
|
+
type: CsmAiWidgetType;
|
|
22605
|
+
};
|
|
21947
22606
|
export declare type CumulativeFlowDiagram = {
|
|
21948
22607
|
__typename?: 'CumulativeFlowDiagram';
|
|
21949
22608
|
chart: CfdChartConnection;
|
|
@@ -22089,6 +22748,7 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
22089
22748
|
NotSet = "NOT_SET"
|
|
22090
22749
|
}
|
|
22091
22750
|
export declare enum CustomNumberFieldInputComparators {
|
|
22751
|
+
ContainAny = "CONTAIN_ANY",
|
|
22092
22752
|
IsSet = "IS_SET",
|
|
22093
22753
|
NotSet = "NOT_SET"
|
|
22094
22754
|
}
|
|
@@ -22104,6 +22764,7 @@ export declare enum CustomSingleSelectFieldInputComparators {
|
|
|
22104
22764
|
NotSet = "NOT_SET"
|
|
22105
22765
|
}
|
|
22106
22766
|
export declare enum CustomTextFieldInputComparators {
|
|
22767
|
+
ContainAny = "CONTAIN_ANY",
|
|
22107
22768
|
IsSet = "IS_SET",
|
|
22108
22769
|
NotSet = "NOT_SET"
|
|
22109
22770
|
}
|
|
@@ -24287,6 +24948,42 @@ export declare type DevAiWorkspace = {
|
|
|
24287
24948
|
status?: Maybe<Scalars['String']['output']>;
|
|
24288
24949
|
workspaceAri: Scalars['ID']['output'];
|
|
24289
24950
|
};
|
|
24951
|
+
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
24952
|
+
name: Scalars['String']['input'];
|
|
24953
|
+
};
|
|
24954
|
+
export declare type DevConsoleDeveloperSpace = {
|
|
24955
|
+
__typename?: 'DevConsoleDeveloperSpace';
|
|
24956
|
+
id: Scalars['String']['output'];
|
|
24957
|
+
name: Scalars['String']['output'];
|
|
24958
|
+
status: Scalars['String']['output'];
|
|
24959
|
+
type: DevConsoleDeveloperSpaceType;
|
|
24960
|
+
version: Scalars['Int']['output'];
|
|
24961
|
+
versionId: Scalars['Int']['output'];
|
|
24962
|
+
};
|
|
24963
|
+
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
24964
|
+
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
24965
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
24966
|
+
name: Scalars['String']['output'];
|
|
24967
|
+
};
|
|
24968
|
+
export declare enum DevConsoleDeveloperSpaceType {
|
|
24969
|
+
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
24970
|
+
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
24971
|
+
}
|
|
24972
|
+
export declare type DevConsoleMutation = {
|
|
24973
|
+
__typename?: 'DevConsoleMutation';
|
|
24974
|
+
createDeveloperSpace: DevConsoleDeveloperSpace;
|
|
24975
|
+
};
|
|
24976
|
+
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
24977
|
+
input: DevConsoleCreateDeveloperSpaceInput;
|
|
24978
|
+
};
|
|
24979
|
+
export declare type DevConsoleQuery = {
|
|
24980
|
+
__typename?: 'DevConsoleQuery';
|
|
24981
|
+
getDeveloperSpaceDetails: DevConsoleDeveloperSpaceDetails;
|
|
24982
|
+
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
24983
|
+
};
|
|
24984
|
+
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
24985
|
+
developerSpaceId: Scalars['String']['input'];
|
|
24986
|
+
};
|
|
24290
24987
|
export declare type DevOps = {
|
|
24291
24988
|
__typename?: 'DevOps';
|
|
24292
24989
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -25967,6 +26664,7 @@ export declare type EcosystemMutation = {
|
|
|
25967
26664
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
25968
26665
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
25969
26666
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
26667
|
+
devConsole?: Maybe<DevConsoleMutation>;
|
|
25970
26668
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
25971
26669
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
25972
26670
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
@@ -26071,6 +26769,7 @@ export declare type EcosystemQuery = {
|
|
|
26071
26769
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
26072
26770
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
26073
26771
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
26772
|
+
devConsole?: Maybe<DevConsoleQuery>;
|
|
26074
26773
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
26075
26774
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
26076
26775
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -26175,7 +26874,7 @@ export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
|
26175
26874
|
export declare type EcosystemRealtimePublishBody = {
|
|
26176
26875
|
__typename?: 'EcosystemRealtimePublishBody';
|
|
26177
26876
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
26178
|
-
eventTimestamp?: Maybe<Scalars['
|
|
26877
|
+
eventTimestamp?: Maybe<Scalars['String']['output']>;
|
|
26179
26878
|
};
|
|
26180
26879
|
export declare type EcosystemRealtimeSubscriptionBody = {
|
|
26181
26880
|
__typename?: 'EcosystemRealtimeSubscriptionBody';
|
|
@@ -32764,8 +33463,6 @@ export declare type GraphStore = {
|
|
|
32764
33463
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
32765
33464
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
32766
33465
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
32767
|
-
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
32768
|
-
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
32769
33466
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
32770
33467
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
32771
33468
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -32781,8 +33478,6 @@ export declare type GraphStore = {
|
|
|
32781
33478
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
32782
33479
|
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
32783
33480
|
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
32784
|
-
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
32785
|
-
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
32786
33481
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
32787
33482
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
32788
33483
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -32811,8 +33506,6 @@ export declare type GraphStore = {
|
|
|
32811
33506
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32812
33507
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32813
33508
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32814
|
-
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32815
|
-
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
32816
33509
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
32817
33510
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
32818
33511
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -33076,6 +33769,8 @@ export declare type GraphStore = {
|
|
|
33076
33769
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
33077
33770
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
33078
33771
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
33772
|
+
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
33773
|
+
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
33079
33774
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
33080
33775
|
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
33081
33776
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
@@ -33268,6 +33963,7 @@ export declare type GraphStore = {
|
|
|
33268
33963
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
33269
33964
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
33270
33965
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
33966
|
+
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
33271
33967
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
33272
33968
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
33273
33969
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -33603,22 +34299,6 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
33603
34299
|
id: Scalars['ID']['input'];
|
|
33604
34300
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
33605
34301
|
};
|
|
33606
|
-
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
33607
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33608
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33609
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33610
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33611
|
-
id: Scalars['ID']['input'];
|
|
33612
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33613
|
-
};
|
|
33614
|
-
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
33615
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33616
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33617
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33618
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33619
|
-
id: Scalars['ID']['input'];
|
|
33620
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33621
|
-
};
|
|
33622
34302
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
33623
34303
|
container_ids: Array<Scalars['ID']['input']>;
|
|
33624
34304
|
enabled_sources?: InputMaybe<Array<InputMaybe<GraphStoreAtlasHomeSourcesEnum>>>;
|
|
@@ -33718,22 +34398,6 @@ export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
|
33718
34398
|
id: Scalars['ID']['input'];
|
|
33719
34399
|
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
33720
34400
|
};
|
|
33721
|
-
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
33722
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33723
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33724
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33725
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33726
|
-
id: Scalars['ID']['input'];
|
|
33727
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33728
|
-
};
|
|
33729
|
-
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
33730
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33731
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33732
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33733
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33734
|
-
id: Scalars['ID']['input'];
|
|
33735
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33736
|
-
};
|
|
33737
34401
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
33738
34402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33739
34403
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33918,20 +34582,6 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
33918
34582
|
id: Scalars['ID']['input'];
|
|
33919
34583
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
33920
34584
|
};
|
|
33921
|
-
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
33922
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33923
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33924
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33925
|
-
id: Scalars['ID']['input'];
|
|
33926
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33927
|
-
};
|
|
33928
|
-
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
33929
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33930
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33931
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33932
|
-
id: Scalars['ID']['input'];
|
|
33933
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33934
|
-
};
|
|
33935
34585
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
33936
34586
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33937
34587
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35639,6 +36289,20 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
35639
36289
|
id: Scalars['ID']['input'];
|
|
35640
36290
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
35641
36291
|
};
|
|
36292
|
+
export declare type GraphStorePrHasCommentArgs = {
|
|
36293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36294
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36296
|
+
id: Scalars['ID']['input'];
|
|
36297
|
+
sort?: InputMaybe<GraphStorePrHasCommentSortInput>;
|
|
36298
|
+
};
|
|
36299
|
+
export declare type GraphStorePrHasCommentInverseArgs = {
|
|
36300
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36301
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36303
|
+
id: Scalars['ID']['input'];
|
|
36304
|
+
sort?: InputMaybe<GraphStorePrHasCommentSortInput>;
|
|
36305
|
+
};
|
|
35642
36306
|
export declare type GraphStorePrInProviderRepoArgs = {
|
|
35643
36307
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35644
36308
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36913,6 +37577,13 @@ export declare type GraphStoreTopicHasRelatedEntityArgs = {
|
|
|
36913
37577
|
id: Scalars['ID']['input'];
|
|
36914
37578
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
36915
37579
|
};
|
|
37580
|
+
export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
37581
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37582
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37583
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37584
|
+
id: Scalars['ID']['input'];
|
|
37585
|
+
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
37586
|
+
};
|
|
36916
37587
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
36917
37588
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36918
37589
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38539,107 +39210,6 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
38539
39210
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
38540
39211
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38541
39212
|
};
|
|
38542
|
-
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
38543
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38544
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38545
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38546
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38547
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38548
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38549
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38550
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
38551
|
-
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38552
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
38553
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38554
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
38555
|
-
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38556
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
38557
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38558
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
38559
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38560
|
-
};
|
|
38561
|
-
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
38562
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38563
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38564
|
-
};
|
|
38565
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
38566
|
-
Day = "DAY",
|
|
38567
|
-
Month = "MONTH",
|
|
38568
|
-
NotSet = "NOT_SET",
|
|
38569
|
-
Quarter = "QUARTER"
|
|
38570
|
-
}
|
|
38571
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
38572
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38573
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38574
|
-
};
|
|
38575
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
38576
|
-
AtRisk = "AT_RISK",
|
|
38577
|
-
Cancelled = "CANCELLED",
|
|
38578
|
-
Done = "DONE",
|
|
38579
|
-
NotSet = "NOT_SET",
|
|
38580
|
-
OffTrack = "OFF_TRACK",
|
|
38581
|
-
OnTrack = "ON_TRACK",
|
|
38582
|
-
Paused = "PAUSED",
|
|
38583
|
-
Pending = "PENDING"
|
|
38584
|
-
}
|
|
38585
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
38586
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38587
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38588
|
-
};
|
|
38589
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
38590
|
-
Day = "DAY",
|
|
38591
|
-
Month = "MONTH",
|
|
38592
|
-
NotSet = "NOT_SET",
|
|
38593
|
-
Null = "NULL",
|
|
38594
|
-
Quarter = "QUARTER"
|
|
38595
|
-
}
|
|
38596
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
38597
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38598
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38599
|
-
};
|
|
38600
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
38601
|
-
AtRisk = "AT_RISK",
|
|
38602
|
-
Cancelled = "CANCELLED",
|
|
38603
|
-
Done = "DONE",
|
|
38604
|
-
NotSet = "NOT_SET",
|
|
38605
|
-
Null = "NULL",
|
|
38606
|
-
OffTrack = "OFF_TRACK",
|
|
38607
|
-
OnTrack = "ON_TRACK",
|
|
38608
|
-
Paused = "PAUSED",
|
|
38609
|
-
Pending = "PENDING"
|
|
38610
|
-
}
|
|
38611
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
38612
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38613
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38614
|
-
};
|
|
38615
|
-
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
38616
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38617
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38618
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38619
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38620
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38621
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38622
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38623
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38624
|
-
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
38625
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38626
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38627
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38628
|
-
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
38629
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38630
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38631
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38632
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38633
|
-
};
|
|
38634
|
-
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
38635
|
-
NotSet = "NOT_SET",
|
|
38636
|
-
System = "SYSTEM",
|
|
38637
|
-
User = "USER"
|
|
38638
|
-
}
|
|
38639
|
-
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
38640
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38641
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38642
|
-
};
|
|
38643
39213
|
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38644
39214
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38645
39215
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
@@ -38709,103 +39279,6 @@ export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
|
38709
39279
|
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
38710
39280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38711
39281
|
};
|
|
38712
|
-
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
38713
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38714
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38715
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38716
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38717
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38718
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38719
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38720
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
38721
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
38722
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38723
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
38724
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
38725
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38726
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
38727
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38728
|
-
};
|
|
38729
|
-
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
38730
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38731
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38732
|
-
};
|
|
38733
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
38734
|
-
Day = "DAY",
|
|
38735
|
-
Month = "MONTH",
|
|
38736
|
-
NotSet = "NOT_SET",
|
|
38737
|
-
Quarter = "QUARTER"
|
|
38738
|
-
}
|
|
38739
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
38740
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38741
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38742
|
-
};
|
|
38743
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
38744
|
-
AtRisk = "AT_RISK",
|
|
38745
|
-
Cancelled = "CANCELLED",
|
|
38746
|
-
Done = "DONE",
|
|
38747
|
-
NotSet = "NOT_SET",
|
|
38748
|
-
OffTrack = "OFF_TRACK",
|
|
38749
|
-
OnTrack = "ON_TRACK",
|
|
38750
|
-
Paused = "PAUSED",
|
|
38751
|
-
Pending = "PENDING"
|
|
38752
|
-
}
|
|
38753
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
38754
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38755
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38756
|
-
};
|
|
38757
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
38758
|
-
Day = "DAY",
|
|
38759
|
-
Month = "MONTH",
|
|
38760
|
-
NotSet = "NOT_SET",
|
|
38761
|
-
Null = "NULL",
|
|
38762
|
-
Quarter = "QUARTER"
|
|
38763
|
-
}
|
|
38764
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
38765
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38766
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38767
|
-
};
|
|
38768
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
38769
|
-
AtRisk = "AT_RISK",
|
|
38770
|
-
Cancelled = "CANCELLED",
|
|
38771
|
-
Done = "DONE",
|
|
38772
|
-
NotSet = "NOT_SET",
|
|
38773
|
-
Null = "NULL",
|
|
38774
|
-
OffTrack = "OFF_TRACK",
|
|
38775
|
-
OnTrack = "ON_TRACK",
|
|
38776
|
-
Paused = "PAUSED",
|
|
38777
|
-
Pending = "PENDING"
|
|
38778
|
-
}
|
|
38779
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
38780
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38781
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38782
|
-
};
|
|
38783
|
-
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
38784
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38785
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38786
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38787
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38788
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38789
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38790
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38791
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38792
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38793
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38794
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38795
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38796
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38797
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38798
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38799
|
-
};
|
|
38800
|
-
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
38801
|
-
NotSet = "NOT_SET",
|
|
38802
|
-
System = "SYSTEM",
|
|
38803
|
-
User = "USER"
|
|
38804
|
-
}
|
|
38805
|
-
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
38806
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38807
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38808
|
-
};
|
|
38809
39282
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
38810
39283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38811
39284
|
};
|
|
@@ -39578,9 +40051,6 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
39578
40051
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
39579
40052
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39580
40053
|
};
|
|
39581
|
-
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39582
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39583
|
-
};
|
|
39584
40054
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
39585
40055
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39586
40056
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40102,7 +40572,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40102
40572
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40103
40573
|
id: Scalars['ID']['output'];
|
|
40104
40574
|
};
|
|
40105
|
-
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 | 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 | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40575
|
+
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 | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40106
40576
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40107
40577
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40108
40578
|
value: Scalars['Int']['output'];
|
|
@@ -40137,7 +40607,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40137
40607
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40138
40608
|
id: Scalars['ID']['output'];
|
|
40139
40609
|
};
|
|
40140
|
-
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 | 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 | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40610
|
+
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 | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40141
40611
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40142
40612
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40143
40613
|
value: Scalars['String']['output'];
|
|
@@ -40147,19 +40617,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40147
40617
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40148
40618
|
id: Scalars['ID']['output'];
|
|
40149
40619
|
};
|
|
40150
|
-
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 | 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 | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40620
|
+
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 | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40151
40621
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40152
40622
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40153
40623
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40154
40624
|
id: Scalars['ID']['output'];
|
|
40155
40625
|
};
|
|
40156
|
-
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 | 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 | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40626
|
+
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 | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40157
40627
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40158
40628
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40159
40629
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40160
40630
|
id: Scalars['ID']['output'];
|
|
40161
40631
|
};
|
|
40162
|
-
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 | 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 | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40632
|
+
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 | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40163
40633
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40164
40634
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40165
40635
|
value: Scalars['Boolean']['output'];
|
|
@@ -40258,7 +40728,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40258
40728
|
V2 = "V2",
|
|
40259
40729
|
V3 = "V3"
|
|
40260
40730
|
}
|
|
40261
|
-
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 | 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 | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40731
|
+
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 | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40262
40732
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40263
40733
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40264
40734
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41456,6 +41926,7 @@ export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
41456
41926
|
};
|
|
41457
41927
|
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
41458
41928
|
Declined = "DECLINED",
|
|
41929
|
+
Draft = "DRAFT",
|
|
41459
41930
|
Merged = "MERGED",
|
|
41460
41931
|
NotSet = "NOT_SET",
|
|
41461
41932
|
Open = "OPEN",
|
|
@@ -42004,6 +42475,7 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUn
|
|
|
42004
42475
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
42005
42476
|
Archive = "ARCHIVE",
|
|
42006
42477
|
Audio = "AUDIO",
|
|
42478
|
+
Blogpost = "BLOGPOST",
|
|
42007
42479
|
Code = "CODE",
|
|
42008
42480
|
Document = "DOCUMENT",
|
|
42009
42481
|
Folder = "FOLDER",
|
|
@@ -42011,11 +42483,13 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
42011
42483
|
Image = "IMAGE",
|
|
42012
42484
|
NotSet = "NOT_SET",
|
|
42013
42485
|
Other = "OTHER",
|
|
42486
|
+
Page = "PAGE",
|
|
42014
42487
|
Pdf = "PDF",
|
|
42015
42488
|
Presentation = "PRESENTATION",
|
|
42016
42489
|
Shortcut = "SHORTCUT",
|
|
42017
42490
|
Spreadsheet = "SPREADSHEET",
|
|
42018
|
-
Video = "VIDEO"
|
|
42491
|
+
Video = "VIDEO",
|
|
42492
|
+
WebPage = "WEB_PAGE"
|
|
42019
42493
|
}
|
|
42020
42494
|
export declare type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
42021
42495
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
@@ -42123,6 +42597,7 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
42123
42597
|
};
|
|
42124
42598
|
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
42125
42599
|
Declined = "DECLINED",
|
|
42600
|
+
Draft = "DRAFT",
|
|
42126
42601
|
Merged = "MERGED",
|
|
42127
42602
|
NotSet = "NOT_SET",
|
|
42128
42603
|
Open = "OPEN",
|
|
@@ -42466,6 +42941,7 @@ export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
42466
42941
|
};
|
|
42467
42942
|
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
42468
42943
|
Declined = "DECLINED",
|
|
42944
|
+
Draft = "DRAFT",
|
|
42469
42945
|
Merged = "MERGED",
|
|
42470
42946
|
NotSet = "NOT_SET",
|
|
42471
42947
|
Open = "OPEN",
|
|
@@ -43291,6 +43767,7 @@ export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
43291
43767
|
};
|
|
43292
43768
|
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
43293
43769
|
Declined = "DECLINED",
|
|
43770
|
+
Draft = "DRAFT",
|
|
43294
43771
|
Merged = "MERGED",
|
|
43295
43772
|
NotSet = "NOT_SET",
|
|
43296
43773
|
Open = "OPEN",
|
|
@@ -44738,6 +45215,9 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
44738
45215
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
44739
45216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44740
45217
|
};
|
|
45218
|
+
export declare type GraphStorePrHasCommentSortInput = {
|
|
45219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45220
|
+
};
|
|
44741
45221
|
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
44742
45222
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
44743
45223
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -44987,6 +45467,7 @@ export declare type GraphStoreProjectAssociatedPrFilterInput = {
|
|
|
44987
45467
|
};
|
|
44988
45468
|
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
44989
45469
|
Declined = "DECLINED",
|
|
45470
|
+
Draft = "DRAFT",
|
|
44990
45471
|
Merged = "MERGED",
|
|
44991
45472
|
NotSet = "NOT_SET",
|
|
44992
45473
|
Open = "OPEN",
|
|
@@ -45523,38 +46004,6 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
45523
46004
|
};
|
|
45524
46005
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
45525
46006
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
45526
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45527
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
45528
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
45529
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45530
|
-
pageInfo: PageInfo;
|
|
45531
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45532
|
-
};
|
|
45533
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
45534
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
45535
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45536
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45537
|
-
id: Scalars['ID']['output'];
|
|
45538
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45539
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
45540
|
-
};
|
|
45541
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45542
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
45543
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
45544
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45545
|
-
pageInfo: PageInfo;
|
|
45546
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45547
|
-
};
|
|
45548
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
45549
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
45550
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45551
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45552
|
-
id: Scalars['ID']['output'];
|
|
45553
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45554
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
45555
|
-
};
|
|
45556
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
45557
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
45558
46007
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
45559
46008
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
45560
46009
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -45723,38 +46172,6 @@ export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge
|
|
|
45723
46172
|
};
|
|
45724
46173
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
45725
46174
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
45726
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45727
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
45728
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
45729
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45730
|
-
pageInfo: PageInfo;
|
|
45731
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45732
|
-
};
|
|
45733
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
45734
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
45735
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45736
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45737
|
-
id: Scalars['ID']['output'];
|
|
45738
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45739
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
45740
|
-
};
|
|
45741
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45742
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
45743
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
45744
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45745
|
-
pageInfo: PageInfo;
|
|
45746
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45747
|
-
};
|
|
45748
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
45749
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
45750
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45751
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45752
|
-
id: Scalars['ID']['output'];
|
|
45753
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45754
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
45755
|
-
};
|
|
45756
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
45757
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
45758
46175
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
45759
46176
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
45760
46177
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -46063,34 +46480,6 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
46063
46480
|
};
|
|
46064
46481
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
46065
46482
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
46066
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
46067
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
46068
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
46069
|
-
pageInfo: PageInfo;
|
|
46070
|
-
};
|
|
46071
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
46072
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
46073
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46074
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46075
|
-
id: Scalars['ID']['output'];
|
|
46076
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46077
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
46078
|
-
};
|
|
46079
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46080
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
46081
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
46082
|
-
pageInfo: PageInfo;
|
|
46083
|
-
};
|
|
46084
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
46085
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
46086
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46087
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46088
|
-
id: Scalars['ID']['output'];
|
|
46089
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46090
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
46091
|
-
};
|
|
46092
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
46093
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
46094
46483
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
46095
46484
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
46096
46485
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -48573,6 +48962,34 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
48573
48962
|
};
|
|
48574
48963
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
48575
48964
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion = MercuryFocusArea;
|
|
48965
|
+
export declare type GraphStoreSimplifiedPrHasCommentConnection = HasPageInfo & {
|
|
48966
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentConnection';
|
|
48967
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrHasCommentEdge>>>;
|
|
48968
|
+
pageInfo: PageInfo;
|
|
48969
|
+
};
|
|
48970
|
+
export declare type GraphStoreSimplifiedPrHasCommentEdge = {
|
|
48971
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentEdge';
|
|
48972
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48973
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48974
|
+
id: Scalars['ID']['output'];
|
|
48975
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48976
|
+
node?: Maybe<GraphStoreSimplifiedPrHasCommentUnion>;
|
|
48977
|
+
};
|
|
48978
|
+
export declare type GraphStoreSimplifiedPrHasCommentInverseConnection = HasPageInfo & {
|
|
48979
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentInverseConnection';
|
|
48980
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrHasCommentInverseEdge>>>;
|
|
48981
|
+
pageInfo: PageInfo;
|
|
48982
|
+
};
|
|
48983
|
+
export declare type GraphStoreSimplifiedPrHasCommentInverseEdge = {
|
|
48984
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentInverseEdge';
|
|
48985
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48986
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48987
|
+
id: Scalars['ID']['output'];
|
|
48988
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48989
|
+
node?: Maybe<GraphStoreSimplifiedPrHasCommentInverseUnion>;
|
|
48990
|
+
};
|
|
48991
|
+
export declare type GraphStoreSimplifiedPrHasCommentInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
48992
|
+
export declare type GraphStoreSimplifiedPrHasCommentUnion = ExternalComment;
|
|
48576
48993
|
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
48577
48994
|
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
48578
48995
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
@@ -50356,7 +50773,21 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityEdge = {
|
|
|
50356
50773
|
lastUpdated: Scalars['DateTime']['output'];
|
|
50357
50774
|
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityUnion>;
|
|
50358
50775
|
};
|
|
50359
|
-
export declare type
|
|
50776
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
50777
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection';
|
|
50778
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge>>>;
|
|
50779
|
+
pageInfo: PageInfo;
|
|
50780
|
+
};
|
|
50781
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
50782
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge';
|
|
50783
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50784
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50785
|
+
id: Scalars['ID']['output'];
|
|
50786
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50787
|
+
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion>;
|
|
50788
|
+
};
|
|
50789
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
50790
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
|
|
50360
50791
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
50361
50792
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
50362
50793
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -53391,6 +53822,7 @@ export declare type GraphStoreSprintAssociatedPrFilterInput = {
|
|
|
53391
53822
|
};
|
|
53392
53823
|
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
53393
53824
|
Declined = "DECLINED",
|
|
53825
|
+
Draft = "DRAFT",
|
|
53394
53826
|
Merged = "MERGED",
|
|
53395
53827
|
NotSet = "NOT_SET",
|
|
53396
53828
|
Open = "OPEN",
|
|
@@ -54126,16 +54558,19 @@ export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendatio
|
|
|
54126
54558
|
__typename?: 'GrowthRecJiraTemplateRecommendation';
|
|
54127
54559
|
entityId: Scalars['ID']['output'];
|
|
54128
54560
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54561
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
54129
54562
|
};
|
|
54130
54563
|
export declare type GrowthRecNonHydratedRecommendation = GrowthRecRecommendation & {
|
|
54131
54564
|
__typename?: 'GrowthRecNonHydratedRecommendation';
|
|
54132
54565
|
entityId: Scalars['ID']['output'];
|
|
54133
54566
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54567
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
54134
54568
|
};
|
|
54135
54569
|
export declare type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
54136
54570
|
__typename?: 'GrowthRecProductRecommendation';
|
|
54137
54571
|
entityId: Scalars['ID']['output'];
|
|
54138
54572
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54573
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
54139
54574
|
};
|
|
54140
54575
|
export declare type GrowthRecQuery = {
|
|
54141
54576
|
__typename?: 'GrowthRecQuery';
|
|
@@ -54149,6 +54584,7 @@ export declare type GrowthRecQueryRecommendationsArgs = {
|
|
|
54149
54584
|
export declare type GrowthRecRecommendation = {
|
|
54150
54585
|
entityId: Scalars['ID']['output'];
|
|
54151
54586
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54587
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
54152
54588
|
};
|
|
54153
54589
|
export declare type GrowthRecRecommendations = {
|
|
54154
54590
|
__typename?: 'GrowthRecRecommendations';
|
|
@@ -58600,6 +59036,7 @@ export declare enum JiraBoardType {
|
|
|
58600
59036
|
}
|
|
58601
59037
|
export declare type JiraBoardView = {
|
|
58602
59038
|
__typename?: 'JiraBoardView';
|
|
59039
|
+
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
58603
59040
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58604
59041
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
58605
59042
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -58611,6 +59048,7 @@ export declare type JiraBoardView = {
|
|
|
58611
59048
|
id: Scalars['ID']['output'];
|
|
58612
59049
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58613
59050
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
59051
|
+
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58614
59052
|
};
|
|
58615
59053
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
58616
59054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58634,8 +59072,13 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
58634
59072
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
58635
59073
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
58636
59074
|
};
|
|
59075
|
+
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
59076
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59078
|
+
};
|
|
58637
59079
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
58638
59080
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
59081
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58639
59082
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58640
59083
|
id: Scalars['ID']['output'];
|
|
58641
59084
|
user?: Maybe<User>;
|
|
@@ -58658,11 +59101,13 @@ export declare type JiraBoardViewCardOptionEdge = {
|
|
|
58658
59101
|
};
|
|
58659
59102
|
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
58660
59103
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
59104
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58661
59105
|
category?: Maybe<JiraOption>;
|
|
58662
59106
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58663
59107
|
id: Scalars['ID']['output'];
|
|
58664
59108
|
};
|
|
58665
59109
|
export declare type JiraBoardViewColumn = {
|
|
59110
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58666
59111
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58667
59112
|
id: Scalars['ID']['output'];
|
|
58668
59113
|
};
|
|
@@ -58691,6 +59136,7 @@ export declare type JiraBoardViewInput = {
|
|
|
58691
59136
|
};
|
|
58692
59137
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
58693
59138
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
59139
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58694
59140
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58695
59141
|
id: Scalars['ID']['output'];
|
|
58696
59142
|
priority?: Maybe<JiraPriority>;
|
|
@@ -58708,18 +59154,45 @@ export declare type JiraBoardViewSettings = {
|
|
|
58708
59154
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
58709
59155
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58710
59156
|
};
|
|
59157
|
+
export declare type JiraBoardViewStatus = {
|
|
59158
|
+
__typename?: 'JiraBoardViewStatus';
|
|
59159
|
+
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
59160
|
+
id: Scalars['ID']['output'];
|
|
59161
|
+
status?: Maybe<JiraStatus>;
|
|
59162
|
+
};
|
|
59163
|
+
export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
59164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59166
|
+
};
|
|
58711
59167
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
58712
59168
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
59169
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58713
59170
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58714
59171
|
id: Scalars['ID']['output'];
|
|
59172
|
+
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58715
59173
|
name?: Maybe<Scalars['String']['output']>;
|
|
58716
59174
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
58717
59175
|
};
|
|
59176
|
+
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
59177
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59178
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59179
|
+
};
|
|
58718
59180
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
58719
59181
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
58720
59182
|
name: Scalars['String']['input'];
|
|
58721
59183
|
statusIds: Array<Scalars['ID']['input']>;
|
|
58722
59184
|
};
|
|
59185
|
+
export declare type JiraBoardViewStatusConnection = {
|
|
59186
|
+
__typename?: 'JiraBoardViewStatusConnection';
|
|
59187
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewStatusEdge>>>;
|
|
59188
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59189
|
+
pageInfo?: Maybe<PageInfo>;
|
|
59190
|
+
};
|
|
59191
|
+
export declare type JiraBoardViewStatusEdge = {
|
|
59192
|
+
__typename?: 'JiraBoardViewStatusEdge';
|
|
59193
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59194
|
+
node?: Maybe<JiraBoardViewStatus>;
|
|
59195
|
+
};
|
|
58723
59196
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
58724
59197
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
58725
59198
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60384,6 +60857,10 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
60384
60857
|
journeyVersion: Scalars['Long']['input'];
|
|
60385
60858
|
name: Scalars['String']['input'];
|
|
60386
60859
|
};
|
|
60860
|
+
export declare type JiraCreateFieldSchemeInput = {
|
|
60861
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
60862
|
+
name: Scalars['String']['input'];
|
|
60863
|
+
};
|
|
60387
60864
|
export declare type JiraCreateFormattingRuleInput = {
|
|
60388
60865
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
60389
60866
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60874,6 +61351,15 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
60874
61351
|
errors?: Maybe<Array<MutationError>>;
|
|
60875
61352
|
success: Scalars['Boolean']['output'];
|
|
60876
61353
|
};
|
|
61354
|
+
export declare type JiraDeleteFieldSchemeInput = {
|
|
61355
|
+
schemeId: Scalars['ID']['input'];
|
|
61356
|
+
};
|
|
61357
|
+
export declare type JiraDeleteFieldSchemePayload = Payload & {
|
|
61358
|
+
__typename?: 'JiraDeleteFieldSchemePayload';
|
|
61359
|
+
affectedSchemeId?: Maybe<Scalars['ID']['output']>;
|
|
61360
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61361
|
+
success: Scalars['Boolean']['output'];
|
|
61362
|
+
};
|
|
60877
61363
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
60878
61364
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
60879
61365
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60946,6 +61432,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
60946
61432
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60947
61433
|
issues?: Maybe<JiraIssueConnection>;
|
|
60948
61434
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
61435
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60949
61436
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60950
61437
|
};
|
|
60951
61438
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -60956,6 +61443,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
60956
61443
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60957
61444
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60958
61445
|
};
|
|
61446
|
+
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61447
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61448
|
+
};
|
|
60959
61449
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
60960
61450
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60961
61451
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61381,6 +61871,11 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
61381
61871
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
61382
61872
|
success: Scalars['Boolean']['output'];
|
|
61383
61873
|
};
|
|
61874
|
+
export declare type JiraEditFieldSchemeInput = {
|
|
61875
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
61876
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
61877
|
+
schemeId: Scalars['ID']['input'];
|
|
61878
|
+
};
|
|
61384
61879
|
export declare enum JiraEmailMimeType {
|
|
61385
61880
|
Html = "HTML",
|
|
61386
61881
|
Text = "TEXT"
|
|
@@ -61755,6 +62250,35 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
61755
62250
|
Allow = "ALLOW",
|
|
61756
62251
|
Exclude = "EXCLUDE"
|
|
61757
62252
|
}
|
|
62253
|
+
export declare type JiraFieldSchemeAssociatedField = {
|
|
62254
|
+
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
62255
|
+
field?: Maybe<JiraField>;
|
|
62256
|
+
id: Scalars['ID']['output'];
|
|
62257
|
+
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
62258
|
+
};
|
|
62259
|
+
export declare type JiraFieldSchemeAssociatedFieldsConnection = {
|
|
62260
|
+
__typename?: 'JiraFieldSchemeAssociatedFieldsConnection';
|
|
62261
|
+
edges?: Maybe<Array<Maybe<JiraFieldSchemeAssociatedFieldsEdge>>>;
|
|
62262
|
+
pageInfo: PageInfo;
|
|
62263
|
+
};
|
|
62264
|
+
export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
62265
|
+
__typename?: 'JiraFieldSchemeAssociatedFieldsEdge';
|
|
62266
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62267
|
+
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
62268
|
+
};
|
|
62269
|
+
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
62270
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62271
|
+
schemeId: Scalars['ID']['input'];
|
|
62272
|
+
};
|
|
62273
|
+
export declare type JiraFieldSchemePayload = Payload & {
|
|
62274
|
+
__typename?: 'JiraFieldSchemePayload';
|
|
62275
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62276
|
+
fieldScheme?: Maybe<JiraFieldConfigScheme>;
|
|
62277
|
+
success: Scalars['Boolean']['output'];
|
|
62278
|
+
};
|
|
62279
|
+
export declare type JiraFieldSchemesInput = {
|
|
62280
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62281
|
+
};
|
|
61758
62282
|
export declare type JiraFieldSearcherTemplate = {
|
|
61759
62283
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
61760
62284
|
displayName: Scalars['String']['output'];
|
|
@@ -61775,6 +62299,10 @@ export declare type JiraFieldSetPreferences = {
|
|
|
61775
62299
|
__typename?: 'JiraFieldSetPreferences';
|
|
61776
62300
|
width?: Maybe<Scalars['Int']['output']>;
|
|
61777
62301
|
};
|
|
62302
|
+
export declare type JiraFieldSetPreferencesInput = {
|
|
62303
|
+
fieldSetId: Scalars['String']['input'];
|
|
62304
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
62305
|
+
};
|
|
61778
62306
|
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
61779
62307
|
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
61780
62308
|
};
|
|
@@ -61797,10 +62325,14 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
61797
62325
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61798
62326
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61799
62327
|
};
|
|
62328
|
+
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62329
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62330
|
+
};
|
|
61800
62331
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
61801
62332
|
export declare type JiraFieldSetsMutationInput = {
|
|
61802
62333
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
61803
62334
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62335
|
+
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
61804
62336
|
};
|
|
61805
62337
|
export declare type JiraFieldSetsViewMetadata = {
|
|
61806
62338
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -61815,6 +62347,9 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
61815
62347
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61816
62348
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61817
62349
|
};
|
|
62350
|
+
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62351
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62352
|
+
};
|
|
61818
62353
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
61819
62354
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
61820
62355
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -62629,7 +63164,7 @@ export declare type JiraGroup = Node & {
|
|
|
62629
63164
|
name: Scalars['String']['output'];
|
|
62630
63165
|
};
|
|
62631
63166
|
export declare type JiraGroupByDropdownFilter = {
|
|
62632
|
-
projectId?: InputMaybe<Scalars['
|
|
63167
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
62633
63168
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
62634
63169
|
};
|
|
62635
63170
|
export declare type JiraGroupConnection = {
|
|
@@ -62663,6 +63198,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
62663
63198
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62664
63199
|
jql?: Maybe<Scalars['String']['output']>;
|
|
62665
63200
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
63201
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
62666
63202
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
62667
63203
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
62668
63204
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -62686,6 +63222,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
62686
63222
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62687
63223
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62688
63224
|
};
|
|
63225
|
+
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
63226
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63227
|
+
};
|
|
62689
63228
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
62690
63229
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
62691
63230
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -64224,6 +64763,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
64224
64763
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
64225
64764
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
64226
64765
|
};
|
|
64766
|
+
export declare type JiraIssueSearchSettings = {
|
|
64767
|
+
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64768
|
+
};
|
|
64227
64769
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
64228
64770
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64229
64771
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -64252,6 +64794,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
64252
64794
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64253
64795
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64254
64796
|
};
|
|
64797
|
+
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64798
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64799
|
+
};
|
|
64255
64800
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
64256
64801
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
64257
64802
|
};
|
|
@@ -64339,6 +64884,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64339
64884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64340
64885
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64341
64886
|
};
|
|
64887
|
+
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64888
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64889
|
+
};
|
|
64342
64890
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64343
64891
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64344
64892
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65575,6 +66123,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
65575
66123
|
issues?: Maybe<JiraIssueConnection>;
|
|
65576
66124
|
jql?: Maybe<Scalars['String']['output']>;
|
|
65577
66125
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
66126
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
65578
66127
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
65579
66128
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
65580
66129
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -65587,6 +66136,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
65587
66136
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65588
66137
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65589
66138
|
};
|
|
66139
|
+
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
66140
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
66141
|
+
};
|
|
65590
66142
|
export declare type JiraListViewIssuesArgs = {
|
|
65591
66143
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65592
66144
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65602,6 +66154,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
65602
66154
|
export declare type JiraListViewViewSettingsArgs = {
|
|
65603
66155
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
65604
66156
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
66157
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
65605
66158
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65606
66159
|
};
|
|
65607
66160
|
export declare type JiraLongRunningTaskProgress = {
|
|
@@ -67868,6 +68421,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
67868
68421
|
__typename?: 'JiraPlaybook';
|
|
67869
68422
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
67870
68423
|
id: Scalars['ID']['output'];
|
|
68424
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
67871
68425
|
name?: Maybe<Scalars['String']['output']>;
|
|
67872
68426
|
owner?: Maybe<User>;
|
|
67873
68427
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67888,6 +68442,13 @@ export declare type JiraPlaybookEdge = {
|
|
|
67888
68442
|
cursor: Scalars['String']['output'];
|
|
67889
68443
|
node?: Maybe<JiraPlaybook>;
|
|
67890
68444
|
};
|
|
68445
|
+
export declare type JiraPlaybookExecutionFilter = {
|
|
68446
|
+
contextId?: InputMaybe<Scalars['String']['input']>;
|
|
68447
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68448
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68449
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68450
|
+
status?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68451
|
+
};
|
|
67891
68452
|
export declare type JiraPlaybookFilter = {
|
|
67892
68453
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67893
68454
|
};
|
|
@@ -68018,6 +68579,46 @@ export declare enum JiraPlaybookStepType {
|
|
|
68018
68579
|
AutomationRule = "AUTOMATION_RULE",
|
|
68019
68580
|
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
68020
68581
|
}
|
|
68582
|
+
export declare type JiraPlaybookStepUsage = Node & {
|
|
68583
|
+
__typename?: 'JiraPlaybookStepUsage';
|
|
68584
|
+
avgExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68585
|
+
failedStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68586
|
+
id: Scalars['ID']['output'];
|
|
68587
|
+
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68588
|
+
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68589
|
+
ownerAccountId?: Maybe<Scalars['String']['output']>;
|
|
68590
|
+
playbookName?: Maybe<Scalars['String']['output']>;
|
|
68591
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
68592
|
+
stepType?: Maybe<JiraPlaybookStepType>;
|
|
68593
|
+
successfulStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68594
|
+
totalStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68595
|
+
uniqueAgentCount?: Maybe<Scalars['Long']['output']>;
|
|
68596
|
+
uniqueIssueCount?: Maybe<Scalars['Long']['output']>;
|
|
68597
|
+
};
|
|
68598
|
+
export declare type JiraPlaybookStepUsageConnection = HasPageInfo & QueryPayload & {
|
|
68599
|
+
__typename?: 'JiraPlaybookStepUsageConnection';
|
|
68600
|
+
edges?: Maybe<Array<JiraPlaybookStepUsageEdge>>;
|
|
68601
|
+
errors?: Maybe<Array<QueryError>>;
|
|
68602
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
68603
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
68604
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
68605
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookStepUsage>>>;
|
|
68606
|
+
pageInfo: PageInfo;
|
|
68607
|
+
success: Scalars['Boolean']['output'];
|
|
68608
|
+
};
|
|
68609
|
+
export declare type JiraPlaybookStepUsageEdge = {
|
|
68610
|
+
__typename?: 'JiraPlaybookStepUsageEdge';
|
|
68611
|
+
cursor: Scalars['String']['output'];
|
|
68612
|
+
node?: Maybe<JiraPlaybookStepUsage>;
|
|
68613
|
+
};
|
|
68614
|
+
export declare type JiraPlaybookStepUsageFilter = {
|
|
68615
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68616
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68617
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68618
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
68619
|
+
stepStatus?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68620
|
+
stepType?: InputMaybe<JiraPlaybookStepType>;
|
|
68621
|
+
};
|
|
68021
68622
|
export declare enum JiraPlaybooksSortBy {
|
|
68022
68623
|
Name = "NAME"
|
|
68023
68624
|
}
|
|
@@ -68895,6 +69496,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
68895
69496
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
68896
69497
|
mostRecent?: Maybe<JiraProject>;
|
|
68897
69498
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69499
|
+
otherItems?: Maybe<JiraProjectConnection>;
|
|
68898
69500
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
68899
69501
|
recents?: Maybe<JiraProjectConnection>;
|
|
68900
69502
|
};
|
|
@@ -68912,6 +69514,10 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
68912
69514
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68913
69515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68914
69516
|
};
|
|
69517
|
+
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69518
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69520
|
+
};
|
|
68915
69521
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
68916
69522
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68917
69523
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69090,6 +69696,7 @@ export declare type JiraQuery = {
|
|
|
69090
69696
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
69091
69697
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
69092
69698
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
69699
|
+
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
69093
69700
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69094
69701
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
69095
69702
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -69816,6 +70423,9 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
69816
70423
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
69817
70424
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
69818
70425
|
};
|
|
70426
|
+
export declare type JiraQueryLabelsInBoardArgs = {
|
|
70427
|
+
boardId: Scalars['ID']['input'];
|
|
70428
|
+
};
|
|
69819
70429
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
69820
70430
|
cloudId: Scalars['ID']['input'];
|
|
69821
70431
|
};
|
|
@@ -71022,6 +71632,10 @@ export declare type JiraScmRepository = {
|
|
|
71022
71632
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
71023
71633
|
name?: Maybe<Scalars['String']['output']>;
|
|
71024
71634
|
};
|
|
71635
|
+
export declare type JiraScopedResetFieldsetsInput = {
|
|
71636
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71637
|
+
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71638
|
+
};
|
|
71025
71639
|
export declare type JiraScreen = Node & {
|
|
71026
71640
|
__typename?: 'JiraScreen';
|
|
71027
71641
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72397,6 +73011,15 @@ export declare type JiraSetFieldAssociationWithIssueTypesPayload = Payload & {
|
|
|
72397
73011
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
72398
73012
|
success: Scalars['Boolean']['output'];
|
|
72399
73013
|
};
|
|
73014
|
+
export declare type JiraSetFieldSetsPreferencesInput = {
|
|
73015
|
+
fieldSetsPreferences?: InputMaybe<Array<JiraFieldSetPreferencesInput>>;
|
|
73016
|
+
viewId: Scalars['ID']['input'];
|
|
73017
|
+
};
|
|
73018
|
+
export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
73019
|
+
__typename?: 'JiraSetFieldSetsPreferencesPayload';
|
|
73020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73021
|
+
success: Scalars['Boolean']['output'];
|
|
73022
|
+
};
|
|
72400
73023
|
export declare type JiraSetIsFavouriteInput = {
|
|
72401
73024
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
72402
73025
|
entityId: Scalars['ID']['input'];
|
|
@@ -72892,6 +73515,7 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
72892
73515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72893
73516
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
72894
73517
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73518
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72895
73519
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
72896
73520
|
};
|
|
72897
73521
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
@@ -72961,6 +73585,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
72961
73585
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
72962
73586
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72963
73587
|
};
|
|
73588
|
+
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73589
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73590
|
+
};
|
|
72964
73591
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
72965
73592
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
72966
73593
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -75039,7 +75666,8 @@ export declare type JiraViewScopeInput = {
|
|
|
75039
75666
|
};
|
|
75040
75667
|
export declare enum JiraVisibilityControlMechanism {
|
|
75041
75668
|
AppAccessRules = "AppAccessRules",
|
|
75042
|
-
DisplayConditions = "DisplayConditions"
|
|
75669
|
+
DisplayConditions = "DisplayConditions",
|
|
75670
|
+
UnlicensedAccess = "UnlicensedAccess"
|
|
75043
75671
|
}
|
|
75044
75672
|
export declare type JiraVote = {
|
|
75045
75673
|
__typename?: 'JiraVote';
|
|
@@ -75637,6 +76265,63 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
75637
76265
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
75638
76266
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
75639
76267
|
};
|
|
76268
|
+
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
76269
|
+
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
76270
|
+
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
76271
|
+
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
76272
|
+
channel?: Maybe<JsmChannelsOrchestratorConversationChannel>;
|
|
76273
|
+
csat?: Maybe<Scalars['Int']['output']>;
|
|
76274
|
+
firstMessageContent?: Maybe<Scalars['String']['output']>;
|
|
76275
|
+
id: Scalars['ID']['output'];
|
|
76276
|
+
intentProjectionId?: Maybe<Scalars['ID']['output']>;
|
|
76277
|
+
linkToSource?: Maybe<Scalars['String']['output']>;
|
|
76278
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
76279
|
+
state?: Maybe<JsmChannelsOrchestratorConversationState>;
|
|
76280
|
+
};
|
|
76281
|
+
export declare enum JsmChannelsOrchestratorConversationActionType {
|
|
76282
|
+
AiAnswered = "AI_ANSWERED",
|
|
76283
|
+
Matched = "MATCHED",
|
|
76284
|
+
Unhandled = "UNHANDLED"
|
|
76285
|
+
}
|
|
76286
|
+
export declare enum JsmChannelsOrchestratorConversationChannel {
|
|
76287
|
+
HelpCenter = "HELP_CENTER",
|
|
76288
|
+
JsmPortal = "JSM_PORTAL",
|
|
76289
|
+
JsmWidget = "JSM_WIDGET",
|
|
76290
|
+
MsTeams = "MS_TEAMS",
|
|
76291
|
+
Slack = "SLACK"
|
|
76292
|
+
}
|
|
76293
|
+
export declare enum JsmChannelsOrchestratorConversationCsatOptionType {
|
|
76294
|
+
CsatOption_1 = "CSAT_OPTION_1",
|
|
76295
|
+
CsatOption_2 = "CSAT_OPTION_2",
|
|
76296
|
+
CsatOption_3 = "CSAT_OPTION_3",
|
|
76297
|
+
CsatOption_4 = "CSAT_OPTION_4",
|
|
76298
|
+
CsatOption_5 = "CSAT_OPTION_5"
|
|
76299
|
+
}
|
|
76300
|
+
export declare type JsmChannelsOrchestratorConversationEdge = {
|
|
76301
|
+
__typename?: 'JsmChannelsOrchestratorConversationEdge';
|
|
76302
|
+
cursor: Scalars['String']['output'];
|
|
76303
|
+
node?: Maybe<JsmChannelsOrchestratorConversation>;
|
|
76304
|
+
};
|
|
76305
|
+
export declare enum JsmChannelsOrchestratorConversationState {
|
|
76306
|
+
Closed = "CLOSED",
|
|
76307
|
+
Escalated = "ESCALATED",
|
|
76308
|
+
Open = "OPEN",
|
|
76309
|
+
Resolved = "RESOLVED"
|
|
76310
|
+
}
|
|
76311
|
+
export declare type JsmChannelsOrchestratorConversationsConnection = {
|
|
76312
|
+
__typename?: 'JsmChannelsOrchestratorConversationsConnection';
|
|
76313
|
+
edges?: Maybe<Array<JsmChannelsOrchestratorConversationEdge>>;
|
|
76314
|
+
nodes?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
76315
|
+
pageInfo: PageInfo;
|
|
76316
|
+
};
|
|
76317
|
+
export declare type JsmChannelsOrchestratorConversationsFilter = {
|
|
76318
|
+
actions?: InputMaybe<Array<JsmChannelsOrchestratorConversationActionType>>;
|
|
76319
|
+
channels?: InputMaybe<Array<JsmChannelsOrchestratorConversationChannel>>;
|
|
76320
|
+
csatOptions?: InputMaybe<Array<JsmChannelsOrchestratorConversationCsatOptionType>>;
|
|
76321
|
+
endDate: Scalars['DateTime']['input'];
|
|
76322
|
+
startDate: Scalars['DateTime']['input'];
|
|
76323
|
+
states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
|
|
76324
|
+
};
|
|
75640
76325
|
export declare type JsmChatAppendixActionItem = {
|
|
75641
76326
|
__typename?: 'JsmChatAppendixActionItem';
|
|
75642
76327
|
id: Scalars['String']['output'];
|
|
@@ -76962,6 +77647,15 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
76962
77647
|
Plain = "PLAIN"
|
|
76963
77648
|
}
|
|
76964
77649
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
77650
|
+
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
|
|
77651
|
+
cloudId: Scalars['String']['input'];
|
|
77652
|
+
query: Scalars['String']['input'];
|
|
77653
|
+
};
|
|
77654
|
+
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedPayload = Payload & {
|
|
77655
|
+
__typename?: 'KnowledgeDiscoveryMarkZeroQueryInteractedPayload';
|
|
77656
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77657
|
+
success: Scalars['Boolean']['output'];
|
|
77658
|
+
};
|
|
76965
77659
|
export declare type KnowledgeDiscoveryMetadata = {
|
|
76966
77660
|
numberOfRecentDocuments?: InputMaybe<Scalars['Int']['input']>;
|
|
76967
77661
|
};
|
|
@@ -76973,6 +77667,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
76973
77667
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
76974
77668
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
76975
77669
|
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
77670
|
+
markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
76976
77671
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
76977
77672
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
76978
77673
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -76995,6 +77690,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
|
76995
77690
|
export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
|
|
76996
77691
|
input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
|
|
76997
77692
|
};
|
|
77693
|
+
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
|
|
77694
|
+
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
77695
|
+
};
|
|
76998
77696
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
76999
77697
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
77000
77698
|
};
|
|
@@ -77034,6 +77732,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
77034
77732
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
77035
77733
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
77036
77734
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
77735
|
+
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
77037
77736
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
77038
77737
|
};
|
|
77039
77738
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
@@ -77134,6 +77833,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
77134
77833
|
id: Scalars['String']['input'];
|
|
77135
77834
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
77136
77835
|
};
|
|
77836
|
+
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
77837
|
+
ids: Array<Scalars['ID']['input']>;
|
|
77838
|
+
};
|
|
77137
77839
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
77138
77840
|
cloudId: Scalars['String']['input'];
|
|
77139
77841
|
};
|
|
@@ -77217,6 +77919,20 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
|
77217
77919
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77218
77920
|
updatedAt: Scalars['String']['output'];
|
|
77219
77921
|
};
|
|
77922
|
+
export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
77923
|
+
__typename?: 'KnowledgeDiscoveryTopicByAri';
|
|
77924
|
+
description: Scalars['String']['output'];
|
|
77925
|
+
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77926
|
+
id: Scalars['ID']['output'];
|
|
77927
|
+
name: Scalars['String']['output'];
|
|
77928
|
+
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77929
|
+
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77930
|
+
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77931
|
+
updatedAt: Scalars['String']['output'];
|
|
77932
|
+
};
|
|
77933
|
+
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77934
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77935
|
+
};
|
|
77220
77936
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
77221
77937
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
77222
77938
|
Area = "AREA",
|
|
@@ -77276,9 +77992,19 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
77276
77992
|
};
|
|
77277
77993
|
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
77278
77994
|
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
77279
|
-
zeroQueries?: Maybe<Array<
|
|
77995
|
+
zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
|
|
77280
77996
|
};
|
|
77281
77997
|
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
77998
|
+
export declare type KnowledgeDiscoveryZeroQuery = {
|
|
77999
|
+
__typename?: 'KnowledgeDiscoveryZeroQuery';
|
|
78000
|
+
query: Scalars['String']['output'];
|
|
78001
|
+
type: KnowledgeDiscoveryZeroQueryType;
|
|
78002
|
+
};
|
|
78003
|
+
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
78004
|
+
RecentWork = "RECENT_WORK",
|
|
78005
|
+
RelatedQuestion = "RELATED_QUESTION",
|
|
78006
|
+
WhoIs = "WHO_IS"
|
|
78007
|
+
}
|
|
77282
78008
|
export declare enum KnowledgeGraphContentType {
|
|
77283
78009
|
Blogpost = "BLOGPOST",
|
|
77284
78010
|
Page = "PAGE"
|
|
@@ -77588,6 +78314,12 @@ export declare type LoomComment = Node & {
|
|
|
77588
78314
|
video?: Maybe<LoomVideo>;
|
|
77589
78315
|
videoId: Scalars['ID']['output'];
|
|
77590
78316
|
};
|
|
78317
|
+
export declare type LoomFolder = {
|
|
78318
|
+
__typename?: 'LoomFolder';
|
|
78319
|
+
id: Scalars['ID']['output'];
|
|
78320
|
+
name: Scalars['String']['output'];
|
|
78321
|
+
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
78322
|
+
};
|
|
77591
78323
|
export declare type LoomMeeting = Node & {
|
|
77592
78324
|
__typename?: 'LoomMeeting';
|
|
77593
78325
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -78191,6 +78923,7 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
78191
78923
|
};
|
|
78192
78924
|
export declare type MarketplaceAppVersionFilter = {
|
|
78193
78925
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78926
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
78194
78927
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
78195
78928
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
78196
78929
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -78434,6 +79167,10 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
|
78434
79167
|
userKey?: InputMaybe<Scalars['ID']['input']>;
|
|
78435
79168
|
versionNumber: Scalars['ID']['input'];
|
|
78436
79169
|
};
|
|
79170
|
+
export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
79171
|
+
Commercial = "COMMERCIAL",
|
|
79172
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
79173
|
+
}
|
|
78437
79174
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
78438
79175
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
78439
79176
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -78917,6 +79654,7 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
78917
79654
|
};
|
|
78918
79655
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
78919
79656
|
appKey: Scalars['ID']['input'];
|
|
79657
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
78920
79658
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
78921
79659
|
};
|
|
78922
79660
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -79599,6 +80337,10 @@ export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
|
79599
80337
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
79600
80338
|
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
79601
80339
|
};
|
|
80340
|
+
export declare type MarketplaceStoreApprovalDetails = {
|
|
80341
|
+
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
80342
|
+
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
80343
|
+
};
|
|
79602
80344
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
79603
80345
|
Cloud = "CLOUD",
|
|
79604
80346
|
Datacenter = "DATACENTER",
|
|
@@ -79774,6 +80516,7 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
79774
80516
|
}
|
|
79775
80517
|
export declare type MarketplaceStoreEdition = {
|
|
79776
80518
|
__typename?: 'MarketplaceStoreEdition';
|
|
80519
|
+
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
79777
80520
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
79778
80521
|
id: Scalars['ID']['output'];
|
|
79779
80522
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -81025,6 +81768,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
81025
81768
|
ari: Scalars['String']['output'];
|
|
81026
81769
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
81027
81770
|
createdDate: Scalars['String']['output'];
|
|
81771
|
+
draft: Scalars['Boolean']['output'];
|
|
81028
81772
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
81029
81773
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
81030
81774
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
@@ -81114,7 +81858,7 @@ export declare type MercuryFocusAreaChangeRequirements = {
|
|
|
81114
81858
|
};
|
|
81115
81859
|
export declare type MercuryFocusAreaChangeSummary = {
|
|
81116
81860
|
__typename?: 'MercuryFocusAreaChangeSummary';
|
|
81117
|
-
focusAreaId
|
|
81861
|
+
focusAreaId?: Maybe<Scalars['ID']['output']>;
|
|
81118
81862
|
fundChangeSummary?: Maybe<MercuryFocusAreaFundChangeSummary>;
|
|
81119
81863
|
positionChangeSummary?: Maybe<MercuryFocusAreaPositionChangeSummary>;
|
|
81120
81864
|
strategicEventId: Scalars['ID']['output'];
|
|
@@ -81134,6 +81878,7 @@ export declare type MercuryFocusAreaFundChangeSummary = {
|
|
|
81134
81878
|
__typename?: 'MercuryFocusAreaFundChangeSummary';
|
|
81135
81879
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81136
81880
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81881
|
+
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81137
81882
|
};
|
|
81138
81883
|
export declare type MercuryFocusAreaGoalLink = Node & {
|
|
81139
81884
|
__typename?: 'MercuryFocusAreaGoalLink';
|
|
@@ -81209,7 +81954,9 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
|
81209
81954
|
movedInCount?: Maybe<Scalars['Int']['output']>;
|
|
81210
81955
|
movedOutCount?: Maybe<Scalars['Int']['output']>;
|
|
81211
81956
|
movedWithinCount?: Maybe<Scalars['Int']['output']>;
|
|
81957
|
+
netCount?: Maybe<Scalars['Int']['output']>;
|
|
81212
81958
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
81959
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81213
81960
|
};
|
|
81214
81961
|
export declare type MercuryFocusAreaSort = {
|
|
81215
81962
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
@@ -82456,6 +83203,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
82456
83203
|
changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
|
|
82457
83204
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
82458
83205
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
83206
|
+
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
82459
83207
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
82460
83208
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
82461
83209
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -82499,6 +83247,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
|
|
|
82499
83247
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
|
|
82500
83248
|
changeProposalId: Scalars['ID']['input'];
|
|
82501
83249
|
};
|
|
83250
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
|
|
83251
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
83252
|
+
};
|
|
82502
83253
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
82503
83254
|
inputs: Array<MercuryChangeSummaryInput>;
|
|
82504
83255
|
};
|
|
@@ -83083,6 +83834,8 @@ export declare type Mutation = {
|
|
|
83083
83834
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
83084
83835
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
83085
83836
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
83837
|
+
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
83838
|
+
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
83086
83839
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
83087
83840
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
83088
83841
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
@@ -83096,12 +83849,30 @@ export declare type Mutation = {
|
|
|
83096
83849
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
83097
83850
|
appStorage?: Maybe<AppStorageMutation>;
|
|
83098
83851
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
83852
|
+
appStorage_admin?: Maybe<AppStorageAdminMutation>;
|
|
83099
83853
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
83100
83854
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
83101
83855
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
83102
83856
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
83103
83857
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
83104
83858
|
attachDanglingComment?: Maybe<Comment>;
|
|
83859
|
+
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
83860
|
+
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
83861
|
+
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
83862
|
+
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
83863
|
+
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
83864
|
+
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
83865
|
+
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
83866
|
+
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
83867
|
+
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
83868
|
+
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
83869
|
+
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
83870
|
+
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
83871
|
+
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
83872
|
+
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
83873
|
+
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
83874
|
+
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
83875
|
+
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
83105
83876
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
83106
83877
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
83107
83878
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -83116,10 +83887,10 @@ export declare type Mutation = {
|
|
|
83116
83887
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
83117
83888
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
83118
83889
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
83890
|
+
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
83119
83891
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
83120
83892
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
83121
83893
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
83122
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
83123
83894
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
83124
83895
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
83125
83896
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -83374,6 +84145,7 @@ export declare type Mutation = {
|
|
|
83374
84145
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
83375
84146
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
83376
84147
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
84148
|
+
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
83377
84149
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
83378
84150
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
83379
84151
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -83460,10 +84232,13 @@ export declare type Mutation = {
|
|
|
83460
84232
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
83461
84233
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
83462
84234
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
84235
|
+
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83463
84236
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83464
84237
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
84238
|
+
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
83465
84239
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
83466
84240
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
84241
|
+
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83467
84242
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
83468
84243
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
83469
84244
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
@@ -83479,6 +84254,7 @@ export declare type Mutation = {
|
|
|
83479
84254
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
83480
84255
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
83481
84256
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
84257
|
+
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
83482
84258
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
83483
84259
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
83484
84260
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
@@ -83496,6 +84272,7 @@ export declare type Mutation = {
|
|
|
83496
84272
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
83497
84273
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
83498
84274
|
likeContent?: Maybe<LikeContentPayload>;
|
|
84275
|
+
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
83499
84276
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
83500
84277
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
83501
84278
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
@@ -83531,6 +84308,7 @@ export declare type Mutation = {
|
|
|
83531
84308
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
83532
84309
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
83533
84310
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
84311
|
+
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
83534
84312
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
83535
84313
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
83536
84314
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
@@ -83602,10 +84380,25 @@ export declare type Mutation = {
|
|
|
83602
84380
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
83603
84381
|
shepherd?: Maybe<ShepherdMutation>;
|
|
83604
84382
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
84383
|
+
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
83605
84384
|
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
84385
|
+
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
84386
|
+
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
83606
84387
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
83607
84388
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84389
|
+
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
84390
|
+
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
83608
84391
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84392
|
+
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84393
|
+
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
84394
|
+
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
84395
|
+
spf_updateAskJustification?: Maybe<SpfUpdateAskPayload>;
|
|
84396
|
+
spf_updateAskName?: Maybe<SpfUpdateAskPayload>;
|
|
84397
|
+
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84398
|
+
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84399
|
+
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84400
|
+
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84401
|
+
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
83609
84402
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
83610
84403
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
83611
84404
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -83731,6 +84524,12 @@ export declare type MutationAddReactionArgs = {
|
|
|
83731
84524
|
contentType: GraphQlReactionContentType;
|
|
83732
84525
|
emojiId: Scalars['String']['input'];
|
|
83733
84526
|
};
|
|
84527
|
+
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
84528
|
+
resourceAri: Scalars['ID']['input'];
|
|
84529
|
+
};
|
|
84530
|
+
export declare type MutationAdmin_DeleteAccessUrlArgs = {
|
|
84531
|
+
id: Scalars['ID']['input'];
|
|
84532
|
+
};
|
|
83734
84533
|
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
83735
84534
|
cloudId: Scalars['String']['input'];
|
|
83736
84535
|
input: AgentStudioCreateAgentInput;
|
|
@@ -83771,6 +84570,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
83771
84570
|
containerId: Scalars['String']['input'];
|
|
83772
84571
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
83773
84572
|
};
|
|
84573
|
+
export declare type MutationAppStorage_AdminArgs = {
|
|
84574
|
+
appId: Scalars['ID']['input'];
|
|
84575
|
+
};
|
|
83774
84576
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
83775
84577
|
input: ApplyPolarisProjectTemplateInput;
|
|
83776
84578
|
};
|
|
@@ -83790,6 +84592,57 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
83790
84592
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
83791
84593
|
input: ReattachInlineCommentInput;
|
|
83792
84594
|
};
|
|
84595
|
+
export declare type MutationAvp_AddDashboardElementArgs = {
|
|
84596
|
+
input: AvpAddDashboardElementInput;
|
|
84597
|
+
};
|
|
84598
|
+
export declare type MutationAvp_AddDashboardRowArgs = {
|
|
84599
|
+
input: AvpAddDashboardRowInput;
|
|
84600
|
+
};
|
|
84601
|
+
export declare type MutationAvp_ClearChartsInRowArgs = {
|
|
84602
|
+
input: AvpClearChartsInRowInput;
|
|
84603
|
+
};
|
|
84604
|
+
export declare type MutationAvp_CopyChartArgs = {
|
|
84605
|
+
input: AvpCopyChartInput;
|
|
84606
|
+
};
|
|
84607
|
+
export declare type MutationAvp_CopyDashboardRowArgs = {
|
|
84608
|
+
input: AvpCopyDashboardRowInput;
|
|
84609
|
+
};
|
|
84610
|
+
export declare type MutationAvp_CreateChartArgs = {
|
|
84611
|
+
input: AvpCreateChartInput;
|
|
84612
|
+
};
|
|
84613
|
+
export declare type MutationAvp_DeleteChartArgs = {
|
|
84614
|
+
input: AvpDeleteChartInput;
|
|
84615
|
+
};
|
|
84616
|
+
export declare type MutationAvp_MoveCanvasElementArgs = {
|
|
84617
|
+
input: AvpMoveCanvasElementInput;
|
|
84618
|
+
};
|
|
84619
|
+
export declare type MutationAvp_MoveCanvasElementToNewRowArgs = {
|
|
84620
|
+
input: AvpMoveCanvasElementToNewRowInput;
|
|
84621
|
+
};
|
|
84622
|
+
export declare type MutationAvp_MoveDashboardRowArgs = {
|
|
84623
|
+
input: AvpMoveDashboardRowInput;
|
|
84624
|
+
};
|
|
84625
|
+
export declare type MutationAvp_RemoveDashboardElementArgs = {
|
|
84626
|
+
input: AvpRemoveDashboardElementInput;
|
|
84627
|
+
};
|
|
84628
|
+
export declare type MutationAvp_RemoveDashboardRowArgs = {
|
|
84629
|
+
input: AvpRemoveDashboardRowInput;
|
|
84630
|
+
};
|
|
84631
|
+
export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
|
|
84632
|
+
input: AvpToggleCanvasElementExpandedInput;
|
|
84633
|
+
};
|
|
84634
|
+
export declare type MutationAvp_UpdateChartArgs = {
|
|
84635
|
+
input: AvpUpdateChartInput;
|
|
84636
|
+
};
|
|
84637
|
+
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
84638
|
+
input: AvpUpdateDashboardInput;
|
|
84639
|
+
};
|
|
84640
|
+
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
84641
|
+
input: AvpUpdateDashboardRowHeightInput;
|
|
84642
|
+
};
|
|
84643
|
+
export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
84644
|
+
input: AvpUpdateDashboardRowNumElementsInput;
|
|
84645
|
+
};
|
|
83793
84646
|
export declare type MutationBoardCardMoveArgs = {
|
|
83794
84647
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
83795
84648
|
};
|
|
@@ -83825,11 +84678,10 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
83825
84678
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83826
84679
|
};
|
|
83827
84680
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
83828
|
-
|
|
84681
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83829
84682
|
};
|
|
83830
84683
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
83831
84684
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83832
|
-
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
83833
84685
|
};
|
|
83834
84686
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
83835
84687
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83841,15 +84693,15 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
83841
84693
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
83842
84694
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
83843
84695
|
};
|
|
84696
|
+
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
84697
|
+
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
84698
|
+
};
|
|
83844
84699
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
83845
84700
|
contentId: Scalars['ID']['input'];
|
|
83846
84701
|
};
|
|
83847
84702
|
export declare type MutationCompleteSprintArgs = {
|
|
83848
84703
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83849
84704
|
};
|
|
83850
|
-
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
83851
|
-
input: ConfigurePolarisRefreshInput;
|
|
83852
|
-
};
|
|
83853
84705
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
83854
84706
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
83855
84707
|
};
|
|
@@ -84691,6 +85543,11 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
84691
85543
|
helpCenterAri: Scalars['ID']['input'];
|
|
84692
85544
|
input: CsmAiUpdateHandoffConfigInput;
|
|
84693
85545
|
};
|
|
85546
|
+
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85547
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
85548
|
+
input: CsmAiWidgetUpdateInput;
|
|
85549
|
+
widgetId: Scalars['ID']['input'];
|
|
85550
|
+
};
|
|
84694
85551
|
export declare type MutationCustomerServiceArgs = {
|
|
84695
85552
|
cloudId: Scalars['ID']['input'];
|
|
84696
85553
|
};
|
|
@@ -84888,6 +85745,7 @@ export declare type MutationEnablePublicLinkForPageArgs = {
|
|
|
84888
85745
|
pageId: Scalars['ID']['input'];
|
|
84889
85746
|
};
|
|
84890
85747
|
export declare type MutationFavouritePageArgs = {
|
|
85748
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84891
85749
|
favouritePageInput: FavouritePageInput;
|
|
84892
85750
|
};
|
|
84893
85751
|
export declare type MutationFavouriteSpaceArgs = {
|
|
@@ -84942,6 +85800,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
84942
85800
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
84943
85801
|
input: JiraCreateCustomBackgroundInput;
|
|
84944
85802
|
};
|
|
85803
|
+
export declare type MutationJira_CreateFieldSchemeArgs = {
|
|
85804
|
+
cloudId: Scalars['ID']['input'];
|
|
85805
|
+
input: JiraCreateFieldSchemeInput;
|
|
85806
|
+
};
|
|
84945
85807
|
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
84946
85808
|
cloudId: Scalars['ID']['input'];
|
|
84947
85809
|
input: JiraCreateGlobalCustomFieldInput;
|
|
@@ -84949,12 +85811,20 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
84949
85811
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
84950
85812
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
84951
85813
|
};
|
|
85814
|
+
export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
85815
|
+
cloudId: Scalars['ID']['input'];
|
|
85816
|
+
input: JiraDeleteFieldSchemeInput;
|
|
85817
|
+
};
|
|
84952
85818
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
84953
85819
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
84954
85820
|
};
|
|
84955
85821
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
84956
85822
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
84957
85823
|
};
|
|
85824
|
+
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
85825
|
+
cloudId: Scalars['ID']['input'];
|
|
85826
|
+
input: JiraEditFieldSchemeInput;
|
|
85827
|
+
};
|
|
84958
85828
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
84959
85829
|
input: JiraPublishBoardViewConfigInput;
|
|
84960
85830
|
};
|
|
@@ -85001,6 +85871,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
85001
85871
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
85002
85872
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
85003
85873
|
};
|
|
85874
|
+
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
85875
|
+
input: JiraSetFieldSetsPreferencesInput;
|
|
85876
|
+
};
|
|
85004
85877
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
85005
85878
|
input: JiraSetIssueSearchGroupByInput;
|
|
85006
85879
|
};
|
|
@@ -85047,6 +85920,12 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
85047
85920
|
export declare type MutationLikeContentArgs = {
|
|
85048
85921
|
input: LikeContentInput;
|
|
85049
85922
|
};
|
|
85923
|
+
export declare type MutationLoom_SpaceCreateArgs = {
|
|
85924
|
+
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
85925
|
+
name: Scalars['String']['input'];
|
|
85926
|
+
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
85927
|
+
siteId: Scalars['ID']['input'];
|
|
85928
|
+
};
|
|
85050
85929
|
export declare type MutationMarkCommentsAsReadArgs = {
|
|
85051
85930
|
input: MarkCommentsAsReadInput;
|
|
85052
85931
|
};
|
|
@@ -85132,6 +86011,10 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
85132
86011
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
85133
86012
|
id: Scalars['String']['input'];
|
|
85134
86013
|
};
|
|
86014
|
+
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
86015
|
+
cloudId: Scalars['ID']['input'];
|
|
86016
|
+
input: Array<RadarClearFocusAreaProposalInput>;
|
|
86017
|
+
};
|
|
85135
86018
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
85136
86019
|
cloudId: Scalars['ID']['input'];
|
|
85137
86020
|
input: RadarCustomFieldInput;
|
|
@@ -85361,18 +86244,63 @@ export declare type MutationShareResourceArgs = {
|
|
|
85361
86244
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
85362
86245
|
spaceKey: Scalars['String']['input'];
|
|
85363
86246
|
};
|
|
86247
|
+
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
86248
|
+
input: SpfAttachAskLinkInput;
|
|
86249
|
+
};
|
|
85364
86250
|
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
85365
86251
|
input: SpfAttachRelatedContentInput;
|
|
85366
86252
|
};
|
|
86253
|
+
export declare type MutationSpf_CreateAskArgs = {
|
|
86254
|
+
input: SpfCreateAskInput;
|
|
86255
|
+
};
|
|
86256
|
+
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
86257
|
+
input: SpfCreateAskCommentInput;
|
|
86258
|
+
};
|
|
85367
86259
|
export declare type MutationSpf_CreateCommentArgs = {
|
|
85368
86260
|
input: SpfCreateCommentInput;
|
|
85369
86261
|
};
|
|
85370
86262
|
export declare type MutationSpf_CreateDependencyArgs = {
|
|
85371
86263
|
input: SpfCreateDependencyInput;
|
|
85372
86264
|
};
|
|
86265
|
+
export declare type MutationSpf_DeleteAskArgs = {
|
|
86266
|
+
input: SpfDeleteAskInput;
|
|
86267
|
+
};
|
|
86268
|
+
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
86269
|
+
input: SpfDeleteAskLinkInput;
|
|
86270
|
+
};
|
|
85373
86271
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
85374
86272
|
input: SpfDeleteDependencyInput;
|
|
85375
86273
|
};
|
|
86274
|
+
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
86275
|
+
input: SpfUpdateAskCommentDataInput;
|
|
86276
|
+
};
|
|
86277
|
+
export declare type MutationSpf_UpdateAskDescriptionArgs = {
|
|
86278
|
+
input: SpfUpdateAskDescriptionInput;
|
|
86279
|
+
};
|
|
86280
|
+
export declare type MutationSpf_UpdateAskImpactedWorkArgs = {
|
|
86281
|
+
input: SpfUpdateAskImpactedWorkInput;
|
|
86282
|
+
};
|
|
86283
|
+
export declare type MutationSpf_UpdateAskJustificationArgs = {
|
|
86284
|
+
input: SpfUpdateAskJustificationInput;
|
|
86285
|
+
};
|
|
86286
|
+
export declare type MutationSpf_UpdateAskNameArgs = {
|
|
86287
|
+
input: SpfUpdateAskNameInput;
|
|
86288
|
+
};
|
|
86289
|
+
export declare type MutationSpf_UpdateAskOwnerArgs = {
|
|
86290
|
+
input: SpfUpdateAskOwnerInput;
|
|
86291
|
+
};
|
|
86292
|
+
export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
86293
|
+
input: SpfUpdateAskPriorityInput;
|
|
86294
|
+
};
|
|
86295
|
+
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
86296
|
+
input: SpfUpdateAskReceivingTeamInput;
|
|
86297
|
+
};
|
|
86298
|
+
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
86299
|
+
input: SpfUpdateAskSubmitterInput;
|
|
86300
|
+
};
|
|
86301
|
+
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
86302
|
+
input: SpfUpdateAskSubmittingTeamInput;
|
|
86303
|
+
};
|
|
85376
86304
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
85377
86305
|
input: SpfUpdateCommentDataInput;
|
|
85378
86306
|
};
|
|
@@ -85447,6 +86375,7 @@ export declare type MutationUnassignIssueParentArgs = {
|
|
|
85447
86375
|
input?: InputMaybe<UnassignIssueParentInput>;
|
|
85448
86376
|
};
|
|
85449
86377
|
export declare type MutationUnfavouritePageArgs = {
|
|
86378
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85450
86379
|
favouritePageInput: FavouritePageInput;
|
|
85451
86380
|
};
|
|
85452
86381
|
export declare type MutationUnfavouriteSpaceArgs = {
|
|
@@ -85468,6 +86397,7 @@ export declare type MutationUnwatchBlogsArgs = {
|
|
|
85468
86397
|
watchSpaceInput: WatchSpaceInput;
|
|
85469
86398
|
};
|
|
85470
86399
|
export declare type MutationUnwatchContentArgs = {
|
|
86400
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85471
86401
|
watchContentInput: WatchContentInput;
|
|
85472
86402
|
};
|
|
85473
86403
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
@@ -85680,6 +86610,7 @@ export declare type MutationWatchBlogsArgs = {
|
|
|
85680
86610
|
watchSpaceInput: WatchSpaceInput;
|
|
85681
86611
|
};
|
|
85682
86612
|
export declare type MutationWatchContentArgs = {
|
|
86613
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85683
86614
|
watchContentInput: WatchContentInput;
|
|
85684
86615
|
};
|
|
85685
86616
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
@@ -86012,6 +86943,7 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
86012
86943
|
clientInfo?: Maybe<OAuthClientsClientInfo>;
|
|
86013
86944
|
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
86014
86945
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
86946
|
+
scopesInfo?: Maybe<Array<OAuthClientsScopeInfo>>;
|
|
86015
86947
|
};
|
|
86016
86948
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
86017
86949
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -86033,6 +86965,11 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
86033
86965
|
};
|
|
86034
86966
|
export declare type OAuthClientsClientInfo = {
|
|
86035
86967
|
__typename?: 'OAuthClientsClientInfo';
|
|
86968
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
86969
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
86970
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
86971
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
86972
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
86036
86973
|
clientId: Scalars['String']['output'];
|
|
86037
86974
|
clientName?: Maybe<Scalars['String']['output']>;
|
|
86038
86975
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -86051,6 +86988,11 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
86051
86988
|
description?: Maybe<Scalars['String']['output']>;
|
|
86052
86989
|
key: Scalars['String']['output'];
|
|
86053
86990
|
};
|
|
86991
|
+
export declare type OAuthClientsScopeInfo = {
|
|
86992
|
+
__typename?: 'OAuthClientsScopeInfo';
|
|
86993
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
86994
|
+
key: Scalars['String']['output'];
|
|
86995
|
+
};
|
|
86054
86996
|
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
86055
86997
|
contextIds: Array<Scalars['ID']['input']>;
|
|
86056
86998
|
extensionId: Scalars['ID']['input'];
|
|
@@ -88051,6 +88993,7 @@ export declare type PolarisWhiteboardConfig = {
|
|
|
88051
88993
|
export declare type PopularFeedItem = {
|
|
88052
88994
|
__typename?: 'PopularFeedItem';
|
|
88053
88995
|
content?: Maybe<Content>;
|
|
88996
|
+
id: Scalars['ID']['output'];
|
|
88054
88997
|
};
|
|
88055
88998
|
export declare type PopularFeedItemEdge = {
|
|
88056
88999
|
__typename?: 'PopularFeedItemEdge';
|
|
@@ -88437,6 +89380,7 @@ export declare type Query = {
|
|
|
88437
89380
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
88438
89381
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
88439
89382
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
89383
|
+
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
88440
89384
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
88441
89385
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
88442
89386
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
@@ -88477,8 +89421,13 @@ export declare type Query = {
|
|
|
88477
89421
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
88478
89422
|
apps?: Maybe<AppConnection>;
|
|
88479
89423
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89424
|
+
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89425
|
+
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89426
|
+
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88480
89427
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
88481
89428
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
89429
|
+
avp_getChart?: Maybe<AvpChart>;
|
|
89430
|
+
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
88482
89431
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
88483
89432
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
88484
89433
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -88497,6 +89446,7 @@ export declare type Query = {
|
|
|
88497
89446
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
88498
89447
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
88499
89448
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
89449
|
+
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
88500
89450
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
88501
89451
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
88502
89452
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
@@ -88767,6 +89717,7 @@ export declare type Query = {
|
|
|
88767
89717
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
88768
89718
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
88769
89719
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89720
|
+
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88770
89721
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
88771
89722
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
88772
89723
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -88924,11 +89875,15 @@ export declare type Query = {
|
|
|
88924
89875
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
88925
89876
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
88926
89877
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89878
|
+
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
89879
|
+
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
88927
89880
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
88928
89881
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
88929
89882
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
88930
89883
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
88931
89884
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
89885
|
+
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
89886
|
+
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
88932
89887
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
88933
89888
|
jsw?: Maybe<JswQuery>;
|
|
88934
89889
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -88946,6 +89901,7 @@ export declare type Query = {
|
|
|
88946
89901
|
loom_comment?: Maybe<LoomComment>;
|
|
88947
89902
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
88948
89903
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
89904
|
+
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
88949
89905
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
88950
89906
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
88951
89907
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -89011,6 +89967,7 @@ export declare type Query = {
|
|
|
89011
89967
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
89012
89968
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89013
89969
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89970
|
+
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
89014
89971
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
89015
89972
|
pokemon?: Maybe<PokemonQuery>;
|
|
89016
89973
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -89034,6 +89991,8 @@ export declare type Query = {
|
|
|
89034
89991
|
pricings: ContentPlatformPricingSearchConnection;
|
|
89035
89992
|
productListing?: Maybe<ProductListingResult>;
|
|
89036
89993
|
productListings: Array<ProductListingResult>;
|
|
89994
|
+
projects_byAri?: Maybe<TownsquareProject>;
|
|
89995
|
+
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
89037
89996
|
ptpage?: Maybe<PtPage>;
|
|
89038
89997
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
89039
89998
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -89106,6 +90065,9 @@ export declare type Query = {
|
|
|
89106
90065
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
89107
90066
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
89108
90067
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
90068
|
+
spf_ask?: Maybe<SpfAskResult>;
|
|
90069
|
+
spf_asks?: Maybe<SpfAskConnection>;
|
|
90070
|
+
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
89109
90071
|
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
89110
90072
|
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
89111
90073
|
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
@@ -89178,6 +90140,13 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
|
|
|
89178
90140
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89179
90141
|
orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
|
|
89180
90142
|
};
|
|
90143
|
+
export declare type QueryAdmin_AccessUrlsArgs = {
|
|
90144
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90145
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
90146
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90147
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
90148
|
+
orgId: Scalars['ID']['input'];
|
|
90149
|
+
};
|
|
89181
90150
|
export declare type QueryAgentAi_ContextPanelArgs = {
|
|
89182
90151
|
cloudId: Scalars['ID']['input'];
|
|
89183
90152
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89359,12 +90328,27 @@ export declare type QueryAppsArgs = {
|
|
|
89359
90328
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
89360
90329
|
cloudId: Scalars['ID']['input'];
|
|
89361
90330
|
};
|
|
90331
|
+
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
90332
|
+
issueId: Scalars['ID']['input'];
|
|
90333
|
+
};
|
|
90334
|
+
export declare type QueryAtlasProjectsLinkedToAtlasGoalArgs = {
|
|
90335
|
+
goalId: Scalars['ID']['input'];
|
|
90336
|
+
};
|
|
90337
|
+
export declare type QueryAtlasProjectsLinkedToJiraIssueArgs = {
|
|
90338
|
+
issueId: Scalars['ID']['input'];
|
|
90339
|
+
};
|
|
89362
90340
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
89363
90341
|
cloudId: Scalars['ID']['input'];
|
|
89364
90342
|
};
|
|
89365
90343
|
export declare type QueryAvailableContentStatesArgs = {
|
|
89366
90344
|
contentId: Scalars['ID']['input'];
|
|
89367
90345
|
};
|
|
90346
|
+
export declare type QueryAvp_GetChartArgs = {
|
|
90347
|
+
chartAri: Scalars['ID']['input'];
|
|
90348
|
+
};
|
|
90349
|
+
export declare type QueryAvp_GetDashboardArgs = {
|
|
90350
|
+
dashboardAri: Scalars['ID']['input'];
|
|
90351
|
+
};
|
|
89368
90352
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
89369
90353
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89370
90354
|
cloudId: Scalars['ID']['input'];
|
|
@@ -89437,6 +90421,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
89437
90421
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
89438
90422
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
89439
90423
|
};
|
|
90424
|
+
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90425
|
+
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
90426
|
+
};
|
|
89440
90427
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
89441
90428
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
89442
90429
|
};
|
|
@@ -90662,6 +91649,11 @@ export declare type QueryContentWatchersArgs = {
|
|
|
90662
91649
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90663
91650
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
90664
91651
|
};
|
|
91652
|
+
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91654
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91655
|
+
projectId: Scalars['ID']['input'];
|
|
91656
|
+
};
|
|
90665
91657
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
90666
91658
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90667
91659
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -91224,6 +92216,18 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
91224
92216
|
cloudId: Scalars['ID']['input'];
|
|
91225
92217
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91226
92218
|
};
|
|
92219
|
+
export declare type QueryJira_FieldSchemeAssociatedFieldsArgs = {
|
|
92220
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92221
|
+
cloudId: Scalars['ID']['input'];
|
|
92222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92223
|
+
input?: InputMaybe<JiraFieldSchemeAssociatedFieldsInput>;
|
|
92224
|
+
};
|
|
92225
|
+
export declare type QueryJira_FieldSchemesArgs = {
|
|
92226
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92227
|
+
cloudId: Scalars['ID']['input'];
|
|
92228
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92229
|
+
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
92230
|
+
};
|
|
91227
92231
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
91228
92232
|
cloudId: Scalars['ID']['input'];
|
|
91229
92233
|
};
|
|
@@ -91241,6 +92245,15 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
91241
92245
|
cloudId: Scalars['ID']['input'];
|
|
91242
92246
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
91243
92247
|
};
|
|
92248
|
+
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
92249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92250
|
+
containerAri: Scalars['ID']['input'];
|
|
92251
|
+
filter: JsmChannelsOrchestratorConversationsFilter;
|
|
92252
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92253
|
+
};
|
|
92254
|
+
export declare type QueryJsmChannels_ConversationsByIdsArgs = {
|
|
92255
|
+
ids: Array<Scalars['ID']['input']>;
|
|
92256
|
+
};
|
|
91244
92257
|
export declare type QueryKnowledgeBaseArgs = {
|
|
91245
92258
|
cloudId: Scalars['ID']['input'];
|
|
91246
92259
|
};
|
|
@@ -91283,6 +92296,12 @@ export declare type QueryLoom_CreateSpaceArgs = {
|
|
|
91283
92296
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
91284
92297
|
siteId: Scalars['ID']['input'];
|
|
91285
92298
|
};
|
|
92299
|
+
export declare type QueryLoom_FoldersSearchArgs = {
|
|
92300
|
+
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92301
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
92302
|
+
siteId: Scalars['ID']['input'];
|
|
92303
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
92304
|
+
};
|
|
91286
92305
|
export declare type QueryLoom_MeetingArgs = {
|
|
91287
92306
|
id: Scalars['ID']['input'];
|
|
91288
92307
|
};
|
|
@@ -91476,6 +92495,14 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
91476
92495
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91477
92496
|
cloudId: Scalars['ID']['input'];
|
|
91478
92497
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
92498
|
+
filters?: InputMaybe<JiraPlaybookExecutionFilter>;
|
|
92499
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92500
|
+
projectKey: Scalars['String']['input'];
|
|
92501
|
+
};
|
|
92502
|
+
export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
|
|
92503
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92504
|
+
cloudId: Scalars['ID']['input'];
|
|
92505
|
+
filters?: InputMaybe<JiraPlaybookStepUsageFilter>;
|
|
91479
92506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91480
92507
|
projectKey: Scalars['String']['input'];
|
|
91481
92508
|
};
|
|
@@ -91554,6 +92581,12 @@ export declare type QueryProductListingsArgs = {
|
|
|
91554
92581
|
ids: Array<Scalars['ID']['input']>;
|
|
91555
92582
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
91556
92583
|
};
|
|
92584
|
+
export declare type QueryProjects_ByAriArgs = {
|
|
92585
|
+
ari: Scalars['String']['input'];
|
|
92586
|
+
};
|
|
92587
|
+
export declare type QueryProjects_ByArisArgs = {
|
|
92588
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
92589
|
+
};
|
|
91557
92590
|
export declare type QueryPtpageArgs = {
|
|
91558
92591
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91559
92592
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91634,8 +92667,9 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
91634
92667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91635
92668
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
91636
92669
|
cloudId: Scalars['ID']['input'];
|
|
91637
|
-
entity
|
|
92670
|
+
entity?: InputMaybe<RadarPositionsByEntityType>;
|
|
91638
92671
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92672
|
+
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
91639
92673
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
91640
92674
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
91641
92675
|
};
|
|
@@ -91872,6 +92906,18 @@ export declare type QuerySpacesArgs = {
|
|
|
91872
92906
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
91873
92907
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
91874
92908
|
};
|
|
92909
|
+
export declare type QuerySpf_AskArgs = {
|
|
92910
|
+
id: Scalars['ID']['input'];
|
|
92911
|
+
};
|
|
92912
|
+
export declare type QuerySpf_AsksArgs = {
|
|
92913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92914
|
+
cloudId: Scalars['ID']['input'];
|
|
92915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92916
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
92917
|
+
};
|
|
92918
|
+
export declare type QuerySpf_AsksByIdsArgs = {
|
|
92919
|
+
ids: Array<Scalars['ID']['input']>;
|
|
92920
|
+
};
|
|
91875
92921
|
export declare type QuerySpf_DependenciesArgs = {
|
|
91876
92922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91877
92923
|
cloudId: Scalars['ID']['input'];
|
|
@@ -92027,6 +93073,9 @@ export declare type QueryUserGroupSearchArgs = {
|
|
|
92027
93073
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
92028
93074
|
sitePermissionTypeFilter?: InputMaybe<SitePermissionTypeFilter>;
|
|
92029
93075
|
};
|
|
93076
|
+
export declare type QueryUserPreferencesArgs = {
|
|
93077
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
93078
|
+
};
|
|
92030
93079
|
export declare type QueryUserWithContentRestrictionsArgs = {
|
|
92031
93080
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
92032
93081
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -92186,6 +93235,9 @@ export declare type RadarBooleanFieldValue = {
|
|
|
92186
93235
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
92187
93236
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
92188
93237
|
};
|
|
93238
|
+
export declare type RadarClearFocusAreaProposalInput = {
|
|
93239
|
+
proposalAri: Scalars['ID']['input'];
|
|
93240
|
+
};
|
|
92189
93241
|
export declare type RadarConnection = {
|
|
92190
93242
|
pageInfo: PageInfo;
|
|
92191
93243
|
totalCount: Scalars['Int']['output'];
|
|
@@ -92513,8 +93565,13 @@ export declare type RadarPositionsByEntityEdge = RadarEdge & {
|
|
|
92513
93565
|
cursor: Scalars['String']['output'];
|
|
92514
93566
|
node: RadarPositionsByEntity;
|
|
92515
93567
|
};
|
|
93568
|
+
export declare type RadarPositionsByEntityInput = {
|
|
93569
|
+
entity: RadarPositionsByEntityType;
|
|
93570
|
+
fieldValue?: InputMaybe<Scalars['ID']['input']>;
|
|
93571
|
+
};
|
|
92516
93572
|
export declare enum RadarPositionsByEntityType {
|
|
92517
|
-
FocusArea = "focusArea"
|
|
93573
|
+
FocusArea = "focusArea",
|
|
93574
|
+
Position = "position"
|
|
92518
93575
|
}
|
|
92519
93576
|
export declare type RadarPrincipalByResourceRole = {
|
|
92520
93577
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
@@ -92658,6 +93715,8 @@ export declare enum RateLimitingCurrency {
|
|
|
92658
93715
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
92659
93716
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
92660
93717
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
93718
|
+
DevConsoleMutationCurrency = "DEV_CONSOLE_MUTATION_CURRENCY",
|
|
93719
|
+
DevConsoleQueryCurrency = "DEV_CONSOLE_QUERY_CURRENCY",
|
|
92661
93720
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
92662
93721
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
92663
93722
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -94343,6 +95402,7 @@ export declare type SearchAnalyticsInput = {
|
|
|
94343
95402
|
queryVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
94344
95403
|
searchReferrerId?: InputMaybe<Scalars['String']['input']>;
|
|
94345
95404
|
searchSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
95405
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
94346
95406
|
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
94347
95407
|
};
|
|
94348
95408
|
export declare type SearchBoardFilter = {
|
|
@@ -97985,6 +99045,144 @@ export declare type SpaceWithExemption = {
|
|
|
97985
99045
|
status?: Maybe<Scalars['String']['output']>;
|
|
97986
99046
|
type?: Maybe<Scalars['String']['output']>;
|
|
97987
99047
|
};
|
|
99048
|
+
export declare type SpfAsk = Node & {
|
|
99049
|
+
__typename?: 'SpfAsk';
|
|
99050
|
+
comments?: Maybe<SpfAskCommentConnection>;
|
|
99051
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99052
|
+
createdBy?: Maybe<User>;
|
|
99053
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
99054
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
99055
|
+
id: Scalars['ID']['output'];
|
|
99056
|
+
impactedWork?: Maybe<SpfImpactedWork>;
|
|
99057
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
99058
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
99059
|
+
links?: Maybe<SpfAskLinkConnection>;
|
|
99060
|
+
name: Scalars['String']['output'];
|
|
99061
|
+
owner?: Maybe<User>;
|
|
99062
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
99063
|
+
priority: SpfAskPriority;
|
|
99064
|
+
receivingTeam?: Maybe<TeamV2>;
|
|
99065
|
+
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
99066
|
+
status: SpfAskStatus;
|
|
99067
|
+
submitter?: Maybe<User>;
|
|
99068
|
+
submitterId: Scalars['String']['output'];
|
|
99069
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
99070
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
99071
|
+
targetDate?: Maybe<SpfAskTargetDate>;
|
|
99072
|
+
transitions?: Maybe<Array<Maybe<SpfAskTransition>>>;
|
|
99073
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99074
|
+
updatedBy?: Maybe<User>;
|
|
99075
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
99076
|
+
};
|
|
99077
|
+
export declare type SpfAskCommentsArgs = {
|
|
99078
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99079
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99080
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
99081
|
+
};
|
|
99082
|
+
export declare type SpfAskLinksArgs = {
|
|
99083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99085
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
99086
|
+
};
|
|
99087
|
+
export declare type SpfAskComment = {
|
|
99088
|
+
__typename?: 'SpfAskComment';
|
|
99089
|
+
askId: Scalars['String']['output'];
|
|
99090
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99091
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
99092
|
+
data: Scalars['String']['output'];
|
|
99093
|
+
id: Scalars['ID']['output'];
|
|
99094
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99095
|
+
};
|
|
99096
|
+
export declare type SpfAskCommentConnection = {
|
|
99097
|
+
__typename?: 'SpfAskCommentConnection';
|
|
99098
|
+
edges?: Maybe<Array<Maybe<SpfAskCommentEdge>>>;
|
|
99099
|
+
pageInfo: PageInfo;
|
|
99100
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
99101
|
+
};
|
|
99102
|
+
export declare type SpfAskCommentEdge = {
|
|
99103
|
+
__typename?: 'SpfAskCommentEdge';
|
|
99104
|
+
cursor: Scalars['String']['output'];
|
|
99105
|
+
node?: Maybe<SpfAskCommentResult>;
|
|
99106
|
+
};
|
|
99107
|
+
export declare type SpfAskCommentResult = QueryError | SpfAskComment;
|
|
99108
|
+
export declare type SpfAskConnection = {
|
|
99109
|
+
__typename?: 'SpfAskConnection';
|
|
99110
|
+
edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
|
|
99111
|
+
pageInfo: PageInfo;
|
|
99112
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
99113
|
+
};
|
|
99114
|
+
export declare type SpfAskEdge = {
|
|
99115
|
+
__typename?: 'SpfAskEdge';
|
|
99116
|
+
cursor: Scalars['String']['output'];
|
|
99117
|
+
node?: Maybe<SpfAskResult>;
|
|
99118
|
+
};
|
|
99119
|
+
export declare type SpfAskLink = {
|
|
99120
|
+
__typename?: 'SpfAskLink';
|
|
99121
|
+
askId: Scalars['String']['output'];
|
|
99122
|
+
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
99123
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
99124
|
+
id: Scalars['ID']['output'];
|
|
99125
|
+
url: Scalars['URL']['output'];
|
|
99126
|
+
};
|
|
99127
|
+
export declare type SpfAskLinkConnection = {
|
|
99128
|
+
__typename?: 'SpfAskLinkConnection';
|
|
99129
|
+
edges?: Maybe<Array<Maybe<SpfAskLinkEdge>>>;
|
|
99130
|
+
pageInfo: PageInfo;
|
|
99131
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
99132
|
+
};
|
|
99133
|
+
export declare type SpfAskLinkEdge = {
|
|
99134
|
+
__typename?: 'SpfAskLinkEdge';
|
|
99135
|
+
cursor: Scalars['String']['output'];
|
|
99136
|
+
node?: Maybe<SpfAskLinkResult>;
|
|
99137
|
+
};
|
|
99138
|
+
export declare type SpfAskLinkResult = QueryError | SpfAskLink;
|
|
99139
|
+
export declare enum SpfAskPriority {
|
|
99140
|
+
Critical = "CRITICAL",
|
|
99141
|
+
High = "HIGH",
|
|
99142
|
+
Highest = "HIGHEST",
|
|
99143
|
+
Low = "LOW",
|
|
99144
|
+
Medium = "MEDIUM"
|
|
99145
|
+
}
|
|
99146
|
+
export declare type SpfAskResult = QueryError | SpfAsk;
|
|
99147
|
+
export declare enum SpfAskStatus {
|
|
99148
|
+
Accepted = "ACCEPTED",
|
|
99149
|
+
Canceled = "CANCELED",
|
|
99150
|
+
Denied = "DENIED",
|
|
99151
|
+
Draft = "DRAFT",
|
|
99152
|
+
InReview = "IN_REVIEW",
|
|
99153
|
+
Revising = "REVISING",
|
|
99154
|
+
Submitted = "SUBMITTED"
|
|
99155
|
+
}
|
|
99156
|
+
export declare type SpfAskTargetDate = {
|
|
99157
|
+
__typename?: 'SpfAskTargetDate';
|
|
99158
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
99159
|
+
targetDateType?: Maybe<SpfAskTargetDateType>;
|
|
99160
|
+
};
|
|
99161
|
+
export declare type SpfAskTargetDateInput = {
|
|
99162
|
+
targetDate: Scalars['String']['input'];
|
|
99163
|
+
targetDateType: SpfAskTargetDateType;
|
|
99164
|
+
};
|
|
99165
|
+
export declare enum SpfAskTargetDateType {
|
|
99166
|
+
Day = "DAY",
|
|
99167
|
+
Month = "MONTH",
|
|
99168
|
+
Quarter = "QUARTER"
|
|
99169
|
+
}
|
|
99170
|
+
export declare type SpfAskTransition = {
|
|
99171
|
+
__typename?: 'SpfAskTransition';
|
|
99172
|
+
askId: Scalars['String']['output'];
|
|
99173
|
+
status?: Maybe<SpfAskStatus>;
|
|
99174
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99175
|
+
};
|
|
99176
|
+
export declare type SpfAttachAskLinkInput = {
|
|
99177
|
+
askId: Scalars['ID']['input'];
|
|
99178
|
+
url: Scalars['URL']['input'];
|
|
99179
|
+
};
|
|
99180
|
+
export declare type SpfAttachAskLinkPayload = Payload & {
|
|
99181
|
+
__typename?: 'SpfAttachAskLinkPayload';
|
|
99182
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99183
|
+
link?: Maybe<SpfAskLink>;
|
|
99184
|
+
success: Scalars['Boolean']['output'];
|
|
99185
|
+
};
|
|
97988
99186
|
export declare type SpfAttachRelatedContentInput = {
|
|
97989
99187
|
dependencyId: Scalars['ID']['input'];
|
|
97990
99188
|
url: Scalars['URL']['input'];
|
|
@@ -98016,6 +99214,36 @@ export declare type SpfCommentEdge = {
|
|
|
98016
99214
|
node?: Maybe<SpfCommentResult>;
|
|
98017
99215
|
};
|
|
98018
99216
|
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
99217
|
+
export declare type SpfCreateAskCommentInput = {
|
|
99218
|
+
askId: Scalars['ID']['input'];
|
|
99219
|
+
data: Scalars['String']['input'];
|
|
99220
|
+
};
|
|
99221
|
+
export declare type SpfCreateAskCommentPayload = Payload & {
|
|
99222
|
+
__typename?: 'SpfCreateAskCommentPayload';
|
|
99223
|
+
comment?: Maybe<SpfAskComment>;
|
|
99224
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99225
|
+
success: Scalars['Boolean']['output'];
|
|
99226
|
+
};
|
|
99227
|
+
export declare type SpfCreateAskInput = {
|
|
99228
|
+
cloudId: Scalars['ID']['input'];
|
|
99229
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
99230
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
99231
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
99232
|
+
name: Scalars['String']['input'];
|
|
99233
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
99234
|
+
priority: SpfAskPriority;
|
|
99235
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99236
|
+
status: SpfAskStatus;
|
|
99237
|
+
submitterId: Scalars['String']['input'];
|
|
99238
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99239
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
99240
|
+
};
|
|
99241
|
+
export declare type SpfCreateAskPayload = Payload & {
|
|
99242
|
+
__typename?: 'SpfCreateAskPayload';
|
|
99243
|
+
ask?: Maybe<SpfAsk>;
|
|
99244
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99245
|
+
success: Scalars['Boolean']['output'];
|
|
99246
|
+
};
|
|
98019
99247
|
export declare type SpfCreateCommentInput = {
|
|
98020
99248
|
data: Scalars['String']['input'];
|
|
98021
99249
|
dependencyId: Scalars['ID']['input'];
|
|
@@ -98046,6 +99274,24 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
98046
99274
|
errors?: Maybe<Array<MutationError>>;
|
|
98047
99275
|
success: Scalars['Boolean']['output'];
|
|
98048
99276
|
};
|
|
99277
|
+
export declare type SpfDeleteAskInput = {
|
|
99278
|
+
id: Scalars['ID']['input'];
|
|
99279
|
+
};
|
|
99280
|
+
export declare type SpfDeleteAskLinkInput = {
|
|
99281
|
+
id: Scalars['ID']['input'];
|
|
99282
|
+
};
|
|
99283
|
+
export declare type SpfDeleteAskLinkPayload = Payload & {
|
|
99284
|
+
__typename?: 'SpfDeleteAskLinkPayload';
|
|
99285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99286
|
+
id: Scalars['ID']['output'];
|
|
99287
|
+
success: Scalars['Boolean']['output'];
|
|
99288
|
+
};
|
|
99289
|
+
export declare type SpfDeleteAskPayload = Payload & {
|
|
99290
|
+
__typename?: 'SpfDeleteAskPayload';
|
|
99291
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99292
|
+
id: Scalars['ID']['output'];
|
|
99293
|
+
success: Scalars['Boolean']['output'];
|
|
99294
|
+
};
|
|
98049
99295
|
export declare type SpfDeleteDependencyInput = {
|
|
98050
99296
|
id: Scalars['ID']['input'];
|
|
98051
99297
|
};
|
|
@@ -98155,6 +99401,58 @@ export declare enum SpfTargetDateType {
|
|
|
98155
99401
|
Month = "MONTH",
|
|
98156
99402
|
Quarter = "QUARTER"
|
|
98157
99403
|
}
|
|
99404
|
+
export declare type SpfUpdateAskCommentDataInput = {
|
|
99405
|
+
data: Scalars['String']['input'];
|
|
99406
|
+
id: Scalars['ID']['input'];
|
|
99407
|
+
};
|
|
99408
|
+
export declare type SpfUpdateAskCommentPayload = Payload & {
|
|
99409
|
+
__typename?: 'SpfUpdateAskCommentPayload';
|
|
99410
|
+
comment?: Maybe<SpfAskComment>;
|
|
99411
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99412
|
+
success: Scalars['Boolean']['output'];
|
|
99413
|
+
};
|
|
99414
|
+
export declare type SpfUpdateAskDescriptionInput = {
|
|
99415
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
99416
|
+
id: Scalars['ID']['input'];
|
|
99417
|
+
};
|
|
99418
|
+
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
99419
|
+
id: Scalars['ID']['input'];
|
|
99420
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
99421
|
+
};
|
|
99422
|
+
export declare type SpfUpdateAskJustificationInput = {
|
|
99423
|
+
id: Scalars['ID']['input'];
|
|
99424
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
99425
|
+
};
|
|
99426
|
+
export declare type SpfUpdateAskNameInput = {
|
|
99427
|
+
id: Scalars['ID']['input'];
|
|
99428
|
+
name: Scalars['String']['input'];
|
|
99429
|
+
};
|
|
99430
|
+
export declare type SpfUpdateAskOwnerInput = {
|
|
99431
|
+
id: Scalars['ID']['input'];
|
|
99432
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
99433
|
+
};
|
|
99434
|
+
export declare type SpfUpdateAskPayload = Payload & {
|
|
99435
|
+
__typename?: 'SpfUpdateAskPayload';
|
|
99436
|
+
ask?: Maybe<SpfAsk>;
|
|
99437
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99438
|
+
success: Scalars['Boolean']['output'];
|
|
99439
|
+
};
|
|
99440
|
+
export declare type SpfUpdateAskPriorityInput = {
|
|
99441
|
+
id: Scalars['ID']['input'];
|
|
99442
|
+
priority: SpfAskPriority;
|
|
99443
|
+
};
|
|
99444
|
+
export declare type SpfUpdateAskReceivingTeamInput = {
|
|
99445
|
+
id: Scalars['ID']['input'];
|
|
99446
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99447
|
+
};
|
|
99448
|
+
export declare type SpfUpdateAskSubmitterInput = {
|
|
99449
|
+
id: Scalars['ID']['input'];
|
|
99450
|
+
submitterId: Scalars['String']['input'];
|
|
99451
|
+
};
|
|
99452
|
+
export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
99453
|
+
id: Scalars['ID']['input'];
|
|
99454
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99455
|
+
};
|
|
98158
99456
|
export declare type SpfUpdateCommentDataInput = {
|
|
98159
99457
|
data: Scalars['String']['input'];
|
|
98160
99458
|
id: Scalars['ID']['input'];
|
|
@@ -99482,6 +100780,7 @@ export declare type TenantContext = {
|
|
|
99482
100780
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
99483
100781
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
99484
100782
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100783
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
99485
100784
|
};
|
|
99486
100785
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
99487
100786
|
product: Scalars['String']['input'];
|
|
@@ -101773,6 +103072,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
101773
103072
|
export declare type TrelloCardClause = {
|
|
101774
103073
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
101775
103074
|
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
103075
|
+
ids?: InputMaybe<TrelloCardIdsClause>;
|
|
101776
103076
|
list?: InputMaybe<TrelloCardListClause>;
|
|
101777
103077
|
};
|
|
101778
103078
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -101881,6 +103181,9 @@ export declare enum TrelloCardExternalSource {
|
|
|
101881
103181
|
Siri = "SIRI",
|
|
101882
103182
|
Slack = "SLACK"
|
|
101883
103183
|
}
|
|
103184
|
+
export declare type TrelloCardIdsClause = {
|
|
103185
|
+
cards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103186
|
+
};
|
|
101884
103187
|
export declare type TrelloCardLabelEdgeUpdated = {
|
|
101885
103188
|
__typename?: 'TrelloCardLabelEdgeUpdated';
|
|
101886
103189
|
node: TrelloLabelId;
|
|
@@ -102027,6 +103330,7 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
102027
103330
|
};
|
|
102028
103331
|
export declare type TrelloChecklistDeleted = {
|
|
102029
103332
|
__typename?: 'TrelloChecklistDeleted';
|
|
103333
|
+
id: Scalars['ID']['output'];
|
|
102030
103334
|
objectId: Scalars['ID']['output'];
|
|
102031
103335
|
};
|
|
102032
103336
|
export declare type TrelloChecklistEdge = {
|
|
@@ -102784,6 +104088,7 @@ export declare type TrelloMutationApi = {
|
|
|
102784
104088
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
102785
104089
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
102786
104090
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
104091
|
+
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
102787
104092
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
102788
104093
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
102789
104094
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -102831,6 +104136,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
102831
104136
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
102832
104137
|
input: TrelloPinCardInput;
|
|
102833
104138
|
};
|
|
104139
|
+
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
104140
|
+
input: TrelloRemoveBoardStarInput;
|
|
104141
|
+
};
|
|
102834
104142
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
102835
104143
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
102836
104144
|
};
|
|
@@ -103463,6 +104771,15 @@ export declare type TrelloReactionLimits = {
|
|
|
103463
104771
|
perAction?: Maybe<TrelloLimitProps>;
|
|
103464
104772
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
103465
104773
|
};
|
|
104774
|
+
export declare type TrelloRemoveBoardStarInput = {
|
|
104775
|
+
boardId: Scalars['ID']['input'];
|
|
104776
|
+
userId: Scalars['ID']['input'];
|
|
104777
|
+
};
|
|
104778
|
+
export declare type TrelloRemoveBoardStarPayload = Payload & {
|
|
104779
|
+
__typename?: 'TrelloRemoveBoardStarPayload';
|
|
104780
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104781
|
+
success: Scalars['Boolean']['output'];
|
|
104782
|
+
};
|
|
103466
104783
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
103467
104784
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
103468
104785
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -104990,6 +106307,7 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
104990
106307
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
104991
106308
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104992
106309
|
id: Scalars['ID']['input'];
|
|
106310
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
104993
106311
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104994
106312
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
104995
106313
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104998,6 +106316,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
104998
106316
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104999
106317
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
105000
106318
|
id: Scalars['ID']['input'];
|
|
106319
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105001
106320
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105002
106321
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105003
106322
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -105006,6 +106325,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
105006
106325
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105007
106326
|
id: Scalars['ID']['input'];
|
|
105008
106327
|
linkType?: InputMaybe<CompassLinkType>;
|
|
106328
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105009
106329
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105010
106330
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105011
106331
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -105019,6 +106339,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
105019
106339
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105020
106340
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
105021
106341
|
id: Scalars['ID']['input'];
|
|
106342
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105022
106343
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
105023
106344
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105024
106345
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -105027,6 +106348,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
105027
106348
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
105028
106349
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105029
106350
|
id: Scalars['ID']['input'];
|
|
106351
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105030
106352
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105031
106353
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105032
106354
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -105298,6 +106620,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
105298
106620
|
export declare type UpdateJiraPlaybookInput = {
|
|
105299
106621
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
105300
106622
|
id: Scalars['ID']['input'];
|
|
106623
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
105301
106624
|
name: Scalars['String']['input'];
|
|
105302
106625
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
105303
106626
|
scopeType: JiraPlaybookScopeType;
|