@forge/cli-shared 8.0.0-experimental-71cedbc → 8.0.0-next.10-experimental-97e4b11
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 +2 -53
- 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 +18 -33
- package/out/app-logs/view-logs.d.ts +2 -4
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +3 -4
- 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 +1 -4
- package/out/apps/template.js +1 -1
- package/out/graphql/graphql-types.d.ts +392 -1099
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +115 -162
- package/out/service/statsig-service.d.ts +1 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +0 -3
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +2 -1
- package/out/ui/command-line-ui.d.ts +1 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +5 -0
- package/out/ui/logger.d.ts +1 -0
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +2 -0
- package/out/ui/text.d.ts +14 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +20 -1
- package/package.json +2 -2
|
@@ -123,350 +123,6 @@ 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
|
-
};
|
|
470
126
|
export declare enum AcceptableResponse {
|
|
471
127
|
False = "FALSE",
|
|
472
128
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -1197,7 +853,6 @@ export declare type AgentStudioAgentEdge = {
|
|
|
1197
853
|
};
|
|
1198
854
|
export declare type AgentStudioAgentQueryInput = {
|
|
1199
855
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
-
onlyCodingAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1201
856
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1202
857
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1203
858
|
};
|
|
@@ -1217,11 +872,8 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
1217
872
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
1218
873
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
1219
874
|
creator?: Maybe<User>;
|
|
1220
|
-
creatorType?: Maybe<Scalars['String']['output']>;
|
|
1221
875
|
description?: Maybe<Scalars['String']['output']>;
|
|
1222
|
-
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
1223
876
|
id: Scalars['ID']['output'];
|
|
1224
|
-
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
1225
877
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
1226
878
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
1227
879
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
@@ -4424,29 +4076,14 @@ export declare enum CcpEntitlementStatus {
|
|
|
4424
4076
|
Active = "ACTIVE",
|
|
4425
4077
|
Inactive = "INACTIVE"
|
|
4426
4078
|
}
|
|
4427
|
-
export declare type CcpEntitlementTemplate =
|
|
4079
|
+
export declare type CcpEntitlementTemplate = {
|
|
4428
4080
|
__typename?: 'CcpEntitlementTemplate';
|
|
4429
|
-
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4430
|
-
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4431
4081
|
data?: Maybe<Scalars['String']['output']>;
|
|
4432
|
-
defaultRevision?: Maybe<Scalars['Boolean']['output']>;
|
|
4433
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
4434
|
-
id: Scalars['ID']['output'];
|
|
4435
4082
|
key?: Maybe<Scalars['ID']['output']>;
|
|
4436
|
-
productKey?: Maybe<Scalars['String']['output']>;
|
|
4437
4083
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
4438
|
-
status?: Maybe<CcpEntitlementTemplateStatus>;
|
|
4439
|
-
uniqueKey?: Maybe<Scalars['ID']['output']>;
|
|
4440
|
-
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4441
4084
|
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
4442
4085
|
version?: Maybe<Scalars['Int']['output']>;
|
|
4443
4086
|
};
|
|
4444
|
-
export declare enum CcpEntitlementTemplateStatus {
|
|
4445
|
-
Deprecated = "DEPRECATED",
|
|
4446
|
-
None = "NONE",
|
|
4447
|
-
Published = "PUBLISHED",
|
|
4448
|
-
Unpublished = "UNPUBLISHED"
|
|
4449
|
-
}
|
|
4450
4087
|
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
4451
4088
|
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
4452
4089
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -5213,9 +4850,7 @@ export declare type CcpQueryApi = {
|
|
|
5213
4850
|
__typename?: 'CcpQueryApi';
|
|
5214
4851
|
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
5215
4852
|
entitlement?: Maybe<CcpEntitlement>;
|
|
5216
|
-
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
5217
4853
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5218
|
-
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5219
4854
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
5220
4855
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
5221
4856
|
offering?: Maybe<CcpOffering>;
|
|
@@ -5237,15 +4872,9 @@ export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
|
5237
4872
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
5238
4873
|
id: Scalars['ID']['input'];
|
|
5239
4874
|
};
|
|
5240
|
-
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
5241
|
-
ids: Array<Scalars['ID']['input']>;
|
|
5242
|
-
};
|
|
5243
4875
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
5244
4876
|
ids: Array<Scalars['ID']['input']>;
|
|
5245
4877
|
};
|
|
5246
|
-
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
5247
|
-
ids: Array<Scalars['ID']['input']>;
|
|
5248
|
-
};
|
|
5249
4878
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
5250
4879
|
ids: Array<Scalars['ID']['input']>;
|
|
5251
4880
|
};
|
|
@@ -5857,13 +5486,6 @@ export declare enum ChannelPlatformMutationStatus {
|
|
|
5857
5486
|
Failure = "FAILURE",
|
|
5858
5487
|
Success = "SUCCESS"
|
|
5859
5488
|
}
|
|
5860
|
-
export declare enum ChannelPlatformParticipantRole {
|
|
5861
|
-
Agent = "AGENT",
|
|
5862
|
-
Customer = "CUSTOMER",
|
|
5863
|
-
CustomBot = "CUSTOM_BOT",
|
|
5864
|
-
Supervisor = "SUPERVISOR",
|
|
5865
|
-
System = "SYSTEM"
|
|
5866
|
-
}
|
|
5867
5489
|
export declare type ChannelPlatformPluginActionRequest = {
|
|
5868
5490
|
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
5869
5491
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5874,10 +5496,6 @@ export declare type ChannelPlatformPluginActionResponse = {
|
|
|
5874
5496
|
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
5875
5497
|
response?: Maybe<Scalars['JSON']['output']>;
|
|
5876
5498
|
};
|
|
5877
|
-
export declare enum ChannelPlatformRole {
|
|
5878
|
-
Agent = "AGENT",
|
|
5879
|
-
Customer = "CUSTOMER"
|
|
5880
|
-
}
|
|
5881
5499
|
export declare type ChannelPlatformSampleQueue = {
|
|
5882
5500
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
5883
5501
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -5890,7 +5508,6 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5890
5508
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5891
5509
|
};
|
|
5892
5510
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5893
|
-
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5894
5511
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5895
5512
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5896
5513
|
};
|
|
@@ -5905,27 +5522,6 @@ export declare type ChannelPlatformSubmitTicketResponse = {
|
|
|
5905
5522
|
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
5906
5523
|
};
|
|
5907
5524
|
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
|
-
};
|
|
5929
5525
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
5930
5526
|
cloudId: Scalars['ID']['input'];
|
|
5931
5527
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -7579,7 +7175,6 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
7579
7175
|
appliedSince: Scalars['DateTime']['output'];
|
|
7580
7176
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
7581
7177
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
7582
|
-
scorecardMaturityLevelHistories?: Maybe<CompassScorecardMaturityLevelHistoryConnection>;
|
|
7583
7178
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
7584
7179
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
7585
7180
|
};
|
|
@@ -7594,11 +7189,6 @@ export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesA
|
|
|
7594
7189
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7595
7190
|
query?: InputMaybe<CompassScorecardCriteriaScoreHistoryQuery>;
|
|
7596
7191
|
};
|
|
7597
|
-
export declare type CompassComponentScorecardRelationshipScorecardMaturityLevelHistoriesArgs = {
|
|
7598
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7599
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7600
|
-
query?: InputMaybe<CompassScorecardMaturityLevelHistoryQuery>;
|
|
7601
|
-
};
|
|
7602
7192
|
export declare type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
7603
7193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7604
7194
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7910,7 +7500,6 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
7910
7500
|
};
|
|
7911
7501
|
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
7912
7502
|
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
7913
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7914
7503
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7915
7504
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7916
7505
|
weight: Scalars['Int']['input'];
|
|
@@ -7943,7 +7532,6 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
7943
7532
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
7944
7533
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7945
7534
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7946
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7947
7535
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7948
7536
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7949
7537
|
weight: Scalars['Int']['input'];
|
|
@@ -7953,7 +7541,6 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7953
7541
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7954
7542
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7955
7543
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7956
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7957
7544
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7958
7545
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7959
7546
|
weight: Scalars['Int']['input'];
|
|
@@ -7961,7 +7548,6 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7961
7548
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
7962
7549
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7963
7550
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7964
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7965
7551
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7966
7552
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
7967
7553
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7971,7 +7557,6 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
7971
7557
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
7972
7558
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7973
7559
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7974
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7975
7560
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
7976
7561
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7977
7562
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7981,7 +7566,6 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
7981
7566
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
7982
7567
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7983
7568
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7984
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7985
7569
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7986
7570
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7987
7571
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -7991,7 +7575,6 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7991
7575
|
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
7992
7576
|
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
7993
7577
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7994
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7995
7578
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7996
7579
|
packageManager: CompassPackageDependencyManagerOptions;
|
|
7997
7580
|
packageName: Scalars['String']['input'];
|
|
@@ -10098,9 +9681,6 @@ export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
|
10098
9681
|
export declare type CompassScorecardApplicationModel = {
|
|
10099
9682
|
applicationType: Scalars['String']['output'];
|
|
10100
9683
|
};
|
|
10101
|
-
export declare type CompassScorecardAppliedToComponentsComponentStateFilter = {
|
|
10102
|
-
in: Array<Scalars['String']['input']>;
|
|
10103
|
-
};
|
|
10104
9684
|
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
10105
9685
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
10106
9686
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -10134,9 +9714,6 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
10134
9714
|
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
10135
9715
|
in: Array<Scalars['String']['input']>;
|
|
10136
9716
|
};
|
|
10137
|
-
export declare type CompassScorecardAppliedToComponentsMaturityLevelFilter = {
|
|
10138
|
-
maturityLevels: Array<Scalars['ID']['input']>;
|
|
10139
|
-
};
|
|
10140
9717
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
10141
9718
|
in: Array<Scalars['ID']['input']>;
|
|
10142
9719
|
};
|
|
@@ -10147,7 +9724,6 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
10147
9724
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
10148
9725
|
};
|
|
10149
9726
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
10150
|
-
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
10151
9727
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
10152
9728
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
10153
9729
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
@@ -10155,7 +9731,6 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
10155
9731
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
10156
9732
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
10157
9733
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
10158
|
-
scorecardMaturityLevels?: InputMaybe<CompassScorecardAppliedToComponentsMaturityLevelFilter>;
|
|
10159
9734
|
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
10160
9735
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
10161
9736
|
};
|
|
@@ -10215,12 +9790,6 @@ export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
|
10215
9790
|
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
10216
9791
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10217
9792
|
};
|
|
10218
|
-
export declare type CompassScorecardCriteriaMaturityGroupInput = {
|
|
10219
|
-
maturityLevel: CompassScorecardCriteriaMaturityLevelInput;
|
|
10220
|
-
};
|
|
10221
|
-
export declare type CompassScorecardCriteriaMaturityLevelInput = {
|
|
10222
|
-
id: Scalars['ID']['input'];
|
|
10223
|
-
};
|
|
10224
9793
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
10225
9794
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
10226
9795
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10573,29 +10142,6 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
10573
10142
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
10574
10143
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
10575
10144
|
};
|
|
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
|
-
};
|
|
10599
10145
|
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
10600
10146
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
10601
10147
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
@@ -10772,11 +10318,6 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
10772
10318
|
since: Scalars['DateTime']['output'];
|
|
10773
10319
|
};
|
|
10774
10320
|
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
|
-
}
|
|
10780
10321
|
export declare enum CompassScorecardScoringStrategyType {
|
|
10781
10322
|
PercentageBased = "PERCENTAGE_BASED",
|
|
10782
10323
|
PointBased = "POINT_BASED",
|
|
@@ -11193,7 +10734,6 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
11193
10734
|
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
11194
10735
|
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
11195
10736
|
id: Scalars['ID']['input'];
|
|
11196
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11197
10737
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11198
10738
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11199
10739
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11204,7 +10744,6 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
11204
10744
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11205
10745
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11206
10746
|
id: Scalars['ID']['input'];
|
|
11207
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11208
10747
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11209
10748
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11210
10749
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11215,7 +10754,6 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
11215
10754
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11216
10755
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11217
10756
|
id: Scalars['ID']['input'];
|
|
11218
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11219
10757
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11220
10758
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11221
10759
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11224,7 +10762,6 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
11224
10762
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11225
10763
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11226
10764
|
id: Scalars['ID']['input'];
|
|
11227
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11228
10765
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11229
10766
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
11230
10767
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -11235,7 +10772,6 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
11235
10772
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11236
10773
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11237
10774
|
id: Scalars['ID']['input'];
|
|
11238
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11239
10775
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
11240
10776
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11241
10777
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11246,7 +10782,6 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
11246
10782
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11247
10783
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11248
10784
|
id: Scalars['ID']['input'];
|
|
11249
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11250
10785
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11251
10786
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11252
10787
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -11257,7 +10792,6 @@ export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
|
11257
10792
|
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
11258
10793
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11259
10794
|
id: Scalars['ID']['input'];
|
|
11260
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11261
10795
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11262
10796
|
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
11263
10797
|
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11535,10 +11069,6 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
11535
11069
|
success: Scalars['Boolean']['output'];
|
|
11536
11070
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
11537
11071
|
};
|
|
11538
|
-
export declare enum ComplianceBoundary {
|
|
11539
|
-
Commercial = "COMMERCIAL",
|
|
11540
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11541
|
-
}
|
|
11542
11072
|
export declare type ComponentApiUpload = {
|
|
11543
11073
|
__typename?: 'ComponentApiUpload';
|
|
11544
11074
|
specUrl: Scalars['String']['output'];
|
|
@@ -11567,6 +11097,21 @@ export declare enum ComponentSyncEventStatus {
|
|
|
11567
11097
|
Success = "SUCCESS",
|
|
11568
11098
|
UserError = "USER_ERROR"
|
|
11569
11099
|
}
|
|
11100
|
+
export declare type ConfigurePolarisRefreshInput = {
|
|
11101
|
+
autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
11102
|
+
clearError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11103
|
+
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11104
|
+
project: Scalars['ID']['input'];
|
|
11105
|
+
setError?: InputMaybe<PolarisRefreshError>;
|
|
11106
|
+
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
11107
|
+
timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
11108
|
+
};
|
|
11109
|
+
export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
11110
|
+
__typename?: 'ConfigurePolarisRefreshPayload';
|
|
11111
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11112
|
+
node?: Maybe<Scalars['Int']['output']>;
|
|
11113
|
+
success: Scalars['Boolean']['output'];
|
|
11114
|
+
};
|
|
11570
11115
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
11571
11116
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
11572
11117
|
appearance: Scalars['String']['output'];
|
|
@@ -21763,7 +21308,6 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
21763
21308
|
};
|
|
21764
21309
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
21765
21310
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21766
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21767
21311
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21768
21312
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21769
21313
|
weight: Scalars['Int']['input'];
|
|
@@ -21771,7 +21315,6 @@ export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
|
21771
21315
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
21772
21316
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21773
21317
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
21774
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21775
21318
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21776
21319
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21777
21320
|
weight: Scalars['Int']['input'];
|
|
@@ -21779,7 +21322,6 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
21779
21322
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
21780
21323
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21781
21324
|
linkType: CompassLinkType;
|
|
21782
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21783
21325
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21784
21326
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21785
21327
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -21792,7 +21334,6 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21792
21334
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
21793
21335
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21794
21336
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
21795
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21796
21337
|
metricDefinitionId: Scalars['ID']['input'];
|
|
21797
21338
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21798
21339
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -21800,7 +21341,6 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21800
21341
|
};
|
|
21801
21342
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
21802
21343
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21803
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21804
21344
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21805
21345
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21806
21346
|
weight: Scalars['Int']['input'];
|
|
@@ -21853,7 +21393,6 @@ export declare type CreateCompassScorecardInput = {
|
|
|
21853
21393
|
name: Scalars['String']['input'];
|
|
21854
21394
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
21855
21395
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
21856
|
-
scoreSystemType?: InputMaybe<CompassScorecardScoreSystemType>;
|
|
21857
21396
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
21858
21397
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
21859
21398
|
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
@@ -22071,7 +21610,6 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
22071
21610
|
export declare type CreateJiraPlaybookInput = {
|
|
22072
21611
|
cloudId: Scalars['ID']['input'];
|
|
22073
21612
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
22074
|
-
jql?: InputMaybe<Scalars['String']['input']>;
|
|
22075
21613
|
name: Scalars['String']['input'];
|
|
22076
21614
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
22077
21615
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -22317,7 +21855,6 @@ export declare type CsmAiAction = {
|
|
|
22317
21855
|
description?: Maybe<Scalars['String']['output']>;
|
|
22318
21856
|
id: Scalars['ID']['output'];
|
|
22319
21857
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
22320
|
-
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22321
21858
|
name?: Maybe<Scalars['String']['output']>;
|
|
22322
21859
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
22323
21860
|
};
|
|
@@ -22410,7 +21947,6 @@ export declare type CsmAiCreateActionInput = {
|
|
|
22410
21947
|
authentication: CsmAiAuthenticationInput;
|
|
22411
21948
|
description: Scalars['String']['input'];
|
|
22412
21949
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
22413
|
-
isEnabled: Scalars['Boolean']['input'];
|
|
22414
21950
|
name: Scalars['String']['input'];
|
|
22415
21951
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
22416
21952
|
};
|
|
@@ -22454,10 +21990,6 @@ export declare type CsmAiHub = {
|
|
|
22454
21990
|
agent?: Maybe<CsmAiAgentResult>;
|
|
22455
21991
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
22456
21992
|
id: Scalars['ID']['output'];
|
|
22457
|
-
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22458
|
-
};
|
|
22459
|
-
export declare type CsmAiHubActionsArgs = {
|
|
22460
|
-
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22461
21993
|
};
|
|
22462
21994
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
22463
21995
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -22489,7 +22021,6 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
22489
22021
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
22490
22022
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
22491
22023
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22492
|
-
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22493
22024
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
22494
22025
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
22495
22026
|
};
|
|
@@ -22531,78 +22062,6 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
22531
22062
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
22532
22063
|
success: Scalars['Boolean']['output'];
|
|
22533
22064
|
};
|
|
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
|
-
};
|
|
22606
22065
|
export declare type CumulativeFlowDiagram = {
|
|
22607
22066
|
__typename?: 'CumulativeFlowDiagram';
|
|
22608
22067
|
chart: CfdChartConnection;
|
|
@@ -33463,6 +32922,8 @@ export declare type GraphStore = {
|
|
|
33463
32922
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
33464
32923
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
33465
32924
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
32925
|
+
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
32926
|
+
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
33466
32927
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
33467
32928
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
33468
32929
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -33478,6 +32939,8 @@ export declare type GraphStore = {
|
|
|
33478
32939
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
33479
32940
|
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
33480
32941
|
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
32942
|
+
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
32943
|
+
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
33481
32944
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
33482
32945
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
33483
32946
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -33506,6 +32969,8 @@ export declare type GraphStore = {
|
|
|
33506
32969
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
33507
32970
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
33508
32971
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32972
|
+
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32973
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
33509
32974
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
33510
32975
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
33511
32976
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -33769,8 +33234,6 @@ export declare type GraphStore = {
|
|
|
33769
33234
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
33770
33235
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
33771
33236
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
33772
|
-
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
33773
|
-
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
33774
33237
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
33775
33238
|
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
33776
33239
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
@@ -34299,6 +33762,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
34299
33762
|
id: Scalars['ID']['input'];
|
|
34300
33763
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
34301
33764
|
};
|
|
33765
|
+
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
33766
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33767
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33768
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33769
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33770
|
+
id: Scalars['ID']['input'];
|
|
33771
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33772
|
+
};
|
|
33773
|
+
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
33774
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33775
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33776
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33777
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33778
|
+
id: Scalars['ID']['input'];
|
|
33779
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33780
|
+
};
|
|
34302
33781
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
34303
33782
|
container_ids: Array<Scalars['ID']['input']>;
|
|
34304
33783
|
enabled_sources?: InputMaybe<Array<InputMaybe<GraphStoreAtlasHomeSourcesEnum>>>;
|
|
@@ -34398,6 +33877,22 @@ export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
|
34398
33877
|
id: Scalars['ID']['input'];
|
|
34399
33878
|
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
34400
33879
|
};
|
|
33880
|
+
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
33881
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33882
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33883
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33884
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33885
|
+
id: Scalars['ID']['input'];
|
|
33886
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33887
|
+
};
|
|
33888
|
+
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
33889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33890
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33891
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33892
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33893
|
+
id: Scalars['ID']['input'];
|
|
33894
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33895
|
+
};
|
|
34401
33896
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
34402
33897
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34403
33898
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34582,6 +34077,20 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
34582
34077
|
id: Scalars['ID']['input'];
|
|
34583
34078
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
34584
34079
|
};
|
|
34080
|
+
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
34081
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34082
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34084
|
+
id: Scalars['ID']['input'];
|
|
34085
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
34086
|
+
};
|
|
34087
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
34088
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34089
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34090
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34091
|
+
id: Scalars['ID']['input'];
|
|
34092
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
34093
|
+
};
|
|
34585
34094
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
34586
34095
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34587
34096
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36289,20 +35798,6 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
36289
35798
|
id: Scalars['ID']['input'];
|
|
36290
35799
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
36291
35800
|
};
|
|
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
|
-
};
|
|
36306
35801
|
export declare type GraphStorePrInProviderRepoArgs = {
|
|
36307
35802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36308
35803
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39210,6 +38705,107 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
39210
38705
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
39211
38706
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39212
38707
|
};
|
|
38708
|
+
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
38709
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38710
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38711
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38712
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38713
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38714
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38715
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38716
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
38717
|
+
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38718
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
38719
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38720
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
38721
|
+
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38722
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
38723
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38724
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
38725
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38726
|
+
};
|
|
38727
|
+
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
38728
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38729
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38730
|
+
};
|
|
38731
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
38732
|
+
Day = "DAY",
|
|
38733
|
+
Month = "MONTH",
|
|
38734
|
+
NotSet = "NOT_SET",
|
|
38735
|
+
Quarter = "QUARTER"
|
|
38736
|
+
}
|
|
38737
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
38738
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38739
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38740
|
+
};
|
|
38741
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
38742
|
+
AtRisk = "AT_RISK",
|
|
38743
|
+
Cancelled = "CANCELLED",
|
|
38744
|
+
Done = "DONE",
|
|
38745
|
+
NotSet = "NOT_SET",
|
|
38746
|
+
OffTrack = "OFF_TRACK",
|
|
38747
|
+
OnTrack = "ON_TRACK",
|
|
38748
|
+
Paused = "PAUSED",
|
|
38749
|
+
Pending = "PENDING"
|
|
38750
|
+
}
|
|
38751
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
38752
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38753
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38754
|
+
};
|
|
38755
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
38756
|
+
Day = "DAY",
|
|
38757
|
+
Month = "MONTH",
|
|
38758
|
+
NotSet = "NOT_SET",
|
|
38759
|
+
Null = "NULL",
|
|
38760
|
+
Quarter = "QUARTER"
|
|
38761
|
+
}
|
|
38762
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
38763
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38764
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38765
|
+
};
|
|
38766
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
38767
|
+
AtRisk = "AT_RISK",
|
|
38768
|
+
Cancelled = "CANCELLED",
|
|
38769
|
+
Done = "DONE",
|
|
38770
|
+
NotSet = "NOT_SET",
|
|
38771
|
+
Null = "NULL",
|
|
38772
|
+
OffTrack = "OFF_TRACK",
|
|
38773
|
+
OnTrack = "ON_TRACK",
|
|
38774
|
+
Paused = "PAUSED",
|
|
38775
|
+
Pending = "PENDING"
|
|
38776
|
+
}
|
|
38777
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
38778
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38779
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38780
|
+
};
|
|
38781
|
+
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
38782
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38783
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38784
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38785
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38786
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38787
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38788
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38789
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38790
|
+
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
38791
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38792
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38793
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38794
|
+
relationship_oldScore?: 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 GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
38801
|
+
NotSet = "NOT_SET",
|
|
38802
|
+
System = "SYSTEM",
|
|
38803
|
+
User = "USER"
|
|
38804
|
+
}
|
|
38805
|
+
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
38806
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38807
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38808
|
+
};
|
|
39213
38809
|
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39214
38810
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39215
38811
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
@@ -39279,6 +38875,103 @@ export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
|
39279
38875
|
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
39280
38876
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39281
38877
|
};
|
|
38878
|
+
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
38879
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38880
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38881
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38882
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38883
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38884
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38885
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38886
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
38887
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
38888
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38889
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
38890
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
38891
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38892
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
38893
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38894
|
+
};
|
|
38895
|
+
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
38896
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38897
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38898
|
+
};
|
|
38899
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
38900
|
+
Day = "DAY",
|
|
38901
|
+
Month = "MONTH",
|
|
38902
|
+
NotSet = "NOT_SET",
|
|
38903
|
+
Quarter = "QUARTER"
|
|
38904
|
+
}
|
|
38905
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
38906
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38907
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38908
|
+
};
|
|
38909
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
38910
|
+
AtRisk = "AT_RISK",
|
|
38911
|
+
Cancelled = "CANCELLED",
|
|
38912
|
+
Done = "DONE",
|
|
38913
|
+
NotSet = "NOT_SET",
|
|
38914
|
+
OffTrack = "OFF_TRACK",
|
|
38915
|
+
OnTrack = "ON_TRACK",
|
|
38916
|
+
Paused = "PAUSED",
|
|
38917
|
+
Pending = "PENDING"
|
|
38918
|
+
}
|
|
38919
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
38920
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38921
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38922
|
+
};
|
|
38923
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
38924
|
+
Day = "DAY",
|
|
38925
|
+
Month = "MONTH",
|
|
38926
|
+
NotSet = "NOT_SET",
|
|
38927
|
+
Null = "NULL",
|
|
38928
|
+
Quarter = "QUARTER"
|
|
38929
|
+
}
|
|
38930
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
38931
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38932
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38933
|
+
};
|
|
38934
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
38935
|
+
AtRisk = "AT_RISK",
|
|
38936
|
+
Cancelled = "CANCELLED",
|
|
38937
|
+
Done = "DONE",
|
|
38938
|
+
NotSet = "NOT_SET",
|
|
38939
|
+
Null = "NULL",
|
|
38940
|
+
OffTrack = "OFF_TRACK",
|
|
38941
|
+
OnTrack = "ON_TRACK",
|
|
38942
|
+
Paused = "PAUSED",
|
|
38943
|
+
Pending = "PENDING"
|
|
38944
|
+
}
|
|
38945
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
38946
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38947
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38948
|
+
};
|
|
38949
|
+
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
38950
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38951
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38952
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38953
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38954
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38955
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38956
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38957
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38958
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38959
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38960
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38961
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38962
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38963
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38964
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38965
|
+
};
|
|
38966
|
+
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
38967
|
+
NotSet = "NOT_SET",
|
|
38968
|
+
System = "SYSTEM",
|
|
38969
|
+
User = "USER"
|
|
38970
|
+
}
|
|
38971
|
+
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
38972
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38973
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38974
|
+
};
|
|
39282
38975
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
39283
38976
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39284
38977
|
};
|
|
@@ -40051,6 +39744,9 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
40051
39744
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
40052
39745
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40053
39746
|
};
|
|
39747
|
+
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39748
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39749
|
+
};
|
|
40054
39750
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
40055
39751
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40056
39752
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40572,7 +40268,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40572
40268
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40573
40269
|
id: Scalars['ID']['output'];
|
|
40574
40270
|
};
|
|
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 |
|
|
40271
|
+
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 | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40576
40272
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40577
40273
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40578
40274
|
value: Scalars['Int']['output'];
|
|
@@ -40607,7 +40303,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40607
40303
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40608
40304
|
id: Scalars['ID']['output'];
|
|
40609
40305
|
};
|
|
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 |
|
|
40306
|
+
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 | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40611
40307
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40612
40308
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40613
40309
|
value: Scalars['String']['output'];
|
|
@@ -40617,19 +40313,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40617
40313
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40618
40314
|
id: Scalars['ID']['output'];
|
|
40619
40315
|
};
|
|
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 |
|
|
40316
|
+
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 | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40621
40317
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40622
40318
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40623
40319
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40624
40320
|
id: Scalars['ID']['output'];
|
|
40625
40321
|
};
|
|
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 |
|
|
40322
|
+
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 | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40627
40323
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40628
40324
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40629
40325
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40630
40326
|
id: Scalars['ID']['output'];
|
|
40631
40327
|
};
|
|
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 |
|
|
40328
|
+
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 | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40633
40329
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40634
40330
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40635
40331
|
value: Scalars['Boolean']['output'];
|
|
@@ -40728,7 +40424,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40728
40424
|
V2 = "V2",
|
|
40729
40425
|
V3 = "V3"
|
|
40730
40426
|
}
|
|
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 |
|
|
40427
|
+
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 | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40732
40428
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40733
40429
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40734
40430
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41926,7 +41622,6 @@ export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
41926
41622
|
};
|
|
41927
41623
|
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
41928
41624
|
Declined = "DECLINED",
|
|
41929
|
-
Draft = "DRAFT",
|
|
41930
41625
|
Merged = "MERGED",
|
|
41931
41626
|
NotSet = "NOT_SET",
|
|
41932
41627
|
Open = "OPEN",
|
|
@@ -42475,7 +42170,6 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUn
|
|
|
42475
42170
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
42476
42171
|
Archive = "ARCHIVE",
|
|
42477
42172
|
Audio = "AUDIO",
|
|
42478
|
-
Blogpost = "BLOGPOST",
|
|
42479
42173
|
Code = "CODE",
|
|
42480
42174
|
Document = "DOCUMENT",
|
|
42481
42175
|
Folder = "FOLDER",
|
|
@@ -42483,13 +42177,11 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
42483
42177
|
Image = "IMAGE",
|
|
42484
42178
|
NotSet = "NOT_SET",
|
|
42485
42179
|
Other = "OTHER",
|
|
42486
|
-
Page = "PAGE",
|
|
42487
42180
|
Pdf = "PDF",
|
|
42488
42181
|
Presentation = "PRESENTATION",
|
|
42489
42182
|
Shortcut = "SHORTCUT",
|
|
42490
42183
|
Spreadsheet = "SPREADSHEET",
|
|
42491
|
-
Video = "VIDEO"
|
|
42492
|
-
WebPage = "WEB_PAGE"
|
|
42184
|
+
Video = "VIDEO"
|
|
42493
42185
|
}
|
|
42494
42186
|
export declare type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
42495
42187
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
@@ -42597,7 +42289,6 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
42597
42289
|
};
|
|
42598
42290
|
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
42599
42291
|
Declined = "DECLINED",
|
|
42600
|
-
Draft = "DRAFT",
|
|
42601
42292
|
Merged = "MERGED",
|
|
42602
42293
|
NotSet = "NOT_SET",
|
|
42603
42294
|
Open = "OPEN",
|
|
@@ -42941,7 +42632,6 @@ export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
42941
42632
|
};
|
|
42942
42633
|
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
42943
42634
|
Declined = "DECLINED",
|
|
42944
|
-
Draft = "DRAFT",
|
|
42945
42635
|
Merged = "MERGED",
|
|
42946
42636
|
NotSet = "NOT_SET",
|
|
42947
42637
|
Open = "OPEN",
|
|
@@ -43767,7 +43457,6 @@ export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
43767
43457
|
};
|
|
43768
43458
|
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
43769
43459
|
Declined = "DECLINED",
|
|
43770
|
-
Draft = "DRAFT",
|
|
43771
43460
|
Merged = "MERGED",
|
|
43772
43461
|
NotSet = "NOT_SET",
|
|
43773
43462
|
Open = "OPEN",
|
|
@@ -45215,9 +44904,6 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
45215
44904
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
45216
44905
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45217
44906
|
};
|
|
45218
|
-
export declare type GraphStorePrHasCommentSortInput = {
|
|
45219
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45220
|
-
};
|
|
45221
44907
|
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
45222
44908
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
45223
44909
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -45467,7 +45153,6 @@ export declare type GraphStoreProjectAssociatedPrFilterInput = {
|
|
|
45467
45153
|
};
|
|
45468
45154
|
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
45469
45155
|
Declined = "DECLINED",
|
|
45470
|
-
Draft = "DRAFT",
|
|
45471
45156
|
Merged = "MERGED",
|
|
45472
45157
|
NotSet = "NOT_SET",
|
|
45473
45158
|
Open = "OPEN",
|
|
@@ -46004,6 +45689,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
46004
45689
|
};
|
|
46005
45690
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
46006
45691
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
45692
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45693
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
45694
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
45695
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45696
|
+
pageInfo: PageInfo;
|
|
45697
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45698
|
+
};
|
|
45699
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
45700
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
45701
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45702
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45703
|
+
id: Scalars['ID']['output'];
|
|
45704
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45705
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
45706
|
+
};
|
|
45707
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45708
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
45709
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
45710
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45711
|
+
pageInfo: PageInfo;
|
|
45712
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45713
|
+
};
|
|
45714
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
45715
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
45716
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45717
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45718
|
+
id: Scalars['ID']['output'];
|
|
45719
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45720
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
45721
|
+
};
|
|
45722
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
45723
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
46007
45724
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
46008
45725
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
46009
45726
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -46172,6 +45889,38 @@ export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge
|
|
|
46172
45889
|
};
|
|
46173
45890
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
46174
45891
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
45892
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45893
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
45894
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
45895
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45896
|
+
pageInfo: PageInfo;
|
|
45897
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45898
|
+
};
|
|
45899
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
45900
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
45901
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45902
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45903
|
+
id: Scalars['ID']['output'];
|
|
45904
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45905
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
45906
|
+
};
|
|
45907
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45908
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
45909
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
45910
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45911
|
+
pageInfo: PageInfo;
|
|
45912
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45913
|
+
};
|
|
45914
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
45915
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
45916
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45917
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45918
|
+
id: Scalars['ID']['output'];
|
|
45919
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45920
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
45921
|
+
};
|
|
45922
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
45923
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
46175
45924
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
46176
45925
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
46177
45926
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -46480,6 +46229,34 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
46480
46229
|
};
|
|
46481
46230
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
46482
46231
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
46232
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
46233
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
46234
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
46235
|
+
pageInfo: PageInfo;
|
|
46236
|
+
};
|
|
46237
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
46238
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
46239
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46240
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46241
|
+
id: Scalars['ID']['output'];
|
|
46242
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46243
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
46244
|
+
};
|
|
46245
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46246
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
46247
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
46248
|
+
pageInfo: PageInfo;
|
|
46249
|
+
};
|
|
46250
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
46251
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
46252
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46253
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46254
|
+
id: Scalars['ID']['output'];
|
|
46255
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46256
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
46257
|
+
};
|
|
46258
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
46259
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
46483
46260
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
46484
46261
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
46485
46262
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -48962,34 +48739,6 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
48962
48739
|
};
|
|
48963
48740
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
48964
48741
|
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;
|
|
48993
48742
|
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
48994
48743
|
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
48995
48744
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
@@ -53822,7 +53571,6 @@ export declare type GraphStoreSprintAssociatedPrFilterInput = {
|
|
|
53822
53571
|
};
|
|
53823
53572
|
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
53824
53573
|
Declined = "DECLINED",
|
|
53825
|
-
Draft = "DRAFT",
|
|
53826
53574
|
Merged = "MERGED",
|
|
53827
53575
|
NotSet = "NOT_SET",
|
|
53828
53576
|
Open = "OPEN",
|
|
@@ -54558,19 +54306,16 @@ export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendatio
|
|
|
54558
54306
|
__typename?: 'GrowthRecJiraTemplateRecommendation';
|
|
54559
54307
|
entityId: Scalars['ID']['output'];
|
|
54560
54308
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54561
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54562
54309
|
};
|
|
54563
54310
|
export declare type GrowthRecNonHydratedRecommendation = GrowthRecRecommendation & {
|
|
54564
54311
|
__typename?: 'GrowthRecNonHydratedRecommendation';
|
|
54565
54312
|
entityId: Scalars['ID']['output'];
|
|
54566
54313
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54567
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54568
54314
|
};
|
|
54569
54315
|
export declare type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
54570
54316
|
__typename?: 'GrowthRecProductRecommendation';
|
|
54571
54317
|
entityId: Scalars['ID']['output'];
|
|
54572
54318
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54573
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54574
54319
|
};
|
|
54575
54320
|
export declare type GrowthRecQuery = {
|
|
54576
54321
|
__typename?: 'GrowthRecQuery';
|
|
@@ -54584,7 +54329,6 @@ export declare type GrowthRecQueryRecommendationsArgs = {
|
|
|
54584
54329
|
export declare type GrowthRecRecommendation = {
|
|
54585
54330
|
entityId: Scalars['ID']['output'];
|
|
54586
54331
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54587
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54588
54332
|
};
|
|
54589
54333
|
export declare type GrowthRecRecommendations = {
|
|
54590
54334
|
__typename?: 'GrowthRecRecommendations';
|
|
@@ -59048,7 +58792,6 @@ export declare type JiraBoardView = {
|
|
|
59048
58792
|
id: Scalars['ID']['output'];
|
|
59049
58793
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
59050
58794
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
59051
|
-
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
59052
58795
|
};
|
|
59053
58796
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
59054
58797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59072,10 +58815,6 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
59072
58815
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
59073
58816
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
59074
58817
|
};
|
|
59075
|
-
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
59076
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
59077
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59078
|
-
};
|
|
59079
58818
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
59080
58819
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
59081
58820
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59154,45 +58893,19 @@ export declare type JiraBoardViewSettings = {
|
|
|
59154
58893
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
59155
58894
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
59156
58895
|
};
|
|
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
|
-
};
|
|
59167
58896
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
59168
58897
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
59169
58898
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
59170
58899
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
59171
58900
|
id: Scalars['ID']['output'];
|
|
59172
|
-
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
59173
58901
|
name?: Maybe<Scalars['String']['output']>;
|
|
59174
58902
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
59175
58903
|
};
|
|
59176
|
-
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
59177
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
59178
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59179
|
-
};
|
|
59180
58904
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
59181
58905
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
59182
58906
|
name: Scalars['String']['input'];
|
|
59183
58907
|
statusIds: Array<Scalars['ID']['input']>;
|
|
59184
58908
|
};
|
|
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
|
-
};
|
|
59196
58909
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
59197
58910
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
59198
58911
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60857,10 +60570,6 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
60857
60570
|
journeyVersion: Scalars['Long']['input'];
|
|
60858
60571
|
name: Scalars['String']['input'];
|
|
60859
60572
|
};
|
|
60860
|
-
export declare type JiraCreateFieldSchemeInput = {
|
|
60861
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60862
|
-
name: Scalars['String']['input'];
|
|
60863
|
-
};
|
|
60864
60573
|
export declare type JiraCreateFormattingRuleInput = {
|
|
60865
60574
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
60866
60575
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -61351,15 +61060,6 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
61351
61060
|
errors?: Maybe<Array<MutationError>>;
|
|
61352
61061
|
success: Scalars['Boolean']['output'];
|
|
61353
61062
|
};
|
|
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
|
-
};
|
|
61363
61063
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
61364
61064
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
61365
61065
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -61443,9 +61143,6 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
61443
61143
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61444
61144
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61445
61145
|
};
|
|
61446
|
-
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61447
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61448
|
-
};
|
|
61449
61146
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
61450
61147
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61451
61148
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61871,11 +61568,6 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
61871
61568
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
61872
61569
|
success: Scalars['Boolean']['output'];
|
|
61873
61570
|
};
|
|
61874
|
-
export declare type JiraEditFieldSchemeInput = {
|
|
61875
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
61876
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
61877
|
-
schemeId: Scalars['ID']['input'];
|
|
61878
|
-
};
|
|
61879
61571
|
export declare enum JiraEmailMimeType {
|
|
61880
61572
|
Html = "HTML",
|
|
61881
61573
|
Text = "TEXT"
|
|
@@ -62250,35 +61942,6 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
62250
61942
|
Allow = "ALLOW",
|
|
62251
61943
|
Exclude = "EXCLUDE"
|
|
62252
61944
|
}
|
|
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
|
-
};
|
|
62282
61945
|
export declare type JiraFieldSearcherTemplate = {
|
|
62283
61946
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
62284
61947
|
displayName: Scalars['String']['output'];
|
|
@@ -62325,14 +61988,10 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
62325
61988
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62326
61989
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62327
61990
|
};
|
|
62328
|
-
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62329
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62330
|
-
};
|
|
62331
61991
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
62332
61992
|
export declare type JiraFieldSetsMutationInput = {
|
|
62333
61993
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
62334
61994
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62335
|
-
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
62336
61995
|
};
|
|
62337
61996
|
export declare type JiraFieldSetsViewMetadata = {
|
|
62338
61997
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -62347,9 +62006,6 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
62347
62006
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62348
62007
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62349
62008
|
};
|
|
62350
|
-
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62351
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62352
|
-
};
|
|
62353
62009
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
62354
62010
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
62355
62011
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63164,7 +62820,7 @@ export declare type JiraGroup = Node & {
|
|
|
63164
62820
|
name: Scalars['String']['output'];
|
|
63165
62821
|
};
|
|
63166
62822
|
export declare type JiraGroupByDropdownFilter = {
|
|
63167
|
-
projectId?: InputMaybe<Scalars['
|
|
62823
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
63168
62824
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
63169
62825
|
};
|
|
63170
62826
|
export declare type JiraGroupConnection = {
|
|
@@ -63222,9 +62878,6 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
63222
62878
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63223
62879
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63224
62880
|
};
|
|
63225
|
-
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
63226
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63227
|
-
};
|
|
63228
62881
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
63229
62882
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
63230
62883
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -64794,9 +64447,6 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
64794
64447
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64795
64448
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64796
64449
|
};
|
|
64797
|
-
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64798
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64799
|
-
};
|
|
64800
64450
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
64801
64451
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
64802
64452
|
};
|
|
@@ -64884,9 +64534,6 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64884
64534
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64885
64535
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64886
64536
|
};
|
|
64887
|
-
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64888
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64889
|
-
};
|
|
64890
64537
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64891
64538
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64892
64539
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -66136,9 +65783,6 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
66136
65783
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66137
65784
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
66138
65785
|
};
|
|
66139
|
-
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
66140
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
66141
|
-
};
|
|
66142
65786
|
export declare type JiraListViewIssuesArgs = {
|
|
66143
65787
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66144
65788
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68421,7 +68065,6 @@ export declare type JiraPlaybook = Node & {
|
|
|
68421
68065
|
__typename?: 'JiraPlaybook';
|
|
68422
68066
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
68423
68067
|
id: Scalars['ID']['output'];
|
|
68424
|
-
jql?: Maybe<Scalars['String']['output']>;
|
|
68425
68068
|
name?: Maybe<Scalars['String']['output']>;
|
|
68426
68069
|
owner?: Maybe<User>;
|
|
68427
68070
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -68442,13 +68085,6 @@ export declare type JiraPlaybookEdge = {
|
|
|
68442
68085
|
cursor: Scalars['String']['output'];
|
|
68443
68086
|
node?: Maybe<JiraPlaybook>;
|
|
68444
68087
|
};
|
|
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
|
-
};
|
|
68452
68088
|
export declare type JiraPlaybookFilter = {
|
|
68453
68089
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68454
68090
|
};
|
|
@@ -68579,46 +68215,6 @@ export declare enum JiraPlaybookStepType {
|
|
|
68579
68215
|
AutomationRule = "AUTOMATION_RULE",
|
|
68580
68216
|
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
68581
68217
|
}
|
|
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
|
-
};
|
|
68622
68218
|
export declare enum JiraPlaybooksSortBy {
|
|
68623
68219
|
Name = "NAME"
|
|
68624
68220
|
}
|
|
@@ -69496,7 +69092,6 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
69496
69092
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
69497
69093
|
mostRecent?: Maybe<JiraProject>;
|
|
69498
69094
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69499
|
-
otherItems?: Maybe<JiraProjectConnection>;
|
|
69500
69095
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
69501
69096
|
recents?: Maybe<JiraProjectConnection>;
|
|
69502
69097
|
};
|
|
@@ -69514,10 +69109,6 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
69514
69109
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69515
69110
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69516
69111
|
};
|
|
69517
|
-
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69518
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69519
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69520
|
-
};
|
|
69521
69112
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
69522
69113
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69523
69114
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69696,7 +69287,6 @@ export declare type JiraQuery = {
|
|
|
69696
69287
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
69697
69288
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
69698
69289
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
69699
|
-
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
69700
69290
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69701
69291
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
69702
69292
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -70423,9 +70013,6 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
70423
70013
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
70424
70014
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
70425
70015
|
};
|
|
70426
|
-
export declare type JiraQueryLabelsInBoardArgs = {
|
|
70427
|
-
boardId: Scalars['ID']['input'];
|
|
70428
|
-
};
|
|
70429
70016
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
70430
70017
|
cloudId: Scalars['ID']['input'];
|
|
70431
70018
|
};
|
|
@@ -71632,10 +71219,6 @@ export declare type JiraScmRepository = {
|
|
|
71632
71219
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
71633
71220
|
name?: Maybe<Scalars['String']['output']>;
|
|
71634
71221
|
};
|
|
71635
|
-
export declare type JiraScopedResetFieldsetsInput = {
|
|
71636
|
-
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71637
|
-
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71638
|
-
};
|
|
71639
71222
|
export declare type JiraScreen = Node & {
|
|
71640
71223
|
__typename?: 'JiraScreen';
|
|
71641
71224
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -73585,9 +73168,6 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
73585
73168
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73586
73169
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73587
73170
|
};
|
|
73588
|
-
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73589
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73590
|
-
};
|
|
73591
73171
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
73592
73172
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73593
73173
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -76265,63 +75845,6 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
76265
75845
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
76266
75846
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
76267
75847
|
};
|
|
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
|
-
};
|
|
76325
75848
|
export declare type JsmChatAppendixActionItem = {
|
|
76326
75849
|
__typename?: 'JsmChatAppendixActionItem';
|
|
76327
75850
|
id: Scalars['String']['output'];
|
|
@@ -77925,14 +77448,10 @@ export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
|
77925
77448
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77926
77449
|
id: Scalars['ID']['output'];
|
|
77927
77450
|
name: Scalars['String']['output'];
|
|
77928
|
-
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77929
77451
|
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77930
77452
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77931
77453
|
updatedAt: Scalars['String']['output'];
|
|
77932
77454
|
};
|
|
77933
|
-
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77934
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77935
|
-
};
|
|
77936
77455
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
77937
77456
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
77938
77457
|
Area = "AREA",
|
|
@@ -78314,12 +77833,6 @@ export declare type LoomComment = Node & {
|
|
|
78314
77833
|
video?: Maybe<LoomVideo>;
|
|
78315
77834
|
videoId: Scalars['ID']['output'];
|
|
78316
77835
|
};
|
|
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
|
-
};
|
|
78323
77836
|
export declare type LoomMeeting = Node & {
|
|
78324
77837
|
__typename?: 'LoomMeeting';
|
|
78325
77838
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -78923,7 +78436,6 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
78923
78436
|
};
|
|
78924
78437
|
export declare type MarketplaceAppVersionFilter = {
|
|
78925
78438
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78926
|
-
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
78927
78439
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
78928
78440
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
78929
78441
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -79167,10 +78679,6 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
|
79167
78679
|
userKey?: InputMaybe<Scalars['ID']['input']>;
|
|
79168
78680
|
versionNumber: Scalars['ID']['input'];
|
|
79169
78681
|
};
|
|
79170
|
-
export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
79171
|
-
Commercial = "COMMERCIAL",
|
|
79172
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
79173
|
-
}
|
|
79174
78682
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
79175
78683
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
79176
78684
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -79654,7 +79162,6 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
79654
79162
|
};
|
|
79655
79163
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
79656
79164
|
appKey: Scalars['ID']['input'];
|
|
79657
|
-
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
79658
79165
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
79659
79166
|
};
|
|
79660
79167
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -80337,10 +79844,6 @@ export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
|
80337
79844
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
80338
79845
|
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
80339
79846
|
};
|
|
80340
|
-
export declare type MarketplaceStoreApprovalDetails = {
|
|
80341
|
-
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
80342
|
-
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
80343
|
-
};
|
|
80344
79847
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
80345
79848
|
Cloud = "CLOUD",
|
|
80346
79849
|
Datacenter = "DATACENTER",
|
|
@@ -80516,7 +80019,6 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
80516
80019
|
}
|
|
80517
80020
|
export declare type MarketplaceStoreEdition = {
|
|
80518
80021
|
__typename?: 'MarketplaceStoreEdition';
|
|
80519
|
-
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
80520
80022
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
80521
80023
|
id: Scalars['ID']['output'];
|
|
80522
80024
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -83856,23 +83358,6 @@ export declare type Mutation = {
|
|
|
83856
83358
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
83857
83359
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
83858
83360
|
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>;
|
|
83876
83361
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
83877
83362
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
83878
83363
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -83891,6 +83376,7 @@ export declare type Mutation = {
|
|
|
83891
83376
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
83892
83377
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
83893
83378
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
83379
|
+
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
83894
83380
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
83895
83381
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
83896
83382
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -84145,7 +83631,6 @@ export declare type Mutation = {
|
|
|
84145
83631
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
84146
83632
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
84147
83633
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
84148
|
-
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
84149
83634
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
84150
83635
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
84151
83636
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -84232,13 +83717,10 @@ export declare type Mutation = {
|
|
|
84232
83717
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
84233
83718
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
84234
83719
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
84235
|
-
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
84236
83720
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
84237
83721
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
84238
|
-
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
84239
83722
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
84240
83723
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
84241
|
-
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
84242
83724
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
84243
83725
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
84244
83726
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
@@ -84308,7 +83790,6 @@ export declare type Mutation = {
|
|
|
84308
83790
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
84309
83791
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
84310
83792
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
84311
|
-
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
84312
83793
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
84313
83794
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84314
83795
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
@@ -84387,7 +83868,6 @@ export declare type Mutation = {
|
|
|
84387
83868
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
84388
83869
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84389
83870
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
84390
|
-
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
84391
83871
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84392
83872
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84393
83873
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -84397,8 +83877,10 @@ export declare type Mutation = {
|
|
|
84397
83877
|
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84398
83878
|
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84399
83879
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
83880
|
+
spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
|
|
84400
83881
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84401
83882
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
83883
|
+
spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
|
|
84402
83884
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
84403
83885
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
84404
83886
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -84592,57 +84074,6 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
84592
84074
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
84593
84075
|
input: ReattachInlineCommentInput;
|
|
84594
84076
|
};
|
|
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
|
-
};
|
|
84646
84077
|
export declare type MutationBoardCardMoveArgs = {
|
|
84647
84078
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
84648
84079
|
};
|
|
@@ -84678,10 +84109,11 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
84678
84109
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
84679
84110
|
};
|
|
84680
84111
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
84681
|
-
|
|
84112
|
+
meetingId?: InputMaybe<Scalars['String']['input']>;
|
|
84682
84113
|
};
|
|
84683
84114
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
84684
84115
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
84116
|
+
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
84685
84117
|
};
|
|
84686
84118
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
84687
84119
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84702,6 +84134,9 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
84702
84134
|
export declare type MutationCompleteSprintArgs = {
|
|
84703
84135
|
input?: InputMaybe<CompleteSprintInput>;
|
|
84704
84136
|
};
|
|
84137
|
+
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
84138
|
+
input: ConfigurePolarisRefreshInput;
|
|
84139
|
+
};
|
|
84705
84140
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
84706
84141
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
84707
84142
|
};
|
|
@@ -85543,11 +84978,6 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
85543
84978
|
helpCenterAri: Scalars['ID']['input'];
|
|
85544
84979
|
input: CsmAiUpdateHandoffConfigInput;
|
|
85545
84980
|
};
|
|
85546
|
-
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85547
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
85548
|
-
input: CsmAiWidgetUpdateInput;
|
|
85549
|
-
widgetId: Scalars['ID']['input'];
|
|
85550
|
-
};
|
|
85551
84981
|
export declare type MutationCustomerServiceArgs = {
|
|
85552
84982
|
cloudId: Scalars['ID']['input'];
|
|
85553
84983
|
};
|
|
@@ -85745,7 +85175,6 @@ export declare type MutationEnablePublicLinkForPageArgs = {
|
|
|
85745
85175
|
pageId: Scalars['ID']['input'];
|
|
85746
85176
|
};
|
|
85747
85177
|
export declare type MutationFavouritePageArgs = {
|
|
85748
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85749
85178
|
favouritePageInput: FavouritePageInput;
|
|
85750
85179
|
};
|
|
85751
85180
|
export declare type MutationFavouriteSpaceArgs = {
|
|
@@ -85800,10 +85229,6 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
85800
85229
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
85801
85230
|
input: JiraCreateCustomBackgroundInput;
|
|
85802
85231
|
};
|
|
85803
|
-
export declare type MutationJira_CreateFieldSchemeArgs = {
|
|
85804
|
-
cloudId: Scalars['ID']['input'];
|
|
85805
|
-
input: JiraCreateFieldSchemeInput;
|
|
85806
|
-
};
|
|
85807
85232
|
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
85808
85233
|
cloudId: Scalars['ID']['input'];
|
|
85809
85234
|
input: JiraCreateGlobalCustomFieldInput;
|
|
@@ -85811,20 +85236,12 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
85811
85236
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
85812
85237
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
85813
85238
|
};
|
|
85814
|
-
export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
85815
|
-
cloudId: Scalars['ID']['input'];
|
|
85816
|
-
input: JiraDeleteFieldSchemeInput;
|
|
85817
|
-
};
|
|
85818
85239
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
85819
85240
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
85820
85241
|
};
|
|
85821
85242
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
85822
85243
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
85823
85244
|
};
|
|
85824
|
-
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
85825
|
-
cloudId: Scalars['ID']['input'];
|
|
85826
|
-
input: JiraEditFieldSchemeInput;
|
|
85827
|
-
};
|
|
85828
85245
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
85829
85246
|
input: JiraPublishBoardViewConfigInput;
|
|
85830
85247
|
};
|
|
@@ -86011,10 +85428,6 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
86011
85428
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
86012
85429
|
id: Scalars['String']['input'];
|
|
86013
85430
|
};
|
|
86014
|
-
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
86015
|
-
cloudId: Scalars['ID']['input'];
|
|
86016
|
-
input: Array<RadarClearFocusAreaProposalInput>;
|
|
86017
|
-
};
|
|
86018
85431
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
86019
85432
|
cloudId: Scalars['ID']['input'];
|
|
86020
85433
|
input: RadarCustomFieldInput;
|
|
@@ -86265,9 +85678,6 @@ export declare type MutationSpf_CreateDependencyArgs = {
|
|
|
86265
85678
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
86266
85679
|
input: SpfDeleteAskInput;
|
|
86267
85680
|
};
|
|
86268
|
-
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
86269
|
-
input: SpfDeleteAskLinkInput;
|
|
86270
|
-
};
|
|
86271
85681
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
86272
85682
|
input: SpfDeleteDependencyInput;
|
|
86273
85683
|
};
|
|
@@ -86295,12 +85705,18 @@ export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
|
86295
85705
|
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
86296
85706
|
input: SpfUpdateAskReceivingTeamInput;
|
|
86297
85707
|
};
|
|
85708
|
+
export declare type MutationSpf_UpdateAskStatusArgs = {
|
|
85709
|
+
input: SpfUpdateAskStatusInput;
|
|
85710
|
+
};
|
|
86298
85711
|
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
86299
85712
|
input: SpfUpdateAskSubmitterInput;
|
|
86300
85713
|
};
|
|
86301
85714
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
86302
85715
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
86303
85716
|
};
|
|
85717
|
+
export declare type MutationSpf_UpdateAskTargetDateArgs = {
|
|
85718
|
+
input: SpfUpdateAskTargetDateInput;
|
|
85719
|
+
};
|
|
86304
85720
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
86305
85721
|
input: SpfUpdateCommentDataInput;
|
|
86306
85722
|
};
|
|
@@ -86375,7 +85791,6 @@ export declare type MutationUnassignIssueParentArgs = {
|
|
|
86375
85791
|
input?: InputMaybe<UnassignIssueParentInput>;
|
|
86376
85792
|
};
|
|
86377
85793
|
export declare type MutationUnfavouritePageArgs = {
|
|
86378
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86379
85794
|
favouritePageInput: FavouritePageInput;
|
|
86380
85795
|
};
|
|
86381
85796
|
export declare type MutationUnfavouriteSpaceArgs = {
|
|
@@ -86397,7 +85812,6 @@ export declare type MutationUnwatchBlogsArgs = {
|
|
|
86397
85812
|
watchSpaceInput: WatchSpaceInput;
|
|
86398
85813
|
};
|
|
86399
85814
|
export declare type MutationUnwatchContentArgs = {
|
|
86400
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86401
85815
|
watchContentInput: WatchContentInput;
|
|
86402
85816
|
};
|
|
86403
85817
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
@@ -86610,7 +86024,6 @@ export declare type MutationWatchBlogsArgs = {
|
|
|
86610
86024
|
watchSpaceInput: WatchSpaceInput;
|
|
86611
86025
|
};
|
|
86612
86026
|
export declare type MutationWatchContentArgs = {
|
|
86613
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86614
86027
|
watchContentInput: WatchContentInput;
|
|
86615
86028
|
};
|
|
86616
86029
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
@@ -86943,7 +86356,6 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
86943
86356
|
clientInfo?: Maybe<OAuthClientsClientInfo>;
|
|
86944
86357
|
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
86945
86358
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
86946
|
-
scopesInfo?: Maybe<Array<OAuthClientsScopeInfo>>;
|
|
86947
86359
|
};
|
|
86948
86360
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
86949
86361
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -86965,11 +86377,6 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
86965
86377
|
};
|
|
86966
86378
|
export declare type OAuthClientsClientInfo = {
|
|
86967
86379
|
__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']>;
|
|
86973
86380
|
clientId: Scalars['String']['output'];
|
|
86974
86381
|
clientName?: Maybe<Scalars['String']['output']>;
|
|
86975
86382
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -86988,11 +86395,6 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
86988
86395
|
description?: Maybe<Scalars['String']['output']>;
|
|
86989
86396
|
key: Scalars['String']['output'];
|
|
86990
86397
|
};
|
|
86991
|
-
export declare type OAuthClientsScopeInfo = {
|
|
86992
|
-
__typename?: 'OAuthClientsScopeInfo';
|
|
86993
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
86994
|
-
key: Scalars['String']['output'];
|
|
86995
|
-
};
|
|
86996
86398
|
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
86997
86399
|
contextIds: Array<Scalars['ID']['input']>;
|
|
86998
86400
|
extensionId: Scalars['ID']['input'];
|
|
@@ -89421,13 +88823,8 @@ export declare type Query = {
|
|
|
89421
88823
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
89422
88824
|
apps?: Maybe<AppConnection>;
|
|
89423
88825
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89424
|
-
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89425
|
-
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89426
|
-
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89427
88826
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
89428
88827
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
89429
|
-
avp_getChart?: Maybe<AvpChart>;
|
|
89430
|
-
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
89431
88828
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
89432
88829
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
89433
88830
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -89446,7 +88843,6 @@ export declare type Query = {
|
|
|
89446
88843
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
89447
88844
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
89448
88845
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
89449
|
-
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
89450
88846
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
89451
88847
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
89452
88848
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
@@ -89717,7 +89113,6 @@ export declare type Query = {
|
|
|
89717
89113
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
89718
89114
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
89719
89115
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89720
|
-
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89721
89116
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
89722
89117
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
89723
89118
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -89875,15 +89270,11 @@ export declare type Query = {
|
|
|
89875
89270
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
89876
89271
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
89877
89272
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89878
|
-
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
89879
|
-
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
89880
89273
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
89881
89274
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
89882
89275
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
89883
89276
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
89884
89277
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
89885
|
-
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
89886
|
-
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
89887
89278
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
89888
89279
|
jsw?: Maybe<JswQuery>;
|
|
89889
89280
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -89901,7 +89292,6 @@ export declare type Query = {
|
|
|
89901
89292
|
loom_comment?: Maybe<LoomComment>;
|
|
89902
89293
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
89903
89294
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
89904
|
-
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
89905
89295
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
89906
89296
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
89907
89297
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -89967,7 +89357,6 @@ export declare type Query = {
|
|
|
89967
89357
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
89968
89358
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89969
89359
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89970
|
-
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
89971
89360
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
89972
89361
|
pokemon?: Maybe<PokemonQuery>;
|
|
89973
89362
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -90328,27 +89717,12 @@ export declare type QueryAppsArgs = {
|
|
|
90328
89717
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
90329
89718
|
cloudId: Scalars['ID']['input'];
|
|
90330
89719
|
};
|
|
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
|
-
};
|
|
90340
89720
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
90341
89721
|
cloudId: Scalars['ID']['input'];
|
|
90342
89722
|
};
|
|
90343
89723
|
export declare type QueryAvailableContentStatesArgs = {
|
|
90344
89724
|
contentId: Scalars['ID']['input'];
|
|
90345
89725
|
};
|
|
90346
|
-
export declare type QueryAvp_GetChartArgs = {
|
|
90347
|
-
chartAri: Scalars['ID']['input'];
|
|
90348
|
-
};
|
|
90349
|
-
export declare type QueryAvp_GetDashboardArgs = {
|
|
90350
|
-
dashboardAri: Scalars['ID']['input'];
|
|
90351
|
-
};
|
|
90352
89726
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
90353
89727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90354
89728
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90421,9 +89795,6 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
90421
89795
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
90422
89796
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90423
89797
|
};
|
|
90424
|
-
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90425
|
-
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
90426
|
-
};
|
|
90427
89798
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
90428
89799
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90429
89800
|
};
|
|
@@ -91649,11 +91020,6 @@ export declare type QueryContentWatchersArgs = {
|
|
|
91649
91020
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91650
91021
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
91651
91022
|
};
|
|
91652
|
-
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91653
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
91654
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91655
|
-
projectId: Scalars['ID']['input'];
|
|
91656
|
-
};
|
|
91657
91023
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
91658
91024
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91659
91025
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92216,18 +91582,6 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
92216
91582
|
cloudId: Scalars['ID']['input'];
|
|
92217
91583
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92218
91584
|
};
|
|
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
|
-
};
|
|
92231
91585
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
92232
91586
|
cloudId: Scalars['ID']['input'];
|
|
92233
91587
|
};
|
|
@@ -92245,15 +91599,6 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
92245
91599
|
cloudId: Scalars['ID']['input'];
|
|
92246
91600
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
92247
91601
|
};
|
|
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
|
-
};
|
|
92257
91602
|
export declare type QueryKnowledgeBaseArgs = {
|
|
92258
91603
|
cloudId: Scalars['ID']['input'];
|
|
92259
91604
|
};
|
|
@@ -92296,12 +91641,6 @@ export declare type QueryLoom_CreateSpaceArgs = {
|
|
|
92296
91641
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
92297
91642
|
siteId: Scalars['ID']['input'];
|
|
92298
91643
|
};
|
|
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
|
-
};
|
|
92305
91644
|
export declare type QueryLoom_MeetingArgs = {
|
|
92306
91645
|
id: Scalars['ID']['input'];
|
|
92307
91646
|
};
|
|
@@ -92495,14 +91834,6 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
92495
91834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92496
91835
|
cloudId: Scalars['ID']['input'];
|
|
92497
91836
|
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>;
|
|
92506
91837
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92507
91838
|
projectKey: Scalars['String']['input'];
|
|
92508
91839
|
};
|
|
@@ -92667,7 +91998,7 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
92667
91998
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92668
91999
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
92669
92000
|
cloudId: Scalars['ID']['input'];
|
|
92670
|
-
entity
|
|
92001
|
+
entity: RadarPositionsByEntityType;
|
|
92671
92002
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92672
92003
|
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
92673
92004
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -93073,9 +92404,6 @@ export declare type QueryUserGroupSearchArgs = {
|
|
|
93073
92404
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
93074
92405
|
sitePermissionTypeFilter?: InputMaybe<SitePermissionTypeFilter>;
|
|
93075
92406
|
};
|
|
93076
|
-
export declare type QueryUserPreferencesArgs = {
|
|
93077
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
93078
|
-
};
|
|
93079
92407
|
export declare type QueryUserWithContentRestrictionsArgs = {
|
|
93080
92408
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
93081
92409
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -93235,9 +92563,6 @@ export declare type RadarBooleanFieldValue = {
|
|
|
93235
92563
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
93236
92564
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
93237
92565
|
};
|
|
93238
|
-
export declare type RadarClearFocusAreaProposalInput = {
|
|
93239
|
-
proposalAri: Scalars['ID']['input'];
|
|
93240
|
-
};
|
|
93241
92566
|
export declare type RadarConnection = {
|
|
93242
92567
|
pageInfo: PageInfo;
|
|
93243
92568
|
totalCount: Scalars['Int']['output'];
|
|
@@ -99069,7 +98394,6 @@ export declare type SpfAsk = Node & {
|
|
|
99069
98394
|
submittingTeam?: Maybe<TeamV2>;
|
|
99070
98395
|
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
99071
98396
|
targetDate?: Maybe<SpfAskTargetDate>;
|
|
99072
|
-
transitions?: Maybe<Array<Maybe<SpfAskTransition>>>;
|
|
99073
98397
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99074
98398
|
updatedBy?: Maybe<User>;
|
|
99075
98399
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -99167,12 +98491,6 @@ export declare enum SpfAskTargetDateType {
|
|
|
99167
98491
|
Month = "MONTH",
|
|
99168
98492
|
Quarter = "QUARTER"
|
|
99169
98493
|
}
|
|
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
98494
|
export declare type SpfAttachAskLinkInput = {
|
|
99177
98495
|
askId: Scalars['ID']['input'];
|
|
99178
98496
|
url: Scalars['URL']['input'];
|
|
@@ -99277,15 +98595,6 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
99277
98595
|
export declare type SpfDeleteAskInput = {
|
|
99278
98596
|
id: Scalars['ID']['input'];
|
|
99279
98597
|
};
|
|
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
98598
|
export declare type SpfDeleteAskPayload = Payload & {
|
|
99290
98599
|
__typename?: 'SpfDeleteAskPayload';
|
|
99291
98600
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -99445,6 +98754,10 @@ export declare type SpfUpdateAskReceivingTeamInput = {
|
|
|
99445
98754
|
id: Scalars['ID']['input'];
|
|
99446
98755
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99447
98756
|
};
|
|
98757
|
+
export declare type SpfUpdateAskStatusInput = {
|
|
98758
|
+
id: Scalars['ID']['input'];
|
|
98759
|
+
status: SpfAskStatus;
|
|
98760
|
+
};
|
|
99448
98761
|
export declare type SpfUpdateAskSubmitterInput = {
|
|
99449
98762
|
id: Scalars['ID']['input'];
|
|
99450
98763
|
submitterId: Scalars['String']['input'];
|
|
@@ -99453,6 +98766,10 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
99453
98766
|
id: Scalars['ID']['input'];
|
|
99454
98767
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99455
98768
|
};
|
|
98769
|
+
export declare type SpfUpdateAskTargetDateInput = {
|
|
98770
|
+
id: Scalars['ID']['input'];
|
|
98771
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
98772
|
+
};
|
|
99456
98773
|
export declare type SpfUpdateCommentDataInput = {
|
|
99457
98774
|
data: Scalars['String']['input'];
|
|
99458
98775
|
id: Scalars['ID']['input'];
|
|
@@ -100780,7 +100097,6 @@ export declare type TenantContext = {
|
|
|
100780
100097
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
100781
100098
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
100782
100099
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100783
|
-
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
100784
100100
|
};
|
|
100785
100101
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
100786
100102
|
product: Scalars['String']['input'];
|
|
@@ -103072,7 +102388,6 @@ export declare enum TrelloCardBatchStatus {
|
|
|
103072
102388
|
export declare type TrelloCardClause = {
|
|
103073
102389
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
103074
102390
|
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
103075
|
-
ids?: InputMaybe<TrelloCardIdsClause>;
|
|
103076
102391
|
list?: InputMaybe<TrelloCardListClause>;
|
|
103077
102392
|
};
|
|
103078
102393
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -103181,9 +102496,6 @@ export declare enum TrelloCardExternalSource {
|
|
|
103181
102496
|
Siri = "SIRI",
|
|
103182
102497
|
Slack = "SLACK"
|
|
103183
102498
|
}
|
|
103184
|
-
export declare type TrelloCardIdsClause = {
|
|
103185
|
-
cards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103186
|
-
};
|
|
103187
102499
|
export declare type TrelloCardLabelEdgeUpdated = {
|
|
103188
102500
|
__typename?: 'TrelloCardLabelEdgeUpdated';
|
|
103189
102501
|
node: TrelloLabelId;
|
|
@@ -104088,7 +103400,6 @@ export declare type TrelloMutationApi = {
|
|
|
104088
103400
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
104089
103401
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
104090
103402
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
104091
|
-
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
104092
103403
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
104093
103404
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
104094
103405
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -104136,9 +103447,6 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
104136
103447
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
104137
103448
|
input: TrelloPinCardInput;
|
|
104138
103449
|
};
|
|
104139
|
-
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
104140
|
-
input: TrelloRemoveBoardStarInput;
|
|
104141
|
-
};
|
|
104142
103450
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
104143
103451
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
104144
103452
|
};
|
|
@@ -104771,15 +104079,6 @@ export declare type TrelloReactionLimits = {
|
|
|
104771
104079
|
perAction?: Maybe<TrelloLimitProps>;
|
|
104772
104080
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
104773
104081
|
};
|
|
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
|
-
};
|
|
104783
104082
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
104784
104083
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
104785
104084
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -106307,7 +105606,6 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
106307
105606
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
106308
105607
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106309
105608
|
id: Scalars['ID']['input'];
|
|
106310
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106311
105609
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106312
105610
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106313
105611
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106316,7 +105614,6 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
106316
105614
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106317
105615
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
106318
105616
|
id: Scalars['ID']['input'];
|
|
106319
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106320
105617
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106321
105618
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106322
105619
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106325,7 +105622,6 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
106325
105622
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106326
105623
|
id: Scalars['ID']['input'];
|
|
106327
105624
|
linkType?: InputMaybe<CompassLinkType>;
|
|
106328
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106329
105625
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106330
105626
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106331
105627
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -106339,7 +105635,6 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
106339
105635
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106340
105636
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
106341
105637
|
id: Scalars['ID']['input'];
|
|
106342
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106343
105638
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
106344
105639
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106345
105640
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -106348,7 +105643,6 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
106348
105643
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
106349
105644
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106350
105645
|
id: Scalars['ID']['input'];
|
|
106351
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106352
105646
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106353
105647
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106354
105648
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106620,7 +105914,6 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
106620
105914
|
export declare type UpdateJiraPlaybookInput = {
|
|
106621
105915
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
106622
105916
|
id: Scalars['ID']['input'];
|
|
106623
|
-
jql?: InputMaybe<Scalars['String']['input']>;
|
|
106624
105917
|
name: Scalars['String']['input'];
|
|
106625
105918
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
106626
105919
|
scopeType: JiraPlaybookScopeType;
|