@forge/cli-shared 8.0.0-experimental-71cedbc → 8.0.0-next.10
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 +0 -83
- 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 -1263
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +115 -169
- 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>;
|
|
@@ -2436,14 +2088,6 @@ export declare type AppStorageAdmin = {
|
|
|
2436
2088
|
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2437
2089
|
input: AppStorageKvsQueryInput;
|
|
2438
2090
|
};
|
|
2439
|
-
export declare type AppStorageAdminMutation = {
|
|
2440
|
-
__typename?: 'AppStorageAdminMutation';
|
|
2441
|
-
appId: Scalars['ID']['output'];
|
|
2442
|
-
kvsSet?: Maybe<AppStorageKvsSetPayload>;
|
|
2443
|
-
};
|
|
2444
|
-
export declare type AppStorageAdminMutationKvsSetArgs = {
|
|
2445
|
-
input: AppStorageKvsSetInput;
|
|
2446
|
-
};
|
|
2447
2091
|
export declare type AppStorageCustomEntityMutation = {
|
|
2448
2092
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2449
2093
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2475,19 +2119,6 @@ export declare type AppStorageKvsQueryPayload = {
|
|
|
2475
2119
|
pageInfo: AppStoragePageInfo;
|
|
2476
2120
|
totalCount: Scalars['Int']['output'];
|
|
2477
2121
|
};
|
|
2478
|
-
export declare type AppStorageKvsSetInput = {
|
|
2479
|
-
contextAri: Scalars['ID']['input'];
|
|
2480
|
-
environmentId: Scalars['ID']['input'];
|
|
2481
|
-
installationId: Scalars['ID']['input'];
|
|
2482
|
-
key: Scalars['String']['input'];
|
|
2483
|
-
oauthClientId: Scalars['ID']['input'];
|
|
2484
|
-
value: Scalars['AppStorageEntityValue']['input'];
|
|
2485
|
-
};
|
|
2486
|
-
export declare type AppStorageKvsSetPayload = {
|
|
2487
|
-
__typename?: 'AppStorageKvsSetPayload';
|
|
2488
|
-
errors?: Maybe<Array<MutationError>>;
|
|
2489
|
-
success: Scalars['Boolean']['output'];
|
|
2490
|
-
};
|
|
2491
2122
|
export declare type AppStorageMutation = {
|
|
2492
2123
|
__typename?: 'AppStorageMutation';
|
|
2493
2124
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -4424,29 +4055,14 @@ export declare enum CcpEntitlementStatus {
|
|
|
4424
4055
|
Active = "ACTIVE",
|
|
4425
4056
|
Inactive = "INACTIVE"
|
|
4426
4057
|
}
|
|
4427
|
-
export declare type CcpEntitlementTemplate =
|
|
4058
|
+
export declare type CcpEntitlementTemplate = {
|
|
4428
4059
|
__typename?: 'CcpEntitlementTemplate';
|
|
4429
|
-
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4430
|
-
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4431
4060
|
data?: Maybe<Scalars['String']['output']>;
|
|
4432
|
-
defaultRevision?: Maybe<Scalars['Boolean']['output']>;
|
|
4433
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
4434
|
-
id: Scalars['ID']['output'];
|
|
4435
4061
|
key?: Maybe<Scalars['ID']['output']>;
|
|
4436
|
-
productKey?: Maybe<Scalars['String']['output']>;
|
|
4437
4062
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
4438
|
-
status?: Maybe<CcpEntitlementTemplateStatus>;
|
|
4439
|
-
uniqueKey?: Maybe<Scalars['ID']['output']>;
|
|
4440
|
-
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4441
4063
|
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
4442
4064
|
version?: Maybe<Scalars['Int']['output']>;
|
|
4443
4065
|
};
|
|
4444
|
-
export declare enum CcpEntitlementTemplateStatus {
|
|
4445
|
-
Deprecated = "DEPRECATED",
|
|
4446
|
-
None = "NONE",
|
|
4447
|
-
Published = "PUBLISHED",
|
|
4448
|
-
Unpublished = "UNPUBLISHED"
|
|
4449
|
-
}
|
|
4450
4066
|
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
4451
4067
|
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
4452
4068
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -5213,9 +4829,7 @@ export declare type CcpQueryApi = {
|
|
|
5213
4829
|
__typename?: 'CcpQueryApi';
|
|
5214
4830
|
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
5215
4831
|
entitlement?: Maybe<CcpEntitlement>;
|
|
5216
|
-
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
5217
4832
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5218
|
-
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5219
4833
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
5220
4834
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
5221
4835
|
offering?: Maybe<CcpOffering>;
|
|
@@ -5237,15 +4851,9 @@ export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
|
5237
4851
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
5238
4852
|
id: Scalars['ID']['input'];
|
|
5239
4853
|
};
|
|
5240
|
-
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
5241
|
-
ids: Array<Scalars['ID']['input']>;
|
|
5242
|
-
};
|
|
5243
4854
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
5244
4855
|
ids: Array<Scalars['ID']['input']>;
|
|
5245
4856
|
};
|
|
5246
|
-
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
5247
|
-
ids: Array<Scalars['ID']['input']>;
|
|
5248
|
-
};
|
|
5249
4857
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
5250
4858
|
ids: Array<Scalars['ID']['input']>;
|
|
5251
4859
|
};
|
|
@@ -5857,13 +5465,6 @@ export declare enum ChannelPlatformMutationStatus {
|
|
|
5857
5465
|
Failure = "FAILURE",
|
|
5858
5466
|
Success = "SUCCESS"
|
|
5859
5467
|
}
|
|
5860
|
-
export declare enum ChannelPlatformParticipantRole {
|
|
5861
|
-
Agent = "AGENT",
|
|
5862
|
-
Customer = "CUSTOMER",
|
|
5863
|
-
CustomBot = "CUSTOM_BOT",
|
|
5864
|
-
Supervisor = "SUPERVISOR",
|
|
5865
|
-
System = "SYSTEM"
|
|
5866
|
-
}
|
|
5867
5468
|
export declare type ChannelPlatformPluginActionRequest = {
|
|
5868
5469
|
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
5869
5470
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5874,10 +5475,6 @@ export declare type ChannelPlatformPluginActionResponse = {
|
|
|
5874
5475
|
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
5875
5476
|
response?: Maybe<Scalars['JSON']['output']>;
|
|
5876
5477
|
};
|
|
5877
|
-
export declare enum ChannelPlatformRole {
|
|
5878
|
-
Agent = "AGENT",
|
|
5879
|
-
Customer = "CUSTOMER"
|
|
5880
|
-
}
|
|
5881
5478
|
export declare type ChannelPlatformSampleQueue = {
|
|
5882
5479
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
5883
5480
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -5890,7 +5487,6 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5890
5487
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5891
5488
|
};
|
|
5892
5489
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5893
|
-
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5894
5490
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5895
5491
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5896
5492
|
};
|
|
@@ -5905,27 +5501,6 @@ export declare type ChannelPlatformSubmitTicketResponse = {
|
|
|
5905
5501
|
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
5906
5502
|
};
|
|
5907
5503
|
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
5504
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
5930
5505
|
cloudId: Scalars['ID']['input'];
|
|
5931
5506
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -7579,7 +7154,6 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
7579
7154
|
appliedSince: Scalars['DateTime']['output'];
|
|
7580
7155
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
7581
7156
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
7582
|
-
scorecardMaturityLevelHistories?: Maybe<CompassScorecardMaturityLevelHistoryConnection>;
|
|
7583
7157
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
7584
7158
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
7585
7159
|
};
|
|
@@ -7594,11 +7168,6 @@ export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesA
|
|
|
7594
7168
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7595
7169
|
query?: InputMaybe<CompassScorecardCriteriaScoreHistoryQuery>;
|
|
7596
7170
|
};
|
|
7597
|
-
export declare type CompassComponentScorecardRelationshipScorecardMaturityLevelHistoriesArgs = {
|
|
7598
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7599
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7600
|
-
query?: InputMaybe<CompassScorecardMaturityLevelHistoryQuery>;
|
|
7601
|
-
};
|
|
7602
7171
|
export declare type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
7603
7172
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7604
7173
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7910,7 +7479,6 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
7910
7479
|
};
|
|
7911
7480
|
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
7912
7481
|
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
7913
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7914
7482
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7915
7483
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7916
7484
|
weight: Scalars['Int']['input'];
|
|
@@ -7943,7 +7511,6 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
7943
7511
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
7944
7512
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7945
7513
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7946
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7947
7514
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7948
7515
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7949
7516
|
weight: Scalars['Int']['input'];
|
|
@@ -7953,7 +7520,6 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7953
7520
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7954
7521
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7955
7522
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7956
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7957
7523
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7958
7524
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7959
7525
|
weight: Scalars['Int']['input'];
|
|
@@ -7961,7 +7527,6 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7961
7527
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
7962
7528
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7963
7529
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7964
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7965
7530
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7966
7531
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
7967
7532
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7971,7 +7536,6 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
7971
7536
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
7972
7537
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7973
7538
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7974
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7975
7539
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
7976
7540
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7977
7541
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7981,7 +7545,6 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
7981
7545
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
7982
7546
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7983
7547
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7984
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7985
7548
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7986
7549
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7987
7550
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -7991,7 +7554,6 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7991
7554
|
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
7992
7555
|
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
7993
7556
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7994
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7995
7557
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7996
7558
|
packageManager: CompassPackageDependencyManagerOptions;
|
|
7997
7559
|
packageName: Scalars['String']['input'];
|
|
@@ -10049,7 +9611,6 @@ export declare type CompassScorecard = Node & {
|
|
|
10049
9611
|
name: Scalars['String']['output'];
|
|
10050
9612
|
owner?: Maybe<User>;
|
|
10051
9613
|
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
10052
|
-
scorecardMaturityLevelStatisticsHistories?: Maybe<CompassScorecardMaturityLevelStatisticsHistoryConnection>;
|
|
10053
9614
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
10054
9615
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
10055
9616
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -10079,11 +9640,6 @@ export declare type CompassScorecardDeactivatedComponentsArgs = {
|
|
|
10079
9640
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10080
9641
|
query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
|
|
10081
9642
|
};
|
|
10082
|
-
export declare type CompassScorecardScorecardMaturityLevelStatisticsHistoriesArgs = {
|
|
10083
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
10084
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10085
|
-
query?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQuery>;
|
|
10086
|
-
};
|
|
10087
9643
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
10088
9644
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
10089
9645
|
};
|
|
@@ -10098,9 +9654,6 @@ export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
|
10098
9654
|
export declare type CompassScorecardApplicationModel = {
|
|
10099
9655
|
applicationType: Scalars['String']['output'];
|
|
10100
9656
|
};
|
|
10101
|
-
export declare type CompassScorecardAppliedToComponentsComponentStateFilter = {
|
|
10102
|
-
in: Array<Scalars['String']['input']>;
|
|
10103
|
-
};
|
|
10104
9657
|
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
10105
9658
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
10106
9659
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -10134,9 +9687,6 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
10134
9687
|
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
10135
9688
|
in: Array<Scalars['String']['input']>;
|
|
10136
9689
|
};
|
|
10137
|
-
export declare type CompassScorecardAppliedToComponentsMaturityLevelFilter = {
|
|
10138
|
-
maturityLevels: Array<Scalars['ID']['input']>;
|
|
10139
|
-
};
|
|
10140
9690
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
10141
9691
|
in: Array<Scalars['ID']['input']>;
|
|
10142
9692
|
};
|
|
@@ -10147,7 +9697,6 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
10147
9697
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
10148
9698
|
};
|
|
10149
9699
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
10150
|
-
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
10151
9700
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
10152
9701
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
10153
9702
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
@@ -10155,7 +9704,6 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
10155
9704
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
10156
9705
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
10157
9706
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
10158
|
-
scorecardMaturityLevels?: InputMaybe<CompassScorecardAppliedToComponentsMaturityLevelFilter>;
|
|
10159
9707
|
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
10160
9708
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
10161
9709
|
};
|
|
@@ -10215,12 +9763,6 @@ export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
|
10215
9763
|
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
10216
9764
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10217
9765
|
};
|
|
10218
|
-
export declare type CompassScorecardCriteriaMaturityGroupInput = {
|
|
10219
|
-
maturityLevel: CompassScorecardCriteriaMaturityLevelInput;
|
|
10220
|
-
};
|
|
10221
|
-
export declare type CompassScorecardCriteriaMaturityLevelInput = {
|
|
10222
|
-
id: Scalars['ID']['input'];
|
|
10223
|
-
};
|
|
10224
9766
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
10225
9767
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
10226
9768
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10573,63 +10115,10 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
10573
10115
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
10574
10116
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
10575
10117
|
};
|
|
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
10118
|
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
10600
10119
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
10601
10120
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
10602
10121
|
};
|
|
10603
|
-
export declare type CompassScorecardMaturityLevelStatistic = {
|
|
10604
|
-
__typename?: 'CompassScorecardMaturityLevelStatistic';
|
|
10605
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
10606
|
-
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10607
|
-
};
|
|
10608
|
-
export declare type CompassScorecardMaturityLevelStatisticsHistory = {
|
|
10609
|
-
__typename?: 'CompassScorecardMaturityLevelStatisticsHistory';
|
|
10610
|
-
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10611
|
-
statistics?: Maybe<Array<CompassScorecardMaturityLevelStatistic>>;
|
|
10612
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10613
|
-
};
|
|
10614
|
-
export declare type CompassScorecardMaturityLevelStatisticsHistoryConnection = {
|
|
10615
|
-
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryConnection';
|
|
10616
|
-
edges?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistoryEdge>>;
|
|
10617
|
-
nodes?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistory>>;
|
|
10618
|
-
pageInfo: PageInfo;
|
|
10619
|
-
};
|
|
10620
|
-
export declare type CompassScorecardMaturityLevelStatisticsHistoryEdge = {
|
|
10621
|
-
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryEdge';
|
|
10622
|
-
cursor: Scalars['String']['output'];
|
|
10623
|
-
node?: Maybe<CompassScorecardMaturityLevelStatisticsHistory>;
|
|
10624
|
-
};
|
|
10625
|
-
export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
10626
|
-
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
10627
|
-
};
|
|
10628
|
-
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
10629
|
-
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
10630
|
-
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
10631
|
-
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
10632
|
-
};
|
|
10633
10122
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
10634
10123
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
10635
10124
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10772,11 +10261,6 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
10772
10261
|
since: Scalars['DateTime']['output'];
|
|
10773
10262
|
};
|
|
10774
10263
|
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
10264
|
export declare enum CompassScorecardScoringStrategyType {
|
|
10781
10265
|
PercentageBased = "PERCENTAGE_BASED",
|
|
10782
10266
|
PointBased = "POINT_BASED",
|
|
@@ -11193,7 +10677,6 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
11193
10677
|
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
11194
10678
|
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
11195
10679
|
id: Scalars['ID']['input'];
|
|
11196
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11197
10680
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11198
10681
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11199
10682
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11204,7 +10687,6 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
11204
10687
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11205
10688
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11206
10689
|
id: Scalars['ID']['input'];
|
|
11207
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11208
10690
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11209
10691
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11210
10692
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11215,7 +10697,6 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
11215
10697
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11216
10698
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11217
10699
|
id: Scalars['ID']['input'];
|
|
11218
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11219
10700
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11220
10701
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11221
10702
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11224,7 +10705,6 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
11224
10705
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11225
10706
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11226
10707
|
id: Scalars['ID']['input'];
|
|
11227
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11228
10708
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11229
10709
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
11230
10710
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -11235,7 +10715,6 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
11235
10715
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11236
10716
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11237
10717
|
id: Scalars['ID']['input'];
|
|
11238
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11239
10718
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
11240
10719
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11241
10720
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11246,7 +10725,6 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
11246
10725
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
11247
10726
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11248
10727
|
id: Scalars['ID']['input'];
|
|
11249
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11250
10728
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11251
10729
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
11252
10730
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -11257,7 +10735,6 @@ export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
|
11257
10735
|
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
11258
10736
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
11259
10737
|
id: Scalars['ID']['input'];
|
|
11260
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
11261
10738
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11262
10739
|
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
11263
10740
|
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11535,10 +11012,6 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
11535
11012
|
success: Scalars['Boolean']['output'];
|
|
11536
11013
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
11537
11014
|
};
|
|
11538
|
-
export declare enum ComplianceBoundary {
|
|
11539
|
-
Commercial = "COMMERCIAL",
|
|
11540
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11541
|
-
}
|
|
11542
11015
|
export declare type ComponentApiUpload = {
|
|
11543
11016
|
__typename?: 'ComponentApiUpload';
|
|
11544
11017
|
specUrl: Scalars['String']['output'];
|
|
@@ -11567,6 +11040,21 @@ export declare enum ComponentSyncEventStatus {
|
|
|
11567
11040
|
Success = "SUCCESS",
|
|
11568
11041
|
UserError = "USER_ERROR"
|
|
11569
11042
|
}
|
|
11043
|
+
export declare type ConfigurePolarisRefreshInput = {
|
|
11044
|
+
autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
11045
|
+
clearError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11046
|
+
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11047
|
+
project: Scalars['ID']['input'];
|
|
11048
|
+
setError?: InputMaybe<PolarisRefreshError>;
|
|
11049
|
+
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
11050
|
+
timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
11051
|
+
};
|
|
11052
|
+
export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
11053
|
+
__typename?: 'ConfigurePolarisRefreshPayload';
|
|
11054
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11055
|
+
node?: Maybe<Scalars['Int']['output']>;
|
|
11056
|
+
success: Scalars['Boolean']['output'];
|
|
11057
|
+
};
|
|
11570
11058
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
11571
11059
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
11572
11060
|
appearance: Scalars['String']['output'];
|
|
@@ -21763,7 +21251,6 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
21763
21251
|
};
|
|
21764
21252
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
21765
21253
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21766
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21767
21254
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21768
21255
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21769
21256
|
weight: Scalars['Int']['input'];
|
|
@@ -21771,7 +21258,6 @@ export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
|
21771
21258
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
21772
21259
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21773
21260
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
21774
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21775
21261
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21776
21262
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21777
21263
|
weight: Scalars['Int']['input'];
|
|
@@ -21779,7 +21265,6 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
21779
21265
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
21780
21266
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21781
21267
|
linkType: CompassLinkType;
|
|
21782
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21783
21268
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21784
21269
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21785
21270
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -21792,7 +21277,6 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21792
21277
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
21793
21278
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21794
21279
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
21795
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21796
21280
|
metricDefinitionId: Scalars['ID']['input'];
|
|
21797
21281
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21798
21282
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -21800,7 +21284,6 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21800
21284
|
};
|
|
21801
21285
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
21802
21286
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21803
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21804
21287
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21805
21288
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21806
21289
|
weight: Scalars['Int']['input'];
|
|
@@ -21853,7 +21336,6 @@ export declare type CreateCompassScorecardInput = {
|
|
|
21853
21336
|
name: Scalars['String']['input'];
|
|
21854
21337
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
21855
21338
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
21856
|
-
scoreSystemType?: InputMaybe<CompassScorecardScoreSystemType>;
|
|
21857
21339
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
21858
21340
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
21859
21341
|
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
@@ -22071,7 +21553,6 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
22071
21553
|
export declare type CreateJiraPlaybookInput = {
|
|
22072
21554
|
cloudId: Scalars['ID']['input'];
|
|
22073
21555
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
22074
|
-
jql?: InputMaybe<Scalars['String']['input']>;
|
|
22075
21556
|
name: Scalars['String']['input'];
|
|
22076
21557
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
22077
21558
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -22317,7 +21798,6 @@ export declare type CsmAiAction = {
|
|
|
22317
21798
|
description?: Maybe<Scalars['String']['output']>;
|
|
22318
21799
|
id: Scalars['ID']['output'];
|
|
22319
21800
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
22320
|
-
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22321
21801
|
name?: Maybe<Scalars['String']['output']>;
|
|
22322
21802
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
22323
21803
|
};
|
|
@@ -22410,7 +21890,6 @@ export declare type CsmAiCreateActionInput = {
|
|
|
22410
21890
|
authentication: CsmAiAuthenticationInput;
|
|
22411
21891
|
description: Scalars['String']['input'];
|
|
22412
21892
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
22413
|
-
isEnabled: Scalars['Boolean']['input'];
|
|
22414
21893
|
name: Scalars['String']['input'];
|
|
22415
21894
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
22416
21895
|
};
|
|
@@ -22454,10 +21933,6 @@ export declare type CsmAiHub = {
|
|
|
22454
21933
|
agent?: Maybe<CsmAiAgentResult>;
|
|
22455
21934
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
22456
21935
|
id: Scalars['ID']['output'];
|
|
22457
|
-
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22458
|
-
};
|
|
22459
|
-
export declare type CsmAiHubActionsArgs = {
|
|
22460
|
-
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22461
21936
|
};
|
|
22462
21937
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
22463
21938
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -22489,7 +21964,6 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
22489
21964
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
22490
21965
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
22491
21966
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22492
|
-
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22493
21967
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
22494
21968
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
22495
21969
|
};
|
|
@@ -22531,78 +22005,6 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
22531
22005
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
22532
22006
|
success: Scalars['Boolean']['output'];
|
|
22533
22007
|
};
|
|
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
22008
|
export declare type CumulativeFlowDiagram = {
|
|
22607
22009
|
__typename?: 'CumulativeFlowDiagram';
|
|
22608
22010
|
chart: CfdChartConnection;
|
|
@@ -24948,42 +24350,6 @@ export declare type DevAiWorkspace = {
|
|
|
24948
24350
|
status?: Maybe<Scalars['String']['output']>;
|
|
24949
24351
|
workspaceAri: Scalars['ID']['output'];
|
|
24950
24352
|
};
|
|
24951
|
-
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
24952
|
-
name: Scalars['String']['input'];
|
|
24953
|
-
};
|
|
24954
|
-
export declare type DevConsoleDeveloperSpace = {
|
|
24955
|
-
__typename?: 'DevConsoleDeveloperSpace';
|
|
24956
|
-
id: Scalars['String']['output'];
|
|
24957
|
-
name: Scalars['String']['output'];
|
|
24958
|
-
status: Scalars['String']['output'];
|
|
24959
|
-
type: DevConsoleDeveloperSpaceType;
|
|
24960
|
-
version: Scalars['Int']['output'];
|
|
24961
|
-
versionId: Scalars['Int']['output'];
|
|
24962
|
-
};
|
|
24963
|
-
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
24964
|
-
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
24965
|
-
logo?: Maybe<Scalars['String']['output']>;
|
|
24966
|
-
name: Scalars['String']['output'];
|
|
24967
|
-
};
|
|
24968
|
-
export declare enum DevConsoleDeveloperSpaceType {
|
|
24969
|
-
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
24970
|
-
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
24971
|
-
}
|
|
24972
|
-
export declare type DevConsoleMutation = {
|
|
24973
|
-
__typename?: 'DevConsoleMutation';
|
|
24974
|
-
createDeveloperSpace: DevConsoleDeveloperSpace;
|
|
24975
|
-
};
|
|
24976
|
-
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
24977
|
-
input: DevConsoleCreateDeveloperSpaceInput;
|
|
24978
|
-
};
|
|
24979
|
-
export declare type DevConsoleQuery = {
|
|
24980
|
-
__typename?: 'DevConsoleQuery';
|
|
24981
|
-
getDeveloperSpaceDetails: DevConsoleDeveloperSpaceDetails;
|
|
24982
|
-
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
24983
|
-
};
|
|
24984
|
-
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
24985
|
-
developerSpaceId: Scalars['String']['input'];
|
|
24986
|
-
};
|
|
24987
24353
|
export declare type DevOps = {
|
|
24988
24354
|
__typename?: 'DevOps';
|
|
24989
24355
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -26664,7 +26030,6 @@ export declare type EcosystemMutation = {
|
|
|
26664
26030
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
26665
26031
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
26666
26032
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
26667
|
-
devConsole?: Maybe<DevConsoleMutation>;
|
|
26668
26033
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
26669
26034
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
26670
26035
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
@@ -26769,7 +26134,6 @@ export declare type EcosystemQuery = {
|
|
|
26769
26134
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
26770
26135
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
26771
26136
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
26772
|
-
devConsole?: Maybe<DevConsoleQuery>;
|
|
26773
26137
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
26774
26138
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
26775
26139
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -33463,6 +32827,8 @@ export declare type GraphStore = {
|
|
|
33463
32827
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
33464
32828
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
33465
32829
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
32830
|
+
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
32831
|
+
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
33466
32832
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
33467
32833
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
33468
32834
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -33478,6 +32844,8 @@ export declare type GraphStore = {
|
|
|
33478
32844
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
33479
32845
|
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
33480
32846
|
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
32847
|
+
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
32848
|
+
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
33481
32849
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
33482
32850
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
33483
32851
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -33506,6 +32874,8 @@ export declare type GraphStore = {
|
|
|
33506
32874
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
33507
32875
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
33508
32876
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32877
|
+
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32878
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
33509
32879
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
33510
32880
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
33511
32881
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -33769,8 +33139,6 @@ export declare type GraphStore = {
|
|
|
33769
33139
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
33770
33140
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
33771
33141
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
33772
|
-
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
33773
|
-
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
33774
33142
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
33775
33143
|
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
33776
33144
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
@@ -33963,7 +33331,6 @@ export declare type GraphStore = {
|
|
|
33963
33331
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
33964
33332
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
33965
33333
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
33966
|
-
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
33967
33334
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
33968
33335
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
33969
33336
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -34299,6 +33666,22 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
34299
33666
|
id: Scalars['ID']['input'];
|
|
34300
33667
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
34301
33668
|
};
|
|
33669
|
+
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
33670
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33671
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33672
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33673
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33674
|
+
id: Scalars['ID']['input'];
|
|
33675
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33676
|
+
};
|
|
33677
|
+
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
33678
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33679
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33680
|
+
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33681
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33682
|
+
id: Scalars['ID']['input'];
|
|
33683
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33684
|
+
};
|
|
34302
33685
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
34303
33686
|
container_ids: Array<Scalars['ID']['input']>;
|
|
34304
33687
|
enabled_sources?: InputMaybe<Array<InputMaybe<GraphStoreAtlasHomeSourcesEnum>>>;
|
|
@@ -34398,6 +33781,22 @@ export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
|
34398
33781
|
id: Scalars['ID']['input'];
|
|
34399
33782
|
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
34400
33783
|
};
|
|
33784
|
+
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
33785
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33786
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33787
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33789
|
+
id: Scalars['ID']['input'];
|
|
33790
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33791
|
+
};
|
|
33792
|
+
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
33793
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33794
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33795
|
+
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33796
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33797
|
+
id: Scalars['ID']['input'];
|
|
33798
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33799
|
+
};
|
|
34401
33800
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
34402
33801
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34403
33802
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34582,6 +33981,20 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
34582
33981
|
id: Scalars['ID']['input'];
|
|
34583
33982
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
34584
33983
|
};
|
|
33984
|
+
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
33985
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33986
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33987
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33988
|
+
id: Scalars['ID']['input'];
|
|
33989
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33990
|
+
};
|
|
33991
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
33992
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33993
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33994
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33995
|
+
id: Scalars['ID']['input'];
|
|
33996
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33997
|
+
};
|
|
34585
33998
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
34586
33999
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34587
34000
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36289,20 +35702,6 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
36289
35702
|
id: Scalars['ID']['input'];
|
|
36290
35703
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
36291
35704
|
};
|
|
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
35705
|
export declare type GraphStorePrInProviderRepoArgs = {
|
|
36307
35706
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36308
35707
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37577,13 +36976,6 @@ export declare type GraphStoreTopicHasRelatedEntityArgs = {
|
|
|
37577
36976
|
id: Scalars['ID']['input'];
|
|
37578
36977
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
37579
36978
|
};
|
|
37580
|
-
export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
37581
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37582
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37583
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37584
|
-
id: Scalars['ID']['input'];
|
|
37585
|
-
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
37586
|
-
};
|
|
37587
36979
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
37588
36980
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37589
36981
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39210,6 +38602,107 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
39210
38602
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
39211
38603
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39212
38604
|
};
|
|
38605
|
+
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
38606
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38607
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38608
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38609
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38610
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38611
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38612
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38613
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
38614
|
+
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38615
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
38616
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38617
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
38618
|
+
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38619
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
38620
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38621
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
38622
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38623
|
+
};
|
|
38624
|
+
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
38625
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38626
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38627
|
+
};
|
|
38628
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
38629
|
+
Day = "DAY",
|
|
38630
|
+
Month = "MONTH",
|
|
38631
|
+
NotSet = "NOT_SET",
|
|
38632
|
+
Quarter = "QUARTER"
|
|
38633
|
+
}
|
|
38634
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
38635
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38636
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38637
|
+
};
|
|
38638
|
+
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
38639
|
+
AtRisk = "AT_RISK",
|
|
38640
|
+
Cancelled = "CANCELLED",
|
|
38641
|
+
Done = "DONE",
|
|
38642
|
+
NotSet = "NOT_SET",
|
|
38643
|
+
OffTrack = "OFF_TRACK",
|
|
38644
|
+
OnTrack = "ON_TRACK",
|
|
38645
|
+
Paused = "PAUSED",
|
|
38646
|
+
Pending = "PENDING"
|
|
38647
|
+
}
|
|
38648
|
+
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
38649
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38650
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38651
|
+
};
|
|
38652
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
38653
|
+
Day = "DAY",
|
|
38654
|
+
Month = "MONTH",
|
|
38655
|
+
NotSet = "NOT_SET",
|
|
38656
|
+
Null = "NULL",
|
|
38657
|
+
Quarter = "QUARTER"
|
|
38658
|
+
}
|
|
38659
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
38660
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38661
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38662
|
+
};
|
|
38663
|
+
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
38664
|
+
AtRisk = "AT_RISK",
|
|
38665
|
+
Cancelled = "CANCELLED",
|
|
38666
|
+
Done = "DONE",
|
|
38667
|
+
NotSet = "NOT_SET",
|
|
38668
|
+
Null = "NULL",
|
|
38669
|
+
OffTrack = "OFF_TRACK",
|
|
38670
|
+
OnTrack = "ON_TRACK",
|
|
38671
|
+
Paused = "PAUSED",
|
|
38672
|
+
Pending = "PENDING"
|
|
38673
|
+
}
|
|
38674
|
+
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
38675
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38676
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38677
|
+
};
|
|
38678
|
+
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
38679
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38680
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38681
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38682
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38683
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38684
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38685
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38686
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38687
|
+
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
38688
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38689
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38690
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38691
|
+
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
38692
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38693
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38694
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38695
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38696
|
+
};
|
|
38697
|
+
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
38698
|
+
NotSet = "NOT_SET",
|
|
38699
|
+
System = "SYSTEM",
|
|
38700
|
+
User = "USER"
|
|
38701
|
+
}
|
|
38702
|
+
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
38703
|
+
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38704
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38705
|
+
};
|
|
39213
38706
|
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39214
38707
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39215
38708
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
@@ -39279,6 +38772,103 @@ export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
|
39279
38772
|
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
39280
38773
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39281
38774
|
};
|
|
38775
|
+
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
38776
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38777
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38778
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38779
|
+
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38780
|
+
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38781
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38782
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38783
|
+
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
38784
|
+
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
38785
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38786
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
38787
|
+
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
38788
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38789
|
+
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
38790
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38791
|
+
};
|
|
38792
|
+
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
38793
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38794
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38795
|
+
};
|
|
38796
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
38797
|
+
Day = "DAY",
|
|
38798
|
+
Month = "MONTH",
|
|
38799
|
+
NotSet = "NOT_SET",
|
|
38800
|
+
Quarter = "QUARTER"
|
|
38801
|
+
}
|
|
38802
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
38803
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38804
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38805
|
+
};
|
|
38806
|
+
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
38807
|
+
AtRisk = "AT_RISK",
|
|
38808
|
+
Cancelled = "CANCELLED",
|
|
38809
|
+
Done = "DONE",
|
|
38810
|
+
NotSet = "NOT_SET",
|
|
38811
|
+
OffTrack = "OFF_TRACK",
|
|
38812
|
+
OnTrack = "ON_TRACK",
|
|
38813
|
+
Paused = "PAUSED",
|
|
38814
|
+
Pending = "PENDING"
|
|
38815
|
+
}
|
|
38816
|
+
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
38817
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38818
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38819
|
+
};
|
|
38820
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
38821
|
+
Day = "DAY",
|
|
38822
|
+
Month = "MONTH",
|
|
38823
|
+
NotSet = "NOT_SET",
|
|
38824
|
+
Null = "NULL",
|
|
38825
|
+
Quarter = "QUARTER"
|
|
38826
|
+
}
|
|
38827
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
38828
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38829
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38830
|
+
};
|
|
38831
|
+
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
38832
|
+
AtRisk = "AT_RISK",
|
|
38833
|
+
Cancelled = "CANCELLED",
|
|
38834
|
+
Done = "DONE",
|
|
38835
|
+
NotSet = "NOT_SET",
|
|
38836
|
+
Null = "NULL",
|
|
38837
|
+
OffTrack = "OFF_TRACK",
|
|
38838
|
+
OnTrack = "ON_TRACK",
|
|
38839
|
+
Paused = "PAUSED",
|
|
38840
|
+
Pending = "PENDING"
|
|
38841
|
+
}
|
|
38842
|
+
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
38843
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38844
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38845
|
+
};
|
|
38846
|
+
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
38847
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38848
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38849
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38850
|
+
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38851
|
+
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38852
|
+
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38853
|
+
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38854
|
+
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38855
|
+
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38856
|
+
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38857
|
+
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38858
|
+
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38859
|
+
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38860
|
+
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38861
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38862
|
+
};
|
|
38863
|
+
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
38864
|
+
NotSet = "NOT_SET",
|
|
38865
|
+
System = "SYSTEM",
|
|
38866
|
+
User = "USER"
|
|
38867
|
+
}
|
|
38868
|
+
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
38869
|
+
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38870
|
+
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38871
|
+
};
|
|
39282
38872
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
39283
38873
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39284
38874
|
};
|
|
@@ -40051,6 +39641,9 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
40051
39641
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
40052
39642
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40053
39643
|
};
|
|
39644
|
+
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39645
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39646
|
+
};
|
|
40054
39647
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
40055
39648
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40056
39649
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40572,7 +40165,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40572
40165
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40573
40166
|
id: Scalars['ID']['output'];
|
|
40574
40167
|
};
|
|
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 |
|
|
40168
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40576
40169
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40577
40170
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40578
40171
|
value: Scalars['Int']['output'];
|
|
@@ -40607,7 +40200,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40607
40200
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40608
40201
|
id: Scalars['ID']['output'];
|
|
40609
40202
|
};
|
|
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 |
|
|
40203
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40611
40204
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40612
40205
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40613
40206
|
value: Scalars['String']['output'];
|
|
@@ -40617,19 +40210,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40617
40210
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40618
40211
|
id: Scalars['ID']['output'];
|
|
40619
40212
|
};
|
|
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 |
|
|
40213
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40621
40214
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40622
40215
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40623
40216
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40624
40217
|
id: Scalars['ID']['output'];
|
|
40625
40218
|
};
|
|
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 |
|
|
40219
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40627
40220
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40628
40221
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40629
40222
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40630
40223
|
id: Scalars['ID']['output'];
|
|
40631
40224
|
};
|
|
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 |
|
|
40225
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40633
40226
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40634
40227
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40635
40228
|
value: Scalars['Boolean']['output'];
|
|
@@ -40728,7 +40321,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40728
40321
|
V2 = "V2",
|
|
40729
40322
|
V3 = "V3"
|
|
40730
40323
|
}
|
|
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 |
|
|
40324
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40732
40325
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40733
40326
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40734
40327
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41926,7 +41519,6 @@ export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
41926
41519
|
};
|
|
41927
41520
|
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
41928
41521
|
Declined = "DECLINED",
|
|
41929
|
-
Draft = "DRAFT",
|
|
41930
41522
|
Merged = "MERGED",
|
|
41931
41523
|
NotSet = "NOT_SET",
|
|
41932
41524
|
Open = "OPEN",
|
|
@@ -42475,7 +42067,6 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUn
|
|
|
42475
42067
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
42476
42068
|
Archive = "ARCHIVE",
|
|
42477
42069
|
Audio = "AUDIO",
|
|
42478
|
-
Blogpost = "BLOGPOST",
|
|
42479
42070
|
Code = "CODE",
|
|
42480
42071
|
Document = "DOCUMENT",
|
|
42481
42072
|
Folder = "FOLDER",
|
|
@@ -42483,13 +42074,11 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
42483
42074
|
Image = "IMAGE",
|
|
42484
42075
|
NotSet = "NOT_SET",
|
|
42485
42076
|
Other = "OTHER",
|
|
42486
|
-
Page = "PAGE",
|
|
42487
42077
|
Pdf = "PDF",
|
|
42488
42078
|
Presentation = "PRESENTATION",
|
|
42489
42079
|
Shortcut = "SHORTCUT",
|
|
42490
42080
|
Spreadsheet = "SPREADSHEET",
|
|
42491
|
-
Video = "VIDEO"
|
|
42492
|
-
WebPage = "WEB_PAGE"
|
|
42081
|
+
Video = "VIDEO"
|
|
42493
42082
|
}
|
|
42494
42083
|
export declare type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
42495
42084
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
@@ -42597,7 +42186,6 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
42597
42186
|
};
|
|
42598
42187
|
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
42599
42188
|
Declined = "DECLINED",
|
|
42600
|
-
Draft = "DRAFT",
|
|
42601
42189
|
Merged = "MERGED",
|
|
42602
42190
|
NotSet = "NOT_SET",
|
|
42603
42191
|
Open = "OPEN",
|
|
@@ -42941,7 +42529,6 @@ export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
42941
42529
|
};
|
|
42942
42530
|
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
42943
42531
|
Declined = "DECLINED",
|
|
42944
|
-
Draft = "DRAFT",
|
|
42945
42532
|
Merged = "MERGED",
|
|
42946
42533
|
NotSet = "NOT_SET",
|
|
42947
42534
|
Open = "OPEN",
|
|
@@ -43767,7 +43354,6 @@ export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
43767
43354
|
};
|
|
43768
43355
|
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
43769
43356
|
Declined = "DECLINED",
|
|
43770
|
-
Draft = "DRAFT",
|
|
43771
43357
|
Merged = "MERGED",
|
|
43772
43358
|
NotSet = "NOT_SET",
|
|
43773
43359
|
Open = "OPEN",
|
|
@@ -45215,9 +44801,6 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
45215
44801
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
45216
44802
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45217
44803
|
};
|
|
45218
|
-
export declare type GraphStorePrHasCommentSortInput = {
|
|
45219
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45220
|
-
};
|
|
45221
44804
|
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
45222
44805
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
45223
44806
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -45467,7 +45050,6 @@ export declare type GraphStoreProjectAssociatedPrFilterInput = {
|
|
|
45467
45050
|
};
|
|
45468
45051
|
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
45469
45052
|
Declined = "DECLINED",
|
|
45470
|
-
Draft = "DRAFT",
|
|
45471
45053
|
Merged = "MERGED",
|
|
45472
45054
|
NotSet = "NOT_SET",
|
|
45473
45055
|
Open = "OPEN",
|
|
@@ -46004,6 +45586,38 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
46004
45586
|
};
|
|
46005
45587
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
46006
45588
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
45589
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45590
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
45591
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
45592
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45593
|
+
pageInfo: PageInfo;
|
|
45594
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45595
|
+
};
|
|
45596
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
45597
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
45598
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45599
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45600
|
+
id: Scalars['ID']['output'];
|
|
45601
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45602
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
45603
|
+
};
|
|
45604
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45605
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
45606
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
45607
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45608
|
+
pageInfo: PageInfo;
|
|
45609
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45610
|
+
};
|
|
45611
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
45612
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
45613
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45614
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45615
|
+
id: Scalars['ID']['output'];
|
|
45616
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45617
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
45618
|
+
};
|
|
45619
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
45620
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
46007
45621
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
46008
45622
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
46009
45623
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -46172,6 +45786,38 @@ export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge
|
|
|
46172
45786
|
};
|
|
46173
45787
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
46174
45788
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
45789
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45790
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
45791
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
45792
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45793
|
+
pageInfo: PageInfo;
|
|
45794
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45795
|
+
};
|
|
45796
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
45797
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
45798
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45799
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45800
|
+
id: Scalars['ID']['output'];
|
|
45801
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45802
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
45803
|
+
};
|
|
45804
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45805
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
45806
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
45807
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45808
|
+
pageInfo: PageInfo;
|
|
45809
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45810
|
+
};
|
|
45811
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
45812
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
45813
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45814
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45815
|
+
id: Scalars['ID']['output'];
|
|
45816
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45817
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
45818
|
+
};
|
|
45819
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
45820
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
46175
45821
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
46176
45822
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
46177
45823
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -46480,6 +46126,34 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
46480
46126
|
};
|
|
46481
46127
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
46482
46128
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
46129
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
46130
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
46131
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
46132
|
+
pageInfo: PageInfo;
|
|
46133
|
+
};
|
|
46134
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
46135
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
46136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46137
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46138
|
+
id: Scalars['ID']['output'];
|
|
46139
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46140
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
46141
|
+
};
|
|
46142
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46143
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
46144
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
46145
|
+
pageInfo: PageInfo;
|
|
46146
|
+
};
|
|
46147
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
46148
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
46149
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46150
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46151
|
+
id: Scalars['ID']['output'];
|
|
46152
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46153
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
46154
|
+
};
|
|
46155
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
46156
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
46483
46157
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
46484
46158
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
46485
46159
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -48962,34 +48636,6 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
48962
48636
|
};
|
|
48963
48637
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
48964
48638
|
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
48639
|
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
48994
48640
|
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
48995
48641
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
@@ -50773,20 +50419,6 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityEdge = {
|
|
|
50773
50419
|
lastUpdated: Scalars['DateTime']['output'];
|
|
50774
50420
|
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityUnion>;
|
|
50775
50421
|
};
|
|
50776
|
-
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
50777
|
-
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection';
|
|
50778
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge>>>;
|
|
50779
|
-
pageInfo: PageInfo;
|
|
50780
|
-
};
|
|
50781
|
-
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
50782
|
-
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge';
|
|
50783
|
-
createdAt: Scalars['DateTime']['output'];
|
|
50784
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
50785
|
-
id: Scalars['ID']['output'];
|
|
50786
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
50787
|
-
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion>;
|
|
50788
|
-
};
|
|
50789
|
-
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
50790
50422
|
export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
|
|
50791
50423
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
50792
50424
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
@@ -53822,7 +53454,6 @@ export declare type GraphStoreSprintAssociatedPrFilterInput = {
|
|
|
53822
53454
|
};
|
|
53823
53455
|
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
53824
53456
|
Declined = "DECLINED",
|
|
53825
|
-
Draft = "DRAFT",
|
|
53826
53457
|
Merged = "MERGED",
|
|
53827
53458
|
NotSet = "NOT_SET",
|
|
53828
53459
|
Open = "OPEN",
|
|
@@ -54558,19 +54189,16 @@ export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendatio
|
|
|
54558
54189
|
__typename?: 'GrowthRecJiraTemplateRecommendation';
|
|
54559
54190
|
entityId: Scalars['ID']['output'];
|
|
54560
54191
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54561
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54562
54192
|
};
|
|
54563
54193
|
export declare type GrowthRecNonHydratedRecommendation = GrowthRecRecommendation & {
|
|
54564
54194
|
__typename?: 'GrowthRecNonHydratedRecommendation';
|
|
54565
54195
|
entityId: Scalars['ID']['output'];
|
|
54566
54196
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54567
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54568
54197
|
};
|
|
54569
54198
|
export declare type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
54570
54199
|
__typename?: 'GrowthRecProductRecommendation';
|
|
54571
54200
|
entityId: Scalars['ID']['output'];
|
|
54572
54201
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54573
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54574
54202
|
};
|
|
54575
54203
|
export declare type GrowthRecQuery = {
|
|
54576
54204
|
__typename?: 'GrowthRecQuery';
|
|
@@ -54584,7 +54212,6 @@ export declare type GrowthRecQueryRecommendationsArgs = {
|
|
|
54584
54212
|
export declare type GrowthRecRecommendation = {
|
|
54585
54213
|
entityId: Scalars['ID']['output'];
|
|
54586
54214
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54587
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
54588
54215
|
};
|
|
54589
54216
|
export declare type GrowthRecRecommendations = {
|
|
54590
54217
|
__typename?: 'GrowthRecRecommendations';
|
|
@@ -59048,7 +58675,6 @@ export declare type JiraBoardView = {
|
|
|
59048
58675
|
id: Scalars['ID']['output'];
|
|
59049
58676
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
59050
58677
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
59051
|
-
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
59052
58678
|
};
|
|
59053
58679
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
59054
58680
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59072,10 +58698,6 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
59072
58698
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
59073
58699
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
59074
58700
|
};
|
|
59075
|
-
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
59076
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
59077
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59078
|
-
};
|
|
59079
58701
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
59080
58702
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
59081
58703
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59154,45 +58776,19 @@ export declare type JiraBoardViewSettings = {
|
|
|
59154
58776
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
59155
58777
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
59156
58778
|
};
|
|
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
58779
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
59168
58780
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
59169
58781
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
59170
58782
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
59171
58783
|
id: Scalars['ID']['output'];
|
|
59172
|
-
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
59173
58784
|
name?: Maybe<Scalars['String']['output']>;
|
|
59174
58785
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
59175
58786
|
};
|
|
59176
|
-
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
59177
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
59178
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59179
|
-
};
|
|
59180
58787
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
59181
58788
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
59182
58789
|
name: Scalars['String']['input'];
|
|
59183
58790
|
statusIds: Array<Scalars['ID']['input']>;
|
|
59184
58791
|
};
|
|
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
58792
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
59197
58793
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
59198
58794
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60857,10 +60453,6 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
60857
60453
|
journeyVersion: Scalars['Long']['input'];
|
|
60858
60454
|
name: Scalars['String']['input'];
|
|
60859
60455
|
};
|
|
60860
|
-
export declare type JiraCreateFieldSchemeInput = {
|
|
60861
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60862
|
-
name: Scalars['String']['input'];
|
|
60863
|
-
};
|
|
60864
60456
|
export declare type JiraCreateFormattingRuleInput = {
|
|
60865
60457
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
60866
60458
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -61351,15 +60943,6 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
61351
60943
|
errors?: Maybe<Array<MutationError>>;
|
|
61352
60944
|
success: Scalars['Boolean']['output'];
|
|
61353
60945
|
};
|
|
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
60946
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
61364
60947
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
61365
60948
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -61432,7 +61015,6 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
61432
61015
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61433
61016
|
issues?: Maybe<JiraIssueConnection>;
|
|
61434
61017
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
61435
|
-
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
61436
61018
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
61437
61019
|
};
|
|
61438
61020
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -61443,9 +61025,6 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
61443
61025
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61444
61026
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61445
61027
|
};
|
|
61446
|
-
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61447
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61448
|
-
};
|
|
61449
61028
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
61450
61029
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61451
61030
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61871,11 +61450,6 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
61871
61450
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
61872
61451
|
success: Scalars['Boolean']['output'];
|
|
61873
61452
|
};
|
|
61874
|
-
export declare type JiraEditFieldSchemeInput = {
|
|
61875
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
61876
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
61877
|
-
schemeId: Scalars['ID']['input'];
|
|
61878
|
-
};
|
|
61879
61453
|
export declare enum JiraEmailMimeType {
|
|
61880
61454
|
Html = "HTML",
|
|
61881
61455
|
Text = "TEXT"
|
|
@@ -62250,35 +61824,6 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
62250
61824
|
Allow = "ALLOW",
|
|
62251
61825
|
Exclude = "EXCLUDE"
|
|
62252
61826
|
}
|
|
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
61827
|
export declare type JiraFieldSearcherTemplate = {
|
|
62283
61828
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
62284
61829
|
displayName: Scalars['String']['output'];
|
|
@@ -62299,10 +61844,6 @@ export declare type JiraFieldSetPreferences = {
|
|
|
62299
61844
|
__typename?: 'JiraFieldSetPreferences';
|
|
62300
61845
|
width?: Maybe<Scalars['Int']['output']>;
|
|
62301
61846
|
};
|
|
62302
|
-
export declare type JiraFieldSetPreferencesInput = {
|
|
62303
|
-
fieldSetId: Scalars['String']['input'];
|
|
62304
|
-
width?: InputMaybe<Scalars['Int']['input']>;
|
|
62305
|
-
};
|
|
62306
61847
|
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
62307
61848
|
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
62308
61849
|
};
|
|
@@ -62325,14 +61866,10 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
62325
61866
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62326
61867
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62327
61868
|
};
|
|
62328
|
-
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62329
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62330
|
-
};
|
|
62331
61869
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
62332
61870
|
export declare type JiraFieldSetsMutationInput = {
|
|
62333
61871
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
62334
61872
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62335
|
-
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
62336
61873
|
};
|
|
62337
61874
|
export declare type JiraFieldSetsViewMetadata = {
|
|
62338
61875
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -62347,9 +61884,6 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
62347
61884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62348
61885
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62349
61886
|
};
|
|
62350
|
-
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62351
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62352
|
-
};
|
|
62353
61887
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
62354
61888
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
62355
61889
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63164,7 +62698,7 @@ export declare type JiraGroup = Node & {
|
|
|
63164
62698
|
name: Scalars['String']['output'];
|
|
63165
62699
|
};
|
|
63166
62700
|
export declare type JiraGroupByDropdownFilter = {
|
|
63167
|
-
projectId?: InputMaybe<Scalars['
|
|
62701
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
63168
62702
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
63169
62703
|
};
|
|
63170
62704
|
export declare type JiraGroupConnection = {
|
|
@@ -63198,7 +62732,6 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
63198
62732
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63199
62733
|
jql?: Maybe<Scalars['String']['output']>;
|
|
63200
62734
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
63201
|
-
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
63202
62735
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
63203
62736
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
63204
62737
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -63222,9 +62755,6 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
63222
62755
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63223
62756
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63224
62757
|
};
|
|
63225
|
-
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
63226
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63227
|
-
};
|
|
63228
62758
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
63229
62759
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
63230
62760
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -64763,9 +64293,6 @@ export declare type JiraIssueSearchScope = {
|
|
|
64763
64293
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
64764
64294
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
64765
64295
|
};
|
|
64766
|
-
export declare type JiraIssueSearchSettings = {
|
|
64767
|
-
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64768
|
-
};
|
|
64769
64296
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
64770
64297
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64771
64298
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -64794,9 +64321,6 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
64794
64321
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64795
64322
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64796
64323
|
};
|
|
64797
|
-
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64798
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64799
|
-
};
|
|
64800
64324
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
64801
64325
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
64802
64326
|
};
|
|
@@ -64884,9 +64408,6 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64884
64408
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64885
64409
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64886
64410
|
};
|
|
64887
|
-
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64888
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64889
|
-
};
|
|
64890
64411
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64891
64412
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64892
64413
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -66123,7 +65644,6 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
66123
65644
|
issues?: Maybe<JiraIssueConnection>;
|
|
66124
65645
|
jql?: Maybe<Scalars['String']['output']>;
|
|
66125
65646
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
66126
|
-
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
66127
65647
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
66128
65648
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
66129
65649
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -66136,9 +65656,6 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
66136
65656
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66137
65657
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
66138
65658
|
};
|
|
66139
|
-
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
66140
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
66141
|
-
};
|
|
66142
65659
|
export declare type JiraListViewIssuesArgs = {
|
|
66143
65660
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66144
65661
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66154,7 +65671,6 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
66154
65671
|
export declare type JiraListViewViewSettingsArgs = {
|
|
66155
65672
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
66156
65673
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
66157
|
-
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
66158
65674
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
66159
65675
|
};
|
|
66160
65676
|
export declare type JiraLongRunningTaskProgress = {
|
|
@@ -68421,7 +67937,6 @@ export declare type JiraPlaybook = Node & {
|
|
|
68421
67937
|
__typename?: 'JiraPlaybook';
|
|
68422
67938
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
68423
67939
|
id: Scalars['ID']['output'];
|
|
68424
|
-
jql?: Maybe<Scalars['String']['output']>;
|
|
68425
67940
|
name?: Maybe<Scalars['String']['output']>;
|
|
68426
67941
|
owner?: Maybe<User>;
|
|
68427
67942
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -68442,13 +67957,6 @@ export declare type JiraPlaybookEdge = {
|
|
|
68442
67957
|
cursor: Scalars['String']['output'];
|
|
68443
67958
|
node?: Maybe<JiraPlaybook>;
|
|
68444
67959
|
};
|
|
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
67960
|
export declare type JiraPlaybookFilter = {
|
|
68453
67961
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68454
67962
|
};
|
|
@@ -68579,46 +68087,6 @@ export declare enum JiraPlaybookStepType {
|
|
|
68579
68087
|
AutomationRule = "AUTOMATION_RULE",
|
|
68580
68088
|
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
68581
68089
|
}
|
|
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
68090
|
export declare enum JiraPlaybooksSortBy {
|
|
68623
68091
|
Name = "NAME"
|
|
68624
68092
|
}
|
|
@@ -69496,7 +68964,6 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
69496
68964
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
69497
68965
|
mostRecent?: Maybe<JiraProject>;
|
|
69498
68966
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69499
|
-
otherItems?: Maybe<JiraProjectConnection>;
|
|
69500
68967
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
69501
68968
|
recents?: Maybe<JiraProjectConnection>;
|
|
69502
68969
|
};
|
|
@@ -69514,10 +68981,6 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
69514
68981
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69515
68982
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69516
68983
|
};
|
|
69517
|
-
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69518
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69519
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69520
|
-
};
|
|
69521
68984
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
69522
68985
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69523
68986
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69696,7 +69159,6 @@ export declare type JiraQuery = {
|
|
|
69696
69159
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
69697
69160
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
69698
69161
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
69699
|
-
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
69700
69162
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69701
69163
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
69702
69164
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -70423,9 +69885,6 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
70423
69885
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
70424
69886
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
70425
69887
|
};
|
|
70426
|
-
export declare type JiraQueryLabelsInBoardArgs = {
|
|
70427
|
-
boardId: Scalars['ID']['input'];
|
|
70428
|
-
};
|
|
70429
69888
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
70430
69889
|
cloudId: Scalars['ID']['input'];
|
|
70431
69890
|
};
|
|
@@ -71632,10 +71091,6 @@ export declare type JiraScmRepository = {
|
|
|
71632
71091
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
71633
71092
|
name?: Maybe<Scalars['String']['output']>;
|
|
71634
71093
|
};
|
|
71635
|
-
export declare type JiraScopedResetFieldsetsInput = {
|
|
71636
|
-
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71637
|
-
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71638
|
-
};
|
|
71639
71094
|
export declare type JiraScreen = Node & {
|
|
71640
71095
|
__typename?: 'JiraScreen';
|
|
71641
71096
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -73011,15 +72466,6 @@ export declare type JiraSetFieldAssociationWithIssueTypesPayload = Payload & {
|
|
|
73011
72466
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
73012
72467
|
success: Scalars['Boolean']['output'];
|
|
73013
72468
|
};
|
|
73014
|
-
export declare type JiraSetFieldSetsPreferencesInput = {
|
|
73015
|
-
fieldSetsPreferences?: InputMaybe<Array<JiraFieldSetPreferencesInput>>;
|
|
73016
|
-
viewId: Scalars['ID']['input'];
|
|
73017
|
-
};
|
|
73018
|
-
export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
73019
|
-
__typename?: 'JiraSetFieldSetsPreferencesPayload';
|
|
73020
|
-
errors?: Maybe<Array<MutationError>>;
|
|
73021
|
-
success: Scalars['Boolean']['output'];
|
|
73022
|
-
};
|
|
73023
72469
|
export declare type JiraSetIsFavouriteInput = {
|
|
73024
72470
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
73025
72471
|
entityId: Scalars['ID']['input'];
|
|
@@ -73515,7 +72961,6 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
73515
72961
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73516
72962
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
73517
72963
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73518
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73519
72964
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
73520
72965
|
};
|
|
73521
72966
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
@@ -73585,9 +73030,6 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
73585
73030
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73586
73031
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73587
73032
|
};
|
|
73588
|
-
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73589
|
-
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73590
|
-
};
|
|
73591
73033
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
73592
73034
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73593
73035
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -76265,63 +75707,6 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
76265
75707
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
76266
75708
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
76267
75709
|
};
|
|
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
75710
|
export declare type JsmChatAppendixActionItem = {
|
|
76326
75711
|
__typename?: 'JsmChatAppendixActionItem';
|
|
76327
75712
|
id: Scalars['String']['output'];
|
|
@@ -77732,7 +77117,6 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
77732
77117
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
77733
77118
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
77734
77119
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
77735
|
-
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
77736
77120
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
77737
77121
|
};
|
|
77738
77122
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
@@ -77833,9 +77217,6 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
77833
77217
|
id: Scalars['String']['input'];
|
|
77834
77218
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
77835
77219
|
};
|
|
77836
|
-
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
77837
|
-
ids: Array<Scalars['ID']['input']>;
|
|
77838
|
-
};
|
|
77839
77220
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
77840
77221
|
cloudId: Scalars['String']['input'];
|
|
77841
77222
|
};
|
|
@@ -77919,20 +77300,6 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
|
77919
77300
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77920
77301
|
updatedAt: Scalars['String']['output'];
|
|
77921
77302
|
};
|
|
77922
|
-
export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
77923
|
-
__typename?: 'KnowledgeDiscoveryTopicByAri';
|
|
77924
|
-
description: Scalars['String']['output'];
|
|
77925
|
-
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77926
|
-
id: Scalars['ID']['output'];
|
|
77927
|
-
name: Scalars['String']['output'];
|
|
77928
|
-
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77929
|
-
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77930
|
-
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77931
|
-
updatedAt: Scalars['String']['output'];
|
|
77932
|
-
};
|
|
77933
|
-
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77934
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77935
|
-
};
|
|
77936
77303
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
77937
77304
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
77938
77305
|
Area = "AREA",
|
|
@@ -78314,12 +77681,6 @@ export declare type LoomComment = Node & {
|
|
|
78314
77681
|
video?: Maybe<LoomVideo>;
|
|
78315
77682
|
videoId: Scalars['ID']['output'];
|
|
78316
77683
|
};
|
|
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
77684
|
export declare type LoomMeeting = Node & {
|
|
78324
77685
|
__typename?: 'LoomMeeting';
|
|
78325
77686
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -78923,7 +78284,6 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
78923
78284
|
};
|
|
78924
78285
|
export declare type MarketplaceAppVersionFilter = {
|
|
78925
78286
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78926
|
-
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
78927
78287
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
78928
78288
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
78929
78289
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -79167,10 +78527,6 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
|
79167
78527
|
userKey?: InputMaybe<Scalars['ID']['input']>;
|
|
79168
78528
|
versionNumber: Scalars['ID']['input'];
|
|
79169
78529
|
};
|
|
79170
|
-
export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
79171
|
-
Commercial = "COMMERCIAL",
|
|
79172
|
-
FedrampModerate = "FEDRAMP_MODERATE"
|
|
79173
|
-
}
|
|
79174
78530
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
79175
78531
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
79176
78532
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -79654,7 +79010,6 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
79654
79010
|
};
|
|
79655
79011
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
79656
79012
|
appKey: Scalars['ID']['input'];
|
|
79657
|
-
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
79658
79013
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
79659
79014
|
};
|
|
79660
79015
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -80337,10 +79692,6 @@ export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
|
80337
79692
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
80338
79693
|
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
80339
79694
|
};
|
|
80340
|
-
export declare type MarketplaceStoreApprovalDetails = {
|
|
80341
|
-
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
80342
|
-
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
80343
|
-
};
|
|
80344
79695
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
80345
79696
|
Cloud = "CLOUD",
|
|
80346
79697
|
Datacenter = "DATACENTER",
|
|
@@ -80516,7 +79867,6 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
80516
79867
|
}
|
|
80517
79868
|
export declare type MarketplaceStoreEdition = {
|
|
80518
79869
|
__typename?: 'MarketplaceStoreEdition';
|
|
80519
|
-
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
80520
79870
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
80521
79871
|
id: Scalars['ID']['output'];
|
|
80522
79872
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -81768,7 +81118,6 @@ export declare type MercuryFocusArea = Node & {
|
|
|
81768
81118
|
ari: Scalars['String']['output'];
|
|
81769
81119
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
81770
81120
|
createdDate: Scalars['String']['output'];
|
|
81771
|
-
draft: Scalars['Boolean']['output'];
|
|
81772
81121
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
81773
81122
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
81774
81123
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
@@ -83849,30 +83198,12 @@ export declare type Mutation = {
|
|
|
83849
83198
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
83850
83199
|
appStorage?: Maybe<AppStorageMutation>;
|
|
83851
83200
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
83852
|
-
appStorage_admin?: Maybe<AppStorageAdminMutation>;
|
|
83853
83201
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
83854
83202
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
83855
83203
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
83856
83204
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
83857
83205
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
83858
83206
|
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
83207
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
83877
83208
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
83878
83209
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -83891,6 +83222,7 @@ export declare type Mutation = {
|
|
|
83891
83222
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
83892
83223
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
83893
83224
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
83225
|
+
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
83894
83226
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
83895
83227
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
83896
83228
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -84145,7 +83477,6 @@ export declare type Mutation = {
|
|
|
84145
83477
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
84146
83478
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
84147
83479
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
84148
|
-
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
84149
83480
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
84150
83481
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
84151
83482
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -84232,13 +83563,10 @@ export declare type Mutation = {
|
|
|
84232
83563
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
84233
83564
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
84234
83565
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
84235
|
-
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
84236
83566
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
84237
83567
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
84238
|
-
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
84239
83568
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
84240
83569
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
84241
|
-
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
84242
83570
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
84243
83571
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
84244
83572
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
@@ -84254,7 +83582,6 @@ export declare type Mutation = {
|
|
|
84254
83582
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
84255
83583
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
84256
83584
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
84257
|
-
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
84258
83585
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
84259
83586
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
84260
83587
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
@@ -84308,7 +83635,6 @@ export declare type Mutation = {
|
|
|
84308
83635
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
84309
83636
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
84310
83637
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
84311
|
-
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
84312
83638
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
84313
83639
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84314
83640
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
@@ -84387,7 +83713,6 @@ export declare type Mutation = {
|
|
|
84387
83713
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
84388
83714
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84389
83715
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
84390
|
-
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
84391
83716
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84392
83717
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84393
83718
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -84397,8 +83722,10 @@ export declare type Mutation = {
|
|
|
84397
83722
|
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84398
83723
|
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84399
83724
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
83725
|
+
spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
|
|
84400
83726
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84401
83727
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
83728
|
+
spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
|
|
84402
83729
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
84403
83730
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
84404
83731
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -84570,9 +83897,6 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
84570
83897
|
containerId: Scalars['String']['input'];
|
|
84571
83898
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
84572
83899
|
};
|
|
84573
|
-
export declare type MutationAppStorage_AdminArgs = {
|
|
84574
|
-
appId: Scalars['ID']['input'];
|
|
84575
|
-
};
|
|
84576
83900
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
84577
83901
|
input: ApplyPolarisProjectTemplateInput;
|
|
84578
83902
|
};
|
|
@@ -84592,57 +83916,6 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
84592
83916
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
84593
83917
|
input: ReattachInlineCommentInput;
|
|
84594
83918
|
};
|
|
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
83919
|
export declare type MutationBoardCardMoveArgs = {
|
|
84647
83920
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
84648
83921
|
};
|
|
@@ -84678,10 +83951,11 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
84678
83951
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
84679
83952
|
};
|
|
84680
83953
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
84681
|
-
|
|
83954
|
+
meetingId?: InputMaybe<Scalars['String']['input']>;
|
|
84682
83955
|
};
|
|
84683
83956
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
84684
83957
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83958
|
+
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
84685
83959
|
};
|
|
84686
83960
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
84687
83961
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84702,6 +83976,9 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
84702
83976
|
export declare type MutationCompleteSprintArgs = {
|
|
84703
83977
|
input?: InputMaybe<CompleteSprintInput>;
|
|
84704
83978
|
};
|
|
83979
|
+
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
83980
|
+
input: ConfigurePolarisRefreshInput;
|
|
83981
|
+
};
|
|
84705
83982
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
84706
83983
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
84707
83984
|
};
|
|
@@ -85543,11 +84820,6 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
85543
84820
|
helpCenterAri: Scalars['ID']['input'];
|
|
85544
84821
|
input: CsmAiUpdateHandoffConfigInput;
|
|
85545
84822
|
};
|
|
85546
|
-
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85547
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
85548
|
-
input: CsmAiWidgetUpdateInput;
|
|
85549
|
-
widgetId: Scalars['ID']['input'];
|
|
85550
|
-
};
|
|
85551
84823
|
export declare type MutationCustomerServiceArgs = {
|
|
85552
84824
|
cloudId: Scalars['ID']['input'];
|
|
85553
84825
|
};
|
|
@@ -85745,7 +85017,6 @@ export declare type MutationEnablePublicLinkForPageArgs = {
|
|
|
85745
85017
|
pageId: Scalars['ID']['input'];
|
|
85746
85018
|
};
|
|
85747
85019
|
export declare type MutationFavouritePageArgs = {
|
|
85748
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85749
85020
|
favouritePageInput: FavouritePageInput;
|
|
85750
85021
|
};
|
|
85751
85022
|
export declare type MutationFavouriteSpaceArgs = {
|
|
@@ -85800,10 +85071,6 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
85800
85071
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
85801
85072
|
input: JiraCreateCustomBackgroundInput;
|
|
85802
85073
|
};
|
|
85803
|
-
export declare type MutationJira_CreateFieldSchemeArgs = {
|
|
85804
|
-
cloudId: Scalars['ID']['input'];
|
|
85805
|
-
input: JiraCreateFieldSchemeInput;
|
|
85806
|
-
};
|
|
85807
85074
|
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
85808
85075
|
cloudId: Scalars['ID']['input'];
|
|
85809
85076
|
input: JiraCreateGlobalCustomFieldInput;
|
|
@@ -85811,20 +85078,12 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
85811
85078
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
85812
85079
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
85813
85080
|
};
|
|
85814
|
-
export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
85815
|
-
cloudId: Scalars['ID']['input'];
|
|
85816
|
-
input: JiraDeleteFieldSchemeInput;
|
|
85817
|
-
};
|
|
85818
85081
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
85819
85082
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
85820
85083
|
};
|
|
85821
85084
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
85822
85085
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
85823
85086
|
};
|
|
85824
|
-
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
85825
|
-
cloudId: Scalars['ID']['input'];
|
|
85826
|
-
input: JiraEditFieldSchemeInput;
|
|
85827
|
-
};
|
|
85828
85087
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
85829
85088
|
input: JiraPublishBoardViewConfigInput;
|
|
85830
85089
|
};
|
|
@@ -85871,9 +85130,6 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
85871
85130
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
85872
85131
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
85873
85132
|
};
|
|
85874
|
-
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
85875
|
-
input: JiraSetFieldSetsPreferencesInput;
|
|
85876
|
-
};
|
|
85877
85133
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
85878
85134
|
input: JiraSetIssueSearchGroupByInput;
|
|
85879
85135
|
};
|
|
@@ -86011,10 +85267,6 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
86011
85267
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
86012
85268
|
id: Scalars['String']['input'];
|
|
86013
85269
|
};
|
|
86014
|
-
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
86015
|
-
cloudId: Scalars['ID']['input'];
|
|
86016
|
-
input: Array<RadarClearFocusAreaProposalInput>;
|
|
86017
|
-
};
|
|
86018
85270
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
86019
85271
|
cloudId: Scalars['ID']['input'];
|
|
86020
85272
|
input: RadarCustomFieldInput;
|
|
@@ -86265,9 +85517,6 @@ export declare type MutationSpf_CreateDependencyArgs = {
|
|
|
86265
85517
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
86266
85518
|
input: SpfDeleteAskInput;
|
|
86267
85519
|
};
|
|
86268
|
-
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
86269
|
-
input: SpfDeleteAskLinkInput;
|
|
86270
|
-
};
|
|
86271
85520
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
86272
85521
|
input: SpfDeleteDependencyInput;
|
|
86273
85522
|
};
|
|
@@ -86295,12 +85544,18 @@ export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
|
86295
85544
|
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
86296
85545
|
input: SpfUpdateAskReceivingTeamInput;
|
|
86297
85546
|
};
|
|
85547
|
+
export declare type MutationSpf_UpdateAskStatusArgs = {
|
|
85548
|
+
input: SpfUpdateAskStatusInput;
|
|
85549
|
+
};
|
|
86298
85550
|
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
86299
85551
|
input: SpfUpdateAskSubmitterInput;
|
|
86300
85552
|
};
|
|
86301
85553
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
86302
85554
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
86303
85555
|
};
|
|
85556
|
+
export declare type MutationSpf_UpdateAskTargetDateArgs = {
|
|
85557
|
+
input: SpfUpdateAskTargetDateInput;
|
|
85558
|
+
};
|
|
86304
85559
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
86305
85560
|
input: SpfUpdateCommentDataInput;
|
|
86306
85561
|
};
|
|
@@ -86375,7 +85630,6 @@ export declare type MutationUnassignIssueParentArgs = {
|
|
|
86375
85630
|
input?: InputMaybe<UnassignIssueParentInput>;
|
|
86376
85631
|
};
|
|
86377
85632
|
export declare type MutationUnfavouritePageArgs = {
|
|
86378
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86379
85633
|
favouritePageInput: FavouritePageInput;
|
|
86380
85634
|
};
|
|
86381
85635
|
export declare type MutationUnfavouriteSpaceArgs = {
|
|
@@ -86397,7 +85651,6 @@ export declare type MutationUnwatchBlogsArgs = {
|
|
|
86397
85651
|
watchSpaceInput: WatchSpaceInput;
|
|
86398
85652
|
};
|
|
86399
85653
|
export declare type MutationUnwatchContentArgs = {
|
|
86400
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86401
85654
|
watchContentInput: WatchContentInput;
|
|
86402
85655
|
};
|
|
86403
85656
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
@@ -86610,7 +85863,6 @@ export declare type MutationWatchBlogsArgs = {
|
|
|
86610
85863
|
watchSpaceInput: WatchSpaceInput;
|
|
86611
85864
|
};
|
|
86612
85865
|
export declare type MutationWatchContentArgs = {
|
|
86613
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86614
85866
|
watchContentInput: WatchContentInput;
|
|
86615
85867
|
};
|
|
86616
85868
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
@@ -86943,7 +86195,6 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
86943
86195
|
clientInfo?: Maybe<OAuthClientsClientInfo>;
|
|
86944
86196
|
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
86945
86197
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
86946
|
-
scopesInfo?: Maybe<Array<OAuthClientsScopeInfo>>;
|
|
86947
86198
|
};
|
|
86948
86199
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
86949
86200
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -86965,11 +86216,6 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
86965
86216
|
};
|
|
86966
86217
|
export declare type OAuthClientsClientInfo = {
|
|
86967
86218
|
__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
86219
|
clientId: Scalars['String']['output'];
|
|
86974
86220
|
clientName?: Maybe<Scalars['String']['output']>;
|
|
86975
86221
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -86988,11 +86234,6 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
86988
86234
|
description?: Maybe<Scalars['String']['output']>;
|
|
86989
86235
|
key: Scalars['String']['output'];
|
|
86990
86236
|
};
|
|
86991
|
-
export declare type OAuthClientsScopeInfo = {
|
|
86992
|
-
__typename?: 'OAuthClientsScopeInfo';
|
|
86993
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
86994
|
-
key: Scalars['String']['output'];
|
|
86995
|
-
};
|
|
86996
86237
|
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
86997
86238
|
contextIds: Array<Scalars['ID']['input']>;
|
|
86998
86239
|
extensionId: Scalars['ID']['input'];
|
|
@@ -89421,13 +88662,8 @@ export declare type Query = {
|
|
|
89421
88662
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
89422
88663
|
apps?: Maybe<AppConnection>;
|
|
89423
88664
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89424
|
-
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89425
|
-
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89426
|
-
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89427
88665
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
89428
88666
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
89429
|
-
avp_getChart?: Maybe<AvpChart>;
|
|
89430
|
-
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
89431
88667
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
89432
88668
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
89433
88669
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -89446,7 +88682,6 @@ export declare type Query = {
|
|
|
89446
88682
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
89447
88683
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
89448
88684
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
89449
|
-
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
89450
88685
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
89451
88686
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
89452
88687
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
@@ -89717,7 +88952,6 @@ export declare type Query = {
|
|
|
89717
88952
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
89718
88953
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
89719
88954
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89720
|
-
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89721
88955
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
89722
88956
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
89723
88957
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -89875,15 +89109,11 @@ export declare type Query = {
|
|
|
89875
89109
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
89876
89110
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
89877
89111
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89878
|
-
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
89879
|
-
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
89880
89112
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
89881
89113
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
89882
89114
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
89883
89115
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
89884
89116
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
89885
|
-
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
89886
|
-
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
89887
89117
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
89888
89118
|
jsw?: Maybe<JswQuery>;
|
|
89889
89119
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -89901,7 +89131,6 @@ export declare type Query = {
|
|
|
89901
89131
|
loom_comment?: Maybe<LoomComment>;
|
|
89902
89132
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
89903
89133
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
89904
|
-
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
89905
89134
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
89906
89135
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
89907
89136
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -89967,7 +89196,6 @@ export declare type Query = {
|
|
|
89967
89196
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
89968
89197
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89969
89198
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89970
|
-
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
89971
89199
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
89972
89200
|
pokemon?: Maybe<PokemonQuery>;
|
|
89973
89201
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -90328,27 +89556,12 @@ export declare type QueryAppsArgs = {
|
|
|
90328
89556
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
90329
89557
|
cloudId: Scalars['ID']['input'];
|
|
90330
89558
|
};
|
|
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
89559
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
90341
89560
|
cloudId: Scalars['ID']['input'];
|
|
90342
89561
|
};
|
|
90343
89562
|
export declare type QueryAvailableContentStatesArgs = {
|
|
90344
89563
|
contentId: Scalars['ID']['input'];
|
|
90345
89564
|
};
|
|
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
89565
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
90353
89566
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90354
89567
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90421,9 +89634,6 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
90421
89634
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
90422
89635
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90423
89636
|
};
|
|
90424
|
-
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90425
|
-
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
90426
|
-
};
|
|
90427
89637
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
90428
89638
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90429
89639
|
};
|
|
@@ -91649,11 +90859,6 @@ export declare type QueryContentWatchersArgs = {
|
|
|
91649
90859
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91650
90860
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
91651
90861
|
};
|
|
91652
|
-
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91653
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
91654
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91655
|
-
projectId: Scalars['ID']['input'];
|
|
91656
|
-
};
|
|
91657
90862
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
91658
90863
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91659
90864
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92216,18 +91421,6 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
92216
91421
|
cloudId: Scalars['ID']['input'];
|
|
92217
91422
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92218
91423
|
};
|
|
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
91424
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
92232
91425
|
cloudId: Scalars['ID']['input'];
|
|
92233
91426
|
};
|
|
@@ -92245,15 +91438,6 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
92245
91438
|
cloudId: Scalars['ID']['input'];
|
|
92246
91439
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
92247
91440
|
};
|
|
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
91441
|
export declare type QueryKnowledgeBaseArgs = {
|
|
92258
91442
|
cloudId: Scalars['ID']['input'];
|
|
92259
91443
|
};
|
|
@@ -92296,12 +91480,6 @@ export declare type QueryLoom_CreateSpaceArgs = {
|
|
|
92296
91480
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
92297
91481
|
siteId: Scalars['ID']['input'];
|
|
92298
91482
|
};
|
|
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
91483
|
export declare type QueryLoom_MeetingArgs = {
|
|
92306
91484
|
id: Scalars['ID']['input'];
|
|
92307
91485
|
};
|
|
@@ -92495,14 +91673,6 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
92495
91673
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92496
91674
|
cloudId: Scalars['ID']['input'];
|
|
92497
91675
|
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
91676
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92507
91677
|
projectKey: Scalars['String']['input'];
|
|
92508
91678
|
};
|
|
@@ -92667,7 +91837,7 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
92667
91837
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92668
91838
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
92669
91839
|
cloudId: Scalars['ID']['input'];
|
|
92670
|
-
entity
|
|
91840
|
+
entity: RadarPositionsByEntityType;
|
|
92671
91841
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92672
91842
|
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
92673
91843
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -93073,9 +92243,6 @@ export declare type QueryUserGroupSearchArgs = {
|
|
|
93073
92243
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
93074
92244
|
sitePermissionTypeFilter?: InputMaybe<SitePermissionTypeFilter>;
|
|
93075
92245
|
};
|
|
93076
|
-
export declare type QueryUserPreferencesArgs = {
|
|
93077
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
93078
|
-
};
|
|
93079
92246
|
export declare type QueryUserWithContentRestrictionsArgs = {
|
|
93080
92247
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
93081
92248
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -93235,9 +92402,6 @@ export declare type RadarBooleanFieldValue = {
|
|
|
93235
92402
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
93236
92403
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
93237
92404
|
};
|
|
93238
|
-
export declare type RadarClearFocusAreaProposalInput = {
|
|
93239
|
-
proposalAri: Scalars['ID']['input'];
|
|
93240
|
-
};
|
|
93241
92405
|
export declare type RadarConnection = {
|
|
93242
92406
|
pageInfo: PageInfo;
|
|
93243
92407
|
totalCount: Scalars['Int']['output'];
|
|
@@ -93715,8 +92879,6 @@ export declare enum RateLimitingCurrency {
|
|
|
93715
92879
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
93716
92880
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
93717
92881
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
93718
|
-
DevConsoleMutationCurrency = "DEV_CONSOLE_MUTATION_CURRENCY",
|
|
93719
|
-
DevConsoleQueryCurrency = "DEV_CONSOLE_QUERY_CURRENCY",
|
|
93720
92882
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
93721
92883
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
93722
92884
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -99069,7 +98231,6 @@ export declare type SpfAsk = Node & {
|
|
|
99069
98231
|
submittingTeam?: Maybe<TeamV2>;
|
|
99070
98232
|
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
99071
98233
|
targetDate?: Maybe<SpfAskTargetDate>;
|
|
99072
|
-
transitions?: Maybe<Array<Maybe<SpfAskTransition>>>;
|
|
99073
98234
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99074
98235
|
updatedBy?: Maybe<User>;
|
|
99075
98236
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -99167,12 +98328,6 @@ export declare enum SpfAskTargetDateType {
|
|
|
99167
98328
|
Month = "MONTH",
|
|
99168
98329
|
Quarter = "QUARTER"
|
|
99169
98330
|
}
|
|
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
98331
|
export declare type SpfAttachAskLinkInput = {
|
|
99177
98332
|
askId: Scalars['ID']['input'];
|
|
99178
98333
|
url: Scalars['URL']['input'];
|
|
@@ -99277,15 +98432,6 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
99277
98432
|
export declare type SpfDeleteAskInput = {
|
|
99278
98433
|
id: Scalars['ID']['input'];
|
|
99279
98434
|
};
|
|
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
98435
|
export declare type SpfDeleteAskPayload = Payload & {
|
|
99290
98436
|
__typename?: 'SpfDeleteAskPayload';
|
|
99291
98437
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -99445,6 +98591,10 @@ export declare type SpfUpdateAskReceivingTeamInput = {
|
|
|
99445
98591
|
id: Scalars['ID']['input'];
|
|
99446
98592
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99447
98593
|
};
|
|
98594
|
+
export declare type SpfUpdateAskStatusInput = {
|
|
98595
|
+
id: Scalars['ID']['input'];
|
|
98596
|
+
status: SpfAskStatus;
|
|
98597
|
+
};
|
|
99448
98598
|
export declare type SpfUpdateAskSubmitterInput = {
|
|
99449
98599
|
id: Scalars['ID']['input'];
|
|
99450
98600
|
submitterId: Scalars['String']['input'];
|
|
@@ -99453,6 +98603,10 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
99453
98603
|
id: Scalars['ID']['input'];
|
|
99454
98604
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99455
98605
|
};
|
|
98606
|
+
export declare type SpfUpdateAskTargetDateInput = {
|
|
98607
|
+
id: Scalars['ID']['input'];
|
|
98608
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
98609
|
+
};
|
|
99456
98610
|
export declare type SpfUpdateCommentDataInput = {
|
|
99457
98611
|
data: Scalars['String']['input'];
|
|
99458
98612
|
id: Scalars['ID']['input'];
|
|
@@ -100780,7 +99934,6 @@ export declare type TenantContext = {
|
|
|
100780
99934
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
100781
99935
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
100782
99936
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100783
|
-
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
100784
99937
|
};
|
|
100785
99938
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
100786
99939
|
product: Scalars['String']['input'];
|
|
@@ -103072,7 +102225,6 @@ export declare enum TrelloCardBatchStatus {
|
|
|
103072
102225
|
export declare type TrelloCardClause = {
|
|
103073
102226
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
103074
102227
|
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
103075
|
-
ids?: InputMaybe<TrelloCardIdsClause>;
|
|
103076
102228
|
list?: InputMaybe<TrelloCardListClause>;
|
|
103077
102229
|
};
|
|
103078
102230
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -103181,9 +102333,6 @@ export declare enum TrelloCardExternalSource {
|
|
|
103181
102333
|
Siri = "SIRI",
|
|
103182
102334
|
Slack = "SLACK"
|
|
103183
102335
|
}
|
|
103184
|
-
export declare type TrelloCardIdsClause = {
|
|
103185
|
-
cards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103186
|
-
};
|
|
103187
102336
|
export declare type TrelloCardLabelEdgeUpdated = {
|
|
103188
102337
|
__typename?: 'TrelloCardLabelEdgeUpdated';
|
|
103189
102338
|
node: TrelloLabelId;
|
|
@@ -103330,7 +102479,6 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
103330
102479
|
};
|
|
103331
102480
|
export declare type TrelloChecklistDeleted = {
|
|
103332
102481
|
__typename?: 'TrelloChecklistDeleted';
|
|
103333
|
-
id: Scalars['ID']['output'];
|
|
103334
102482
|
objectId: Scalars['ID']['output'];
|
|
103335
102483
|
};
|
|
103336
102484
|
export declare type TrelloChecklistEdge = {
|
|
@@ -104088,7 +103236,6 @@ export declare type TrelloMutationApi = {
|
|
|
104088
103236
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
104089
103237
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
104090
103238
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
104091
|
-
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
104092
103239
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
104093
103240
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
104094
103241
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -104136,9 +103283,6 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
104136
103283
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
104137
103284
|
input: TrelloPinCardInput;
|
|
104138
103285
|
};
|
|
104139
|
-
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
104140
|
-
input: TrelloRemoveBoardStarInput;
|
|
104141
|
-
};
|
|
104142
103286
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
104143
103287
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
104144
103288
|
};
|
|
@@ -104771,15 +103915,6 @@ export declare type TrelloReactionLimits = {
|
|
|
104771
103915
|
perAction?: Maybe<TrelloLimitProps>;
|
|
104772
103916
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
104773
103917
|
};
|
|
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
103918
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
104784
103919
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
104785
103920
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -106307,7 +105442,6 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
106307
105442
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
106308
105443
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106309
105444
|
id: Scalars['ID']['input'];
|
|
106310
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106311
105445
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106312
105446
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106313
105447
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106316,7 +105450,6 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
106316
105450
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106317
105451
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
106318
105452
|
id: Scalars['ID']['input'];
|
|
106319
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106320
105453
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106321
105454
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106322
105455
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106325,7 +105458,6 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
106325
105458
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106326
105459
|
id: Scalars['ID']['input'];
|
|
106327
105460
|
linkType?: InputMaybe<CompassLinkType>;
|
|
106328
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106329
105461
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106330
105462
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106331
105463
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -106339,7 +105471,6 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
106339
105471
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106340
105472
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
106341
105473
|
id: Scalars['ID']['input'];
|
|
106342
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106343
105474
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
106344
105475
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106345
105476
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -106348,7 +105479,6 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
106348
105479
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
106349
105480
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106350
105481
|
id: Scalars['ID']['input'];
|
|
106351
|
-
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106352
105482
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106353
105483
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106354
105484
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106620,7 +105750,6 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
106620
105750
|
export declare type UpdateJiraPlaybookInput = {
|
|
106621
105751
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
106622
105752
|
id: Scalars['ID']['input'];
|
|
106623
|
-
jql?: InputMaybe<Scalars['String']['input']>;
|
|
106624
105753
|
name: Scalars['String']['input'];
|
|
106625
105754
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
106626
105755
|
scopeType: JiraPlaybookScopeType;
|