@forge/cli-shared 8.0.1-next.2 → 8.0.1-next.3-experimental-4048b4a
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 +22 -0
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +4 -1
- package/out/apps/template.js +1 -1
- package/out/graphql/graphql-types.d.ts +690 -374
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +86 -116
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/package.json +2 -2
|
@@ -123,6 +123,350 @@ export declare type AiConfigResponse = {
|
|
|
123
123
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
124
124
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
125
125
|
};
|
|
126
|
+
export declare type AvpAddDashboardElementInput = {
|
|
127
|
+
canvasRowId: Scalars['ID']['input'];
|
|
128
|
+
dashboardAri: Scalars['ID']['input'];
|
|
129
|
+
insertIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
130
|
+
};
|
|
131
|
+
export declare type AvpAddDashboardElementPayload = Payload & {
|
|
132
|
+
__typename?: 'AVPAddDashboardElementPayload';
|
|
133
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
134
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135
|
+
success: Scalars['Boolean']['output'];
|
|
136
|
+
};
|
|
137
|
+
export declare type AvpAddDashboardRowInput = {
|
|
138
|
+
dashboardAri: Scalars['ID']['input'];
|
|
139
|
+
height?: InputMaybe<AvpCanvasRowHeight>;
|
|
140
|
+
numElements?: InputMaybe<Scalars['Int']['input']>;
|
|
141
|
+
rowIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
142
|
+
};
|
|
143
|
+
export declare type AvpAddDashboardRowPayload = Payload & {
|
|
144
|
+
__typename?: 'AVPAddDashboardRowPayload';
|
|
145
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
146
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147
|
+
success: Scalars['Boolean']['output'];
|
|
148
|
+
};
|
|
149
|
+
export declare enum AvpCanvasRowHeight {
|
|
150
|
+
Large = "large",
|
|
151
|
+
Medium = "medium",
|
|
152
|
+
Small = "small",
|
|
153
|
+
Xsmall = "xsmall"
|
|
154
|
+
}
|
|
155
|
+
export declare type AvpChart = {
|
|
156
|
+
__typename?: 'AVPChart';
|
|
157
|
+
chartConfig?: Maybe<AvpChartConfig>;
|
|
158
|
+
chartLayout?: Maybe<AvpChartLayout>;
|
|
159
|
+
chartType?: Maybe<Scalars['String']['output']>;
|
|
160
|
+
envVarId?: Maybe<Scalars['ID']['output']>;
|
|
161
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
162
|
+
pipelineId?: Maybe<Scalars['ID']['output']>;
|
|
163
|
+
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
164
|
+
};
|
|
165
|
+
export declare type AvpChartClientSettings = {
|
|
166
|
+
__typename?: 'AVPChartClientSettings';
|
|
167
|
+
options?: Maybe<Array<AvpChartSetting>>;
|
|
168
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
169
|
+
};
|
|
170
|
+
export declare type AvpChartClientSettingsInput = {
|
|
171
|
+
options?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
172
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
+
};
|
|
174
|
+
export declare type AvpChartConfig = {
|
|
175
|
+
__typename?: 'AVPChartConfig';
|
|
176
|
+
clientSettings?: Maybe<AvpChartClientSettings>;
|
|
177
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
178
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
179
|
+
settings?: Maybe<Array<AvpChartSetting>>;
|
|
180
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
181
|
+
};
|
|
182
|
+
export declare type AvpChartConfigInput = {
|
|
183
|
+
clientSettings?: InputMaybe<AvpChartClientSettingsInput>;
|
|
184
|
+
settings?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
185
|
+
};
|
|
186
|
+
export declare type AvpChartInput = {
|
|
187
|
+
chartConfig?: InputMaybe<AvpChartConfigInput>;
|
|
188
|
+
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
189
|
+
envVarId?: InputMaybe<Scalars['ID']['input']>;
|
|
190
|
+
pipelineId?: InputMaybe<Scalars['ID']['input']>;
|
|
191
|
+
templateChartId?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
};
|
|
193
|
+
export declare type AvpChartLayout = {
|
|
194
|
+
__typename?: 'AVPChartLayout';
|
|
195
|
+
blocksHigh?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
blocksWide?: Maybe<Scalars['Int']['output']>;
|
|
197
|
+
x?: Maybe<Scalars['Int']['output']>;
|
|
198
|
+
y?: Maybe<Scalars['Int']['output']>;
|
|
199
|
+
z?: Maybe<Scalars['Int']['output']>;
|
|
200
|
+
};
|
|
201
|
+
export declare type AvpChartSetting = {
|
|
202
|
+
__typename?: 'AVPChartSetting';
|
|
203
|
+
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
204
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
205
|
+
};
|
|
206
|
+
export declare type AvpChartSettingInput = {
|
|
207
|
+
jsonValue?: InputMaybe<Scalars['String']['input']>;
|
|
208
|
+
name: Scalars['String']['input'];
|
|
209
|
+
};
|
|
210
|
+
export declare type AvpClearChartInRowPayload = Payload & {
|
|
211
|
+
__typename?: 'AVPClearChartInRowPayload';
|
|
212
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
213
|
+
errors?: Maybe<Array<MutationError>>;
|
|
214
|
+
success: Scalars['Boolean']['output'];
|
|
215
|
+
};
|
|
216
|
+
export declare type AvpClearChartsInRowInput = {
|
|
217
|
+
dashboardAri: Scalars['ID']['input'];
|
|
218
|
+
rowId: Scalars['ID']['input'];
|
|
219
|
+
};
|
|
220
|
+
export declare type AvpCopyChartInput = {
|
|
221
|
+
chartAri: Scalars['ID']['input'];
|
|
222
|
+
};
|
|
223
|
+
export declare type AvpCopyChartPayload = Payload & {
|
|
224
|
+
__typename?: 'AVPCopyChartPayload';
|
|
225
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
226
|
+
chart?: Maybe<AvpChart>;
|
|
227
|
+
errors?: Maybe<Array<MutationError>>;
|
|
228
|
+
success: Scalars['Boolean']['output'];
|
|
229
|
+
};
|
|
230
|
+
export declare type AvpCopyDashboardRowInput = {
|
|
231
|
+
dashboardAri: Scalars['ID']['input'];
|
|
232
|
+
rowId: Scalars['ID']['input'];
|
|
233
|
+
};
|
|
234
|
+
export declare type AvpCopyDashboardRowPayload = Payload & {
|
|
235
|
+
__typename?: 'AVPCopyDashboardRowPayload';
|
|
236
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
237
|
+
charts?: Maybe<Array<AvpChart>>;
|
|
238
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239
|
+
success: Scalars['Boolean']['output'];
|
|
240
|
+
};
|
|
241
|
+
export declare type AvpCreateChartInput = {
|
|
242
|
+
canvasElementId?: InputMaybe<Scalars['ID']['input']>;
|
|
243
|
+
chart: AvpChartInput;
|
|
244
|
+
dashboardAri: Scalars['ID']['input'];
|
|
245
|
+
};
|
|
246
|
+
export declare type AvpCreateChartPayload = Payload & {
|
|
247
|
+
__typename?: 'AVPCreateChartPayload';
|
|
248
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
249
|
+
chart?: Maybe<AvpChart>;
|
|
250
|
+
errors?: Maybe<Array<MutationError>>;
|
|
251
|
+
success: Scalars['Boolean']['output'];
|
|
252
|
+
};
|
|
253
|
+
export declare type AvpDashboard = {
|
|
254
|
+
__typename?: 'AVPDashboard';
|
|
255
|
+
access?: Maybe<Scalars['Int']['output']>;
|
|
256
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
257
|
+
charts?: Maybe<Array<AvpChart>>;
|
|
258
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
259
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
260
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
261
|
+
envVars?: Maybe<Array<AvpEnvVar>>;
|
|
262
|
+
fromTemplate?: Maybe<Scalars['String']['output']>;
|
|
263
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
264
|
+
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
265
|
+
settings?: Maybe<AvpDashboardSettings>;
|
|
266
|
+
status?: Maybe<AvpDashboardStatus>;
|
|
267
|
+
templateVersion?: Maybe<Scalars['Int']['output']>;
|
|
268
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
269
|
+
trashedAt?: Maybe<Scalars['String']['output']>;
|
|
270
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
271
|
+
};
|
|
272
|
+
export declare type AvpDashboardCanvasLayout = {
|
|
273
|
+
__typename?: 'AVPDashboardCanvasLayout';
|
|
274
|
+
controlIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
275
|
+
rows?: Maybe<Array<AvpDashboardCanvasLayoutRow>>;
|
|
276
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
277
|
+
};
|
|
278
|
+
export declare type AvpDashboardCanvasLayoutElement = {
|
|
279
|
+
__typename?: 'AVPDashboardCanvasLayoutElement';
|
|
280
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
281
|
+
item?: Maybe<AvpDashboardCanvasLayoutItem>;
|
|
282
|
+
span?: Maybe<Scalars['Int']['output']>;
|
|
283
|
+
};
|
|
284
|
+
export declare type AvpDashboardCanvasLayoutItem = {
|
|
285
|
+
__typename?: 'AVPDashboardCanvasLayoutItem';
|
|
286
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
287
|
+
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
288
|
+
};
|
|
289
|
+
export declare type AvpDashboardCanvasLayoutRow = {
|
|
290
|
+
__typename?: 'AVPDashboardCanvasLayoutRow';
|
|
291
|
+
elements?: Maybe<Array<AvpDashboardCanvasLayoutElement>>;
|
|
292
|
+
height?: Maybe<AvpCanvasRowHeight>;
|
|
293
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
294
|
+
};
|
|
295
|
+
export declare type AvpDashboardInput = {
|
|
296
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
297
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
298
|
+
settings?: InputMaybe<AvpDashboardSettingsInput>;
|
|
299
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
300
|
+
};
|
|
301
|
+
export declare type AvpDashboardSettings = {
|
|
302
|
+
__typename?: 'AVPDashboardSettings';
|
|
303
|
+
allowTzOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
304
|
+
allowViewerRefresh?: Maybe<Scalars['Boolean']['output']>;
|
|
305
|
+
autoApplyVars?: Maybe<Scalars['Boolean']['output']>;
|
|
306
|
+
autoRefreshInterval?: Maybe<Scalars['Int']['output']>;
|
|
307
|
+
cacheDuration?: Maybe<Scalars['Int']['output']>;
|
|
308
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
309
|
+
refreshMethod?: Maybe<AvpRefreshMethod>;
|
|
310
|
+
subscriptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
311
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
312
|
+
};
|
|
313
|
+
export declare type AvpDashboardSettingsInput = {
|
|
314
|
+
allowTzOverride?: InputMaybe<Scalars['Boolean']['input']>;
|
|
315
|
+
allowViewerRefresh?: InputMaybe<Scalars['Boolean']['input']>;
|
|
316
|
+
autoApplyVars?: InputMaybe<Scalars['Boolean']['input']>;
|
|
317
|
+
autoRefreshInterval?: InputMaybe<Scalars['Int']['input']>;
|
|
318
|
+
cacheDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
319
|
+
refreshMethod?: InputMaybe<AvpRefreshMethod>;
|
|
320
|
+
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
321
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
322
|
+
};
|
|
323
|
+
export declare enum AvpDashboardStatus {
|
|
324
|
+
Active = "ACTIVE",
|
|
325
|
+
Archived = "ARCHIVED",
|
|
326
|
+
Trashed = "TRASHED"
|
|
327
|
+
}
|
|
328
|
+
export declare type AvpDeleteChartInput = {
|
|
329
|
+
chartAri: Scalars['ID']['input'];
|
|
330
|
+
};
|
|
331
|
+
export declare type AvpDeleteChartPayload = Payload & {
|
|
332
|
+
__typename?: 'AVPDeleteChartPayload';
|
|
333
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
335
|
+
success: Scalars['Boolean']['output'];
|
|
336
|
+
};
|
|
337
|
+
export declare type AvpEnvVar = {
|
|
338
|
+
__typename?: 'AVPEnvVar';
|
|
339
|
+
chartId?: Maybe<Scalars['ID']['output']>;
|
|
340
|
+
dataType?: Maybe<AvpEnvVarDataType>;
|
|
341
|
+
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
342
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
343
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
344
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
345
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
346
|
+
};
|
|
347
|
+
export declare enum AvpEnvVarDataType {
|
|
348
|
+
Boolean = "BOOLEAN",
|
|
349
|
+
Date = "DATE",
|
|
350
|
+
Datetime = "DATETIME",
|
|
351
|
+
DateRange = "DATE_RANGE",
|
|
352
|
+
Number = "NUMBER",
|
|
353
|
+
NumberRange = "NUMBER_RANGE",
|
|
354
|
+
Text = "TEXT"
|
|
355
|
+
}
|
|
356
|
+
export declare type AvpMoveCanvasElementInput = {
|
|
357
|
+
dashboardAri: Scalars['ID']['input'];
|
|
358
|
+
sourceElementId: Scalars['ID']['input'];
|
|
359
|
+
sourceRowId: Scalars['ID']['input'];
|
|
360
|
+
targetElementIndex: Scalars['Int']['input'];
|
|
361
|
+
targetRowId: Scalars['ID']['input'];
|
|
362
|
+
};
|
|
363
|
+
export declare type AvpMoveCanvasElementPayload = Payload & {
|
|
364
|
+
__typename?: 'AVPMoveCanvasElementPayload';
|
|
365
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
367
|
+
success: Scalars['Boolean']['output'];
|
|
368
|
+
};
|
|
369
|
+
export declare type AvpMoveCanvasElementToNewRowInput = {
|
|
370
|
+
dashboardAri: Scalars['ID']['input'];
|
|
371
|
+
sourceElementId: Scalars['ID']['input'];
|
|
372
|
+
sourceRowId: Scalars['ID']['input'];
|
|
373
|
+
targetRowIndex: Scalars['Int']['input'];
|
|
374
|
+
};
|
|
375
|
+
export declare type AvpMoveCanvasElementToNewRowPayload = Payload & {
|
|
376
|
+
__typename?: 'AVPMoveCanvasElementToNewRowPayload';
|
|
377
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
379
|
+
success: Scalars['Boolean']['output'];
|
|
380
|
+
};
|
|
381
|
+
export declare type AvpMoveDashboardRowInput = {
|
|
382
|
+
dashboardAri: Scalars['ID']['input'];
|
|
383
|
+
sourceRowId: Scalars['ID']['input'];
|
|
384
|
+
targetRowIndex: Scalars['Int']['input'];
|
|
385
|
+
};
|
|
386
|
+
export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
387
|
+
__typename?: 'AVPMoveDashboardRowPayload';
|
|
388
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
389
|
+
errors?: Maybe<Array<MutationError>>;
|
|
390
|
+
success: Scalars['Boolean']['output'];
|
|
391
|
+
};
|
|
392
|
+
export declare enum AvpRefreshMethod {
|
|
393
|
+
RefreshAuto = "REFRESH_AUTO",
|
|
394
|
+
RefreshLoad = "REFRESH_LOAD",
|
|
395
|
+
RefreshManual = "REFRESH_MANUAL",
|
|
396
|
+
RefreshSmart = "REFRESH_SMART"
|
|
397
|
+
}
|
|
398
|
+
export declare type AvpRemoveDashboardElementInput = {
|
|
399
|
+
canvasElementId: Scalars['ID']['input'];
|
|
400
|
+
dashboardAri: Scalars['ID']['input'];
|
|
401
|
+
};
|
|
402
|
+
export declare type AvpRemoveDashboardElementPayload = Payload & {
|
|
403
|
+
__typename?: 'AVPRemoveDashboardElementPayload';
|
|
404
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
406
|
+
success: Scalars['Boolean']['output'];
|
|
407
|
+
};
|
|
408
|
+
export declare type AvpRemoveDashboardRowInput = {
|
|
409
|
+
dashboardAri: Scalars['ID']['input'];
|
|
410
|
+
rowId: Scalars['ID']['input'];
|
|
411
|
+
};
|
|
412
|
+
export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
413
|
+
__typename?: 'AVPRemoveDashboardRowPayload';
|
|
414
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
415
|
+
errors?: Maybe<Array<MutationError>>;
|
|
416
|
+
success: Scalars['Boolean']['output'];
|
|
417
|
+
};
|
|
418
|
+
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
419
|
+
dashboardAri: Scalars['ID']['input'];
|
|
420
|
+
elementId: Scalars['ID']['input'];
|
|
421
|
+
};
|
|
422
|
+
export declare type AvpToggleCanvasElementExpandedPayload = Payload & {
|
|
423
|
+
__typename?: 'AVPToggleCanvasElementExpandedPayload';
|
|
424
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
425
|
+
errors?: Maybe<Array<MutationError>>;
|
|
426
|
+
success: Scalars['Boolean']['output'];
|
|
427
|
+
};
|
|
428
|
+
export declare type AvpUpdateChartInput = {
|
|
429
|
+
chart: AvpChartInput;
|
|
430
|
+
chartAri: Scalars['ID']['input'];
|
|
431
|
+
};
|
|
432
|
+
export declare type AvpUpdateChartPayload = Payload & {
|
|
433
|
+
__typename?: 'AVPUpdateChartPayload';
|
|
434
|
+
chart?: Maybe<AvpChart>;
|
|
435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
436
|
+
success: Scalars['Boolean']['output'];
|
|
437
|
+
};
|
|
438
|
+
export declare type AvpUpdateDashboardInput = {
|
|
439
|
+
dashboard: AvpDashboardInput;
|
|
440
|
+
dashboardAri: Scalars['ID']['input'];
|
|
441
|
+
};
|
|
442
|
+
export declare type AvpUpdateDashboardPayload = Payload & {
|
|
443
|
+
__typename?: 'AVPUpdateDashboardPayload';
|
|
444
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
446
|
+
success: Scalars['Boolean']['output'];
|
|
447
|
+
};
|
|
448
|
+
export declare type AvpUpdateDashboardRowHeightInput = {
|
|
449
|
+
dashboardAri: Scalars['ID']['input'];
|
|
450
|
+
height: AvpCanvasRowHeight;
|
|
451
|
+
rowId: Scalars['ID']['input'];
|
|
452
|
+
};
|
|
453
|
+
export declare type AvpUpdateDashboardRowHeightPayload = Payload & {
|
|
454
|
+
__typename?: 'AVPUpdateDashboardRowHeightPayload';
|
|
455
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
457
|
+
success: Scalars['Boolean']['output'];
|
|
458
|
+
};
|
|
459
|
+
export declare type AvpUpdateDashboardRowNumElementsInput = {
|
|
460
|
+
dashboardAri: Scalars['ID']['input'];
|
|
461
|
+
numElements: Scalars['Int']['input'];
|
|
462
|
+
rowId: Scalars['ID']['input'];
|
|
463
|
+
};
|
|
464
|
+
export declare type AvpUpdateDashboardRowNumElementsPayload = Payload & {
|
|
465
|
+
__typename?: 'AVPUpdateDashboardRowNumElementsPayload';
|
|
466
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
467
|
+
errors?: Maybe<Array<MutationError>>;
|
|
468
|
+
success: Scalars['Boolean']['output'];
|
|
469
|
+
};
|
|
126
470
|
export declare enum AcceptableResponse {
|
|
127
471
|
False = "FALSE",
|
|
128
472
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -853,6 +1197,7 @@ export declare type AgentStudioAgentEdge = {
|
|
|
853
1197
|
};
|
|
854
1198
|
export declare type AgentStudioAgentQueryInput = {
|
|
855
1199
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
+
onlyCodingAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
856
1201
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
857
1202
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
858
1203
|
};
|
|
@@ -5512,6 +5857,13 @@ export declare enum ChannelPlatformMutationStatus {
|
|
|
5512
5857
|
Failure = "FAILURE",
|
|
5513
5858
|
Success = "SUCCESS"
|
|
5514
5859
|
}
|
|
5860
|
+
export declare enum ChannelPlatformParticipantRole {
|
|
5861
|
+
Agent = "AGENT",
|
|
5862
|
+
Customer = "CUSTOMER",
|
|
5863
|
+
CustomBot = "CUSTOM_BOT",
|
|
5864
|
+
Supervisor = "SUPERVISOR",
|
|
5865
|
+
System = "SYSTEM"
|
|
5866
|
+
}
|
|
5515
5867
|
export declare type ChannelPlatformPluginActionRequest = {
|
|
5516
5868
|
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
5517
5869
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5522,6 +5874,10 @@ export declare type ChannelPlatformPluginActionResponse = {
|
|
|
5522
5874
|
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
5523
5875
|
response?: Maybe<Scalars['JSON']['output']>;
|
|
5524
5876
|
};
|
|
5877
|
+
export declare enum ChannelPlatformRole {
|
|
5878
|
+
Agent = "AGENT",
|
|
5879
|
+
Customer = "CUSTOMER"
|
|
5880
|
+
}
|
|
5525
5881
|
export declare type ChannelPlatformSampleQueue = {
|
|
5526
5882
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
5527
5883
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -5549,6 +5905,27 @@ export declare type ChannelPlatformSubmitTicketResponse = {
|
|
|
5549
5905
|
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
5550
5906
|
};
|
|
5551
5907
|
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
5908
|
+
export declare type ChannelPlatformTranscriptEntry = {
|
|
5909
|
+
__typename?: 'ChannelPlatformTranscriptEntry';
|
|
5910
|
+
contactId?: Maybe<Scalars['String']['output']>;
|
|
5911
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
5912
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
5913
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
5914
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5915
|
+
initialContactId?: Maybe<Scalars['String']['output']>;
|
|
5916
|
+
participantId?: Maybe<Scalars['String']['output']>;
|
|
5917
|
+
participantRole?: Maybe<ChannelPlatformParticipantRole>;
|
|
5918
|
+
time?: Maybe<Scalars['String']['output']>;
|
|
5919
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
5920
|
+
};
|
|
5921
|
+
export declare type ChannelPlatformTranscriptRequest = {
|
|
5922
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
5923
|
+
role?: InputMaybe<ChannelPlatformRole>;
|
|
5924
|
+
};
|
|
5925
|
+
export declare type ChannelPlatformTranscriptResponse = {
|
|
5926
|
+
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
5927
|
+
chatTranscript?: Maybe<Array<Maybe<ChannelPlatformTranscriptEntry>>>;
|
|
5928
|
+
};
|
|
5552
5929
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
5553
5930
|
cloudId: Scalars['ID']['input'];
|
|
5554
5931
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -7533,6 +7910,7 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
7533
7910
|
};
|
|
7534
7911
|
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
7535
7912
|
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
7913
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7536
7914
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7537
7915
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7538
7916
|
weight: Scalars['Int']['input'];
|
|
@@ -7565,6 +7943,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
7565
7943
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
7566
7944
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7567
7945
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7946
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7568
7947
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7569
7948
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7570
7949
|
weight: Scalars['Int']['input'];
|
|
@@ -7574,6 +7953,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7574
7953
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7575
7954
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7576
7955
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7956
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7577
7957
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7578
7958
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7579
7959
|
weight: Scalars['Int']['input'];
|
|
@@ -7581,6 +7961,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7581
7961
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
7582
7962
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7583
7963
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7964
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7584
7965
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7585
7966
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
7586
7967
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7590,6 +7971,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
7590
7971
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
7591
7972
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7592
7973
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7974
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7593
7975
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
7594
7976
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7595
7977
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7599,6 +7981,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
7599
7981
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
7600
7982
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7601
7983
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7984
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7602
7985
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7603
7986
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7604
7987
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -7608,6 +7991,7 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7608
7991
|
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
7609
7992
|
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
7610
7993
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7994
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7611
7995
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7612
7996
|
packageManager: CompassPackageDependencyManagerOptions;
|
|
7613
7997
|
packageName: Scalars['String']['input'];
|
|
@@ -9750,6 +10134,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
9750
10134
|
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
9751
10135
|
in: Array<Scalars['String']['input']>;
|
|
9752
10136
|
};
|
|
10137
|
+
export declare type CompassScorecardAppliedToComponentsMaturityLevelFilter = {
|
|
10138
|
+
maturityLevels: Array<Scalars['ID']['input']>;
|
|
10139
|
+
};
|
|
9753
10140
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
9754
10141
|
in: Array<Scalars['ID']['input']>;
|
|
9755
10142
|
};
|
|
@@ -9768,6 +10155,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
9768
10155
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
9769
10156
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
9770
10157
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
10158
|
+
scorecardMaturityLevels?: InputMaybe<CompassScorecardAppliedToComponentsMaturityLevelFilter>;
|
|
9771
10159
|
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
9772
10160
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
9773
10161
|
};
|
|
@@ -9827,6 +10215,12 @@ export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
|
9827
10215
|
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
9828
10216
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9829
10217
|
};
|
|
10218
|
+
export declare type CompassScorecardCriteriaMaturityGroupInput = {
|
|
10219
|
+
maturityLevel: CompassScorecardCriteriaMaturityLevelInput;
|
|
10220
|
+
};
|
|
10221
|
+
export declare type CompassScorecardCriteriaMaturityLevelInput = {
|
|
10222
|
+
id: Scalars['ID']['input'];
|
|
10223
|
+
};
|
|
9830
10224
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9831
10225
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9832
10226
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10378,6 +10772,11 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
10378
10772
|
since: Scalars['DateTime']['output'];
|
|
10379
10773
|
};
|
|
10380
10774
|
export declare type CompassScorecardScoreSystem = CompassScorecardMaturityLevelScoreSystem | CompassScorecardThresholdStatusScoreSystem;
|
|
10775
|
+
export declare enum CompassScorecardScoreSystemType {
|
|
10776
|
+
MaturityLevel = "MATURITY_LEVEL",
|
|
10777
|
+
ThresholdPercentageBased = "THRESHOLD_PERCENTAGE_BASED",
|
|
10778
|
+
ThresholdPointBased = "THRESHOLD_POINT_BASED"
|
|
10779
|
+
}
|
|
10381
10780
|
export declare enum CompassScorecardScoringStrategyType {
|
|
10382
10781
|
PercentageBased = "PERCENTAGE_BASED",
|
|
10383
10782
|
PointBased = "POINT_BASED",
|
|
@@ -10794,6 +11193,7 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
10794
11193
|
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
10795
11194
|
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
10796
11195
|
id: Scalars['ID']['input'];
|
|
11196
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10797
11197
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10798
11198
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10799
11199
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10804,6 +11204,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
10804
11204
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10805
11205
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10806
11206
|
id: Scalars['ID']['input'];
|
|
11207
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10807
11208
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10808
11209
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10809
11210
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10814,6 +11215,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
10814
11215
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10815
11216
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10816
11217
|
id: Scalars['ID']['input'];
|
|
11218
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10817
11219
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10818
11220
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10819
11221
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10822,6 +11224,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
10822
11224
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10823
11225
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10824
11226
|
id: Scalars['ID']['input'];
|
|
11227
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10825
11228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10826
11229
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
10827
11230
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -10832,6 +11235,7 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
10832
11235
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10833
11236
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10834
11237
|
id: Scalars['ID']['input'];
|
|
11238
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10835
11239
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
10836
11240
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10837
11241
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10842,6 +11246,7 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
10842
11246
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10843
11247
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10844
11248
|
id: Scalars['ID']['input'];
|
|
11249
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10845
11250
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10846
11251
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10847
11252
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -10852,6 +11257,7 @@ export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
|
10852
11257
|
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
10853
11258
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10854
11259
|
id: Scalars['ID']['input'];
|
|
11260
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10855
11261
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10856
11262
|
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
10857
11263
|
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21357,6 +21763,7 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
21357
21763
|
};
|
|
21358
21764
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
21359
21765
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21766
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21360
21767
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21361
21768
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21362
21769
|
weight: Scalars['Int']['input'];
|
|
@@ -21364,6 +21771,7 @@ export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
|
21364
21771
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
21365
21772
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21366
21773
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
21774
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21367
21775
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21368
21776
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21369
21777
|
weight: Scalars['Int']['input'];
|
|
@@ -21371,6 +21779,7 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
21371
21779
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
21372
21780
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21373
21781
|
linkType: CompassLinkType;
|
|
21782
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21374
21783
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21375
21784
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21376
21785
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -21383,6 +21792,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21383
21792
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
21384
21793
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21385
21794
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
21795
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21386
21796
|
metricDefinitionId: Scalars['ID']['input'];
|
|
21387
21797
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21388
21798
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -21390,6 +21800,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21390
21800
|
};
|
|
21391
21801
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
21392
21802
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21803
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21393
21804
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21394
21805
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21395
21806
|
weight: Scalars['Int']['input'];
|
|
@@ -21442,6 +21853,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
21442
21853
|
name: Scalars['String']['input'];
|
|
21443
21854
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
21444
21855
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
21856
|
+
scoreSystemType?: InputMaybe<CompassScorecardScoreSystemType>;
|
|
21445
21857
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
21446
21858
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
21447
21859
|
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
@@ -33051,8 +33463,6 @@ export declare type GraphStore = {
|
|
|
33051
33463
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
33052
33464
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
33053
33465
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
33054
|
-
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
33055
|
-
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
33056
33466
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
33057
33467
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
33058
33468
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -33068,8 +33478,6 @@ export declare type GraphStore = {
|
|
|
33068
33478
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
33069
33479
|
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
33070
33480
|
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
33071
|
-
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
33072
|
-
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
33073
33481
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
33074
33482
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
33075
33483
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -33361,6 +33769,8 @@ export declare type GraphStore = {
|
|
|
33361
33769
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
33362
33770
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
33363
33771
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
33772
|
+
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
33773
|
+
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
33364
33774
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
33365
33775
|
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
33366
33776
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
@@ -33684,8 +34094,6 @@ export declare type GraphStore = {
|
|
|
33684
34094
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
33685
34095
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
33686
34096
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
33687
|
-
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
33688
|
-
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
33689
34097
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
33690
34098
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
33691
34099
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
@@ -33891,22 +34299,6 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
33891
34299
|
id: Scalars['ID']['input'];
|
|
33892
34300
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
33893
34301
|
};
|
|
33894
|
-
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
33895
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33896
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33897
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33898
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33899
|
-
id: Scalars['ID']['input'];
|
|
33900
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33901
|
-
};
|
|
33902
|
-
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
33903
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33904
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33905
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33906
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33907
|
-
id: Scalars['ID']['input'];
|
|
33908
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33909
|
-
};
|
|
33910
34302
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
33911
34303
|
container_ids: Array<Scalars['ID']['input']>;
|
|
33912
34304
|
enabled_sources?: InputMaybe<Array<InputMaybe<GraphStoreAtlasHomeSourcesEnum>>>;
|
|
@@ -34006,22 +34398,6 @@ export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
|
34006
34398
|
id: Scalars['ID']['input'];
|
|
34007
34399
|
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
34008
34400
|
};
|
|
34009
|
-
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
34010
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34011
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34012
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
34013
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34014
|
-
id: Scalars['ID']['input'];
|
|
34015
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
34016
|
-
};
|
|
34017
|
-
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
34018
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34019
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34020
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
34021
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34022
|
-
id: Scalars['ID']['input'];
|
|
34023
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
34024
|
-
};
|
|
34025
34401
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
34026
34402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34027
34403
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35913,6 +36289,20 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
35913
36289
|
id: Scalars['ID']['input'];
|
|
35914
36290
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
35915
36291
|
};
|
|
36292
|
+
export declare type GraphStorePrHasCommentArgs = {
|
|
36293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36294
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36296
|
+
id: Scalars['ID']['input'];
|
|
36297
|
+
sort?: InputMaybe<GraphStorePrHasCommentSortInput>;
|
|
36298
|
+
};
|
|
36299
|
+
export declare type GraphStorePrHasCommentInverseArgs = {
|
|
36300
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36301
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36303
|
+
id: Scalars['ID']['input'];
|
|
36304
|
+
sort?: InputMaybe<GraphStorePrHasCommentSortInput>;
|
|
36305
|
+
};
|
|
35916
36306
|
export declare type GraphStorePrInProviderRepoArgs = {
|
|
35917
36307
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35918
36308
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38114,20 +38504,6 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
38114
38504
|
id: Scalars['ID']['input'];
|
|
38115
38505
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
38116
38506
|
};
|
|
38117
|
-
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
38118
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38119
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38120
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38121
|
-
id: Scalars['ID']['input'];
|
|
38122
|
-
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
38123
|
-
};
|
|
38124
|
-
export declare type GraphStoreUserSnapshottedConfluencePageInverseArgs = {
|
|
38125
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38126
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38127
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38128
|
-
id: Scalars['ID']['input'];
|
|
38129
|
-
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
38130
|
-
};
|
|
38131
38507
|
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
38132
38508
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38133
38509
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38834,107 +39210,6 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
38834
39210
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
38835
39211
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38836
39212
|
};
|
|
38837
|
-
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
38838
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38839
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38840
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38841
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38842
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38843
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38844
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38845
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
38846
|
-
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38847
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
38848
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38849
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
38850
|
-
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38851
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
38852
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38853
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
38854
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38855
|
-
};
|
|
38856
|
-
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
38857
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38858
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38859
|
-
};
|
|
38860
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
38861
|
-
Day = "DAY",
|
|
38862
|
-
Month = "MONTH",
|
|
38863
|
-
NotSet = "NOT_SET",
|
|
38864
|
-
Quarter = "QUARTER"
|
|
38865
|
-
}
|
|
38866
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
38867
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38868
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38869
|
-
};
|
|
38870
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
38871
|
-
AtRisk = "AT_RISK",
|
|
38872
|
-
Cancelled = "CANCELLED",
|
|
38873
|
-
Done = "DONE",
|
|
38874
|
-
NotSet = "NOT_SET",
|
|
38875
|
-
OffTrack = "OFF_TRACK",
|
|
38876
|
-
OnTrack = "ON_TRACK",
|
|
38877
|
-
Paused = "PAUSED",
|
|
38878
|
-
Pending = "PENDING"
|
|
38879
|
-
}
|
|
38880
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
38881
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38882
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38883
|
-
};
|
|
38884
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
38885
|
-
Day = "DAY",
|
|
38886
|
-
Month = "MONTH",
|
|
38887
|
-
NotSet = "NOT_SET",
|
|
38888
|
-
Null = "NULL",
|
|
38889
|
-
Quarter = "QUARTER"
|
|
38890
|
-
}
|
|
38891
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
38892
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38893
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38894
|
-
};
|
|
38895
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
38896
|
-
AtRisk = "AT_RISK",
|
|
38897
|
-
Cancelled = "CANCELLED",
|
|
38898
|
-
Done = "DONE",
|
|
38899
|
-
NotSet = "NOT_SET",
|
|
38900
|
-
Null = "NULL",
|
|
38901
|
-
OffTrack = "OFF_TRACK",
|
|
38902
|
-
OnTrack = "ON_TRACK",
|
|
38903
|
-
Paused = "PAUSED",
|
|
38904
|
-
Pending = "PENDING"
|
|
38905
|
-
}
|
|
38906
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
38907
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38908
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38909
|
-
};
|
|
38910
|
-
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
38911
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38912
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38913
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38914
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38915
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38916
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38917
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38918
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38919
|
-
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
38920
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38921
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38922
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38923
|
-
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
38924
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38925
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38926
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38927
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38928
|
-
};
|
|
38929
|
-
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
38930
|
-
NotSet = "NOT_SET",
|
|
38931
|
-
System = "SYSTEM",
|
|
38932
|
-
User = "USER"
|
|
38933
|
-
}
|
|
38934
|
-
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
38935
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38936
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38937
|
-
};
|
|
38938
39213
|
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38939
39214
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38940
39215
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
@@ -39004,103 +39279,6 @@ export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
|
39004
39279
|
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
39005
39280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39006
39281
|
};
|
|
39007
|
-
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
39008
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
39009
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
39010
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
39011
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
39012
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
39013
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
39014
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
39015
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
39016
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
39017
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
39018
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
39019
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
39020
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
39021
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
39022
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
39023
|
-
};
|
|
39024
|
-
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
39025
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
39026
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
39027
|
-
};
|
|
39028
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
39029
|
-
Day = "DAY",
|
|
39030
|
-
Month = "MONTH",
|
|
39031
|
-
NotSet = "NOT_SET",
|
|
39032
|
-
Quarter = "QUARTER"
|
|
39033
|
-
}
|
|
39034
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
39035
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
39036
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
39037
|
-
};
|
|
39038
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
39039
|
-
AtRisk = "AT_RISK",
|
|
39040
|
-
Cancelled = "CANCELLED",
|
|
39041
|
-
Done = "DONE",
|
|
39042
|
-
NotSet = "NOT_SET",
|
|
39043
|
-
OffTrack = "OFF_TRACK",
|
|
39044
|
-
OnTrack = "ON_TRACK",
|
|
39045
|
-
Paused = "PAUSED",
|
|
39046
|
-
Pending = "PENDING"
|
|
39047
|
-
}
|
|
39048
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
39049
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
39050
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
39051
|
-
};
|
|
39052
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
39053
|
-
Day = "DAY",
|
|
39054
|
-
Month = "MONTH",
|
|
39055
|
-
NotSet = "NOT_SET",
|
|
39056
|
-
Null = "NULL",
|
|
39057
|
-
Quarter = "QUARTER"
|
|
39058
|
-
}
|
|
39059
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
39060
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
39061
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
39062
|
-
};
|
|
39063
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
39064
|
-
AtRisk = "AT_RISK",
|
|
39065
|
-
Cancelled = "CANCELLED",
|
|
39066
|
-
Done = "DONE",
|
|
39067
|
-
NotSet = "NOT_SET",
|
|
39068
|
-
Null = "NULL",
|
|
39069
|
-
OffTrack = "OFF_TRACK",
|
|
39070
|
-
OnTrack = "ON_TRACK",
|
|
39071
|
-
Paused = "PAUSED",
|
|
39072
|
-
Pending = "PENDING"
|
|
39073
|
-
}
|
|
39074
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
39075
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
39076
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
39077
|
-
};
|
|
39078
|
-
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
39079
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39080
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
39081
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39082
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
39083
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
39084
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
39085
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
39086
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
39087
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
39088
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
39089
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
39090
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
39091
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
39092
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
39093
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39094
|
-
};
|
|
39095
|
-
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
39096
|
-
NotSet = "NOT_SET",
|
|
39097
|
-
System = "SYSTEM",
|
|
39098
|
-
User = "USER"
|
|
39099
|
-
}
|
|
39100
|
-
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
39101
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
39102
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
39103
|
-
};
|
|
39104
39282
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
39105
39283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39106
39284
|
};
|
|
@@ -40394,7 +40572,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40394
40572
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40395
40573
|
id: Scalars['ID']['output'];
|
|
40396
40574
|
};
|
|
40397
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40575
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40398
40576
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40399
40577
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40400
40578
|
value: Scalars['Int']['output'];
|
|
@@ -40429,7 +40607,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40429
40607
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40430
40608
|
id: Scalars['ID']['output'];
|
|
40431
40609
|
};
|
|
40432
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40610
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40433
40611
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40434
40612
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40435
40613
|
value: Scalars['String']['output'];
|
|
@@ -40439,19 +40617,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40439
40617
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40440
40618
|
id: Scalars['ID']['output'];
|
|
40441
40619
|
};
|
|
40442
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40620
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40443
40621
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40444
40622
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40445
40623
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40446
40624
|
id: Scalars['ID']['output'];
|
|
40447
40625
|
};
|
|
40448
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40626
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40449
40627
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40450
40628
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40451
40629
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40452
40630
|
id: Scalars['ID']['output'];
|
|
40453
40631
|
};
|
|
40454
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40632
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40455
40633
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40456
40634
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40457
40635
|
value: Scalars['Boolean']['output'];
|
|
@@ -40550,7 +40728,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40550
40728
|
V2 = "V2",
|
|
40551
40729
|
V3 = "V3"
|
|
40552
40730
|
}
|
|
40553
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40731
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40554
40732
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40555
40733
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40556
40734
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41748,6 +41926,7 @@ export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
41748
41926
|
};
|
|
41749
41927
|
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
41750
41928
|
Declined = "DECLINED",
|
|
41929
|
+
Draft = "DRAFT",
|
|
41751
41930
|
Merged = "MERGED",
|
|
41752
41931
|
NotSet = "NOT_SET",
|
|
41753
41932
|
Open = "OPEN",
|
|
@@ -42296,6 +42475,7 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUn
|
|
|
42296
42475
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
42297
42476
|
Archive = "ARCHIVE",
|
|
42298
42477
|
Audio = "AUDIO",
|
|
42478
|
+
Blogpost = "BLOGPOST",
|
|
42299
42479
|
Code = "CODE",
|
|
42300
42480
|
Document = "DOCUMENT",
|
|
42301
42481
|
Folder = "FOLDER",
|
|
@@ -42303,11 +42483,13 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
42303
42483
|
Image = "IMAGE",
|
|
42304
42484
|
NotSet = "NOT_SET",
|
|
42305
42485
|
Other = "OTHER",
|
|
42486
|
+
Page = "PAGE",
|
|
42306
42487
|
Pdf = "PDF",
|
|
42307
42488
|
Presentation = "PRESENTATION",
|
|
42308
42489
|
Shortcut = "SHORTCUT",
|
|
42309
42490
|
Spreadsheet = "SPREADSHEET",
|
|
42310
|
-
Video = "VIDEO"
|
|
42491
|
+
Video = "VIDEO",
|
|
42492
|
+
WebPage = "WEB_PAGE"
|
|
42311
42493
|
}
|
|
42312
42494
|
export declare type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
42313
42495
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
@@ -42415,6 +42597,7 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
42415
42597
|
};
|
|
42416
42598
|
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
42417
42599
|
Declined = "DECLINED",
|
|
42600
|
+
Draft = "DRAFT",
|
|
42418
42601
|
Merged = "MERGED",
|
|
42419
42602
|
NotSet = "NOT_SET",
|
|
42420
42603
|
Open = "OPEN",
|
|
@@ -42758,6 +42941,7 @@ export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
42758
42941
|
};
|
|
42759
42942
|
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
42760
42943
|
Declined = "DECLINED",
|
|
42944
|
+
Draft = "DRAFT",
|
|
42761
42945
|
Merged = "MERGED",
|
|
42762
42946
|
NotSet = "NOT_SET",
|
|
42763
42947
|
Open = "OPEN",
|
|
@@ -43583,6 +43767,7 @@ export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
43583
43767
|
};
|
|
43584
43768
|
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
43585
43769
|
Declined = "DECLINED",
|
|
43770
|
+
Draft = "DRAFT",
|
|
43586
43771
|
Merged = "MERGED",
|
|
43587
43772
|
NotSet = "NOT_SET",
|
|
43588
43773
|
Open = "OPEN",
|
|
@@ -45030,6 +45215,9 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
45030
45215
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
45031
45216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45032
45217
|
};
|
|
45218
|
+
export declare type GraphStorePrHasCommentSortInput = {
|
|
45219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45220
|
+
};
|
|
45033
45221
|
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
45034
45222
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
45035
45223
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -45279,6 +45467,7 @@ export declare type GraphStoreProjectAssociatedPrFilterInput = {
|
|
|
45279
45467
|
};
|
|
45280
45468
|
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
45281
45469
|
Declined = "DECLINED",
|
|
45470
|
+
Draft = "DRAFT",
|
|
45282
45471
|
Merged = "MERGED",
|
|
45283
45472
|
NotSet = "NOT_SET",
|
|
45284
45473
|
Open = "OPEN",
|
|
@@ -45815,38 +46004,6 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
45815
46004
|
};
|
|
45816
46005
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
45817
46006
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
45818
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45819
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
45820
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
45821
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45822
|
-
pageInfo: PageInfo;
|
|
45823
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45824
|
-
};
|
|
45825
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
45826
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
45827
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45828
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45829
|
-
id: Scalars['ID']['output'];
|
|
45830
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45831
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
45832
|
-
};
|
|
45833
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45834
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
45835
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
45836
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45837
|
-
pageInfo: PageInfo;
|
|
45838
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45839
|
-
};
|
|
45840
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
45841
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
45842
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45843
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45844
|
-
id: Scalars['ID']['output'];
|
|
45845
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45846
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
45847
|
-
};
|
|
45848
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
45849
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
45850
46007
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
45851
46008
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
45852
46009
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -46015,38 +46172,6 @@ export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge
|
|
|
46015
46172
|
};
|
|
46016
46173
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
46017
46174
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
46018
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
46019
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
46020
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
46021
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46022
|
-
pageInfo: PageInfo;
|
|
46023
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46024
|
-
};
|
|
46025
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
46026
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
46027
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46028
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46029
|
-
id: Scalars['ID']['output'];
|
|
46030
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46031
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
46032
|
-
};
|
|
46033
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
46034
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
46035
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
46036
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46037
|
-
pageInfo: PageInfo;
|
|
46038
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46039
|
-
};
|
|
46040
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
46041
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
46042
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46043
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46044
|
-
id: Scalars['ID']['output'];
|
|
46045
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46046
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
46047
|
-
};
|
|
46048
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
46049
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
46050
46175
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
46051
46176
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
46052
46177
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -48837,6 +48962,34 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
48837
48962
|
};
|
|
48838
48963
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
48839
48964
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion = MercuryFocusArea;
|
|
48965
|
+
export declare type GraphStoreSimplifiedPrHasCommentConnection = HasPageInfo & {
|
|
48966
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentConnection';
|
|
48967
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrHasCommentEdge>>>;
|
|
48968
|
+
pageInfo: PageInfo;
|
|
48969
|
+
};
|
|
48970
|
+
export declare type GraphStoreSimplifiedPrHasCommentEdge = {
|
|
48971
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentEdge';
|
|
48972
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48973
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48974
|
+
id: Scalars['ID']['output'];
|
|
48975
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48976
|
+
node?: Maybe<GraphStoreSimplifiedPrHasCommentUnion>;
|
|
48977
|
+
};
|
|
48978
|
+
export declare type GraphStoreSimplifiedPrHasCommentInverseConnection = HasPageInfo & {
|
|
48979
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentInverseConnection';
|
|
48980
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrHasCommentInverseEdge>>>;
|
|
48981
|
+
pageInfo: PageInfo;
|
|
48982
|
+
};
|
|
48983
|
+
export declare type GraphStoreSimplifiedPrHasCommentInverseEdge = {
|
|
48984
|
+
__typename?: 'GraphStoreSimplifiedPrHasCommentInverseEdge';
|
|
48985
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48986
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48987
|
+
id: Scalars['ID']['output'];
|
|
48988
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48989
|
+
node?: Maybe<GraphStoreSimplifiedPrHasCommentInverseUnion>;
|
|
48990
|
+
};
|
|
48991
|
+
export declare type GraphStoreSimplifiedPrHasCommentInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
48992
|
+
export declare type GraphStoreSimplifiedPrHasCommentUnion = ExternalComment;
|
|
48840
48993
|
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
48841
48994
|
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
48842
48995
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
@@ -52479,34 +52632,6 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
52479
52632
|
};
|
|
52480
52633
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
52481
52634
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
52482
|
-
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
52483
|
-
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
52484
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
52485
|
-
pageInfo: PageInfo;
|
|
52486
|
-
};
|
|
52487
|
-
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageEdge = {
|
|
52488
|
-
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageEdge';
|
|
52489
|
-
createdAt: Scalars['DateTime']['output'];
|
|
52490
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
52491
|
-
id: Scalars['ID']['output'];
|
|
52492
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
52493
|
-
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageUnion>;
|
|
52494
|
-
};
|
|
52495
|
-
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection = HasPageInfo & {
|
|
52496
|
-
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection';
|
|
52497
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge>>>;
|
|
52498
|
-
pageInfo: PageInfo;
|
|
52499
|
-
};
|
|
52500
|
-
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge = {
|
|
52501
|
-
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge';
|
|
52502
|
-
createdAt: Scalars['DateTime']['output'];
|
|
52503
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
52504
|
-
id: Scalars['ID']['output'];
|
|
52505
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
52506
|
-
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion>;
|
|
52507
|
-
};
|
|
52508
|
-
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
52509
|
-
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageUnion = ConfluencePage;
|
|
52510
52635
|
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
52511
52636
|
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
52512
52637
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
@@ -53697,6 +53822,7 @@ export declare type GraphStoreSprintAssociatedPrFilterInput = {
|
|
|
53697
53822
|
};
|
|
53698
53823
|
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
53699
53824
|
Declined = "DECLINED",
|
|
53825
|
+
Draft = "DRAFT",
|
|
53700
53826
|
Merged = "MERGED",
|
|
53701
53827
|
NotSet = "NOT_SET",
|
|
53702
53828
|
Open = "OPEN",
|
|
@@ -54177,9 +54303,6 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
54177
54303
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
54178
54304
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54179
54305
|
};
|
|
54180
|
-
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
54181
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54182
|
-
};
|
|
54183
54306
|
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
54184
54307
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54185
54308
|
};
|
|
@@ -62127,6 +62250,30 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
62127
62250
|
Allow = "ALLOW",
|
|
62128
62251
|
Exclude = "EXCLUDE"
|
|
62129
62252
|
}
|
|
62253
|
+
export declare type JiraFieldSchemeAssociatedField = {
|
|
62254
|
+
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
62255
|
+
field?: Maybe<JiraField>;
|
|
62256
|
+
id: Scalars['ID']['output'];
|
|
62257
|
+
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
62258
|
+
};
|
|
62259
|
+
export declare type JiraFieldSchemeAssociatedFieldsConnection = {
|
|
62260
|
+
__typename?: 'JiraFieldSchemeAssociatedFieldsConnection';
|
|
62261
|
+
edges?: Maybe<Array<Maybe<JiraFieldSchemeAssociatedFieldsEdge>>>;
|
|
62262
|
+
pageInfo: PageInfo;
|
|
62263
|
+
};
|
|
62264
|
+
export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
62265
|
+
__typename?: 'JiraFieldSchemeAssociatedFieldsEdge';
|
|
62266
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62267
|
+
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
62268
|
+
};
|
|
62269
|
+
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
62270
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62271
|
+
schemeId: Scalars['ID']['input'];
|
|
62272
|
+
};
|
|
62273
|
+
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
62274
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62275
|
+
schemeId: Scalars['ID']['input'];
|
|
62276
|
+
};
|
|
62130
62277
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
62131
62278
|
__typename?: 'JiraFieldSchemePayload';
|
|
62132
62279
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -68436,6 +68583,46 @@ export declare enum JiraPlaybookStepType {
|
|
|
68436
68583
|
AutomationRule = "AUTOMATION_RULE",
|
|
68437
68584
|
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
68438
68585
|
}
|
|
68586
|
+
export declare type JiraPlaybookStepUsage = Node & {
|
|
68587
|
+
__typename?: 'JiraPlaybookStepUsage';
|
|
68588
|
+
avgExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68589
|
+
failedStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68590
|
+
id: Scalars['ID']['output'];
|
|
68591
|
+
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68592
|
+
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68593
|
+
ownerAccountId?: Maybe<Scalars['String']['output']>;
|
|
68594
|
+
playbookName?: Maybe<Scalars['String']['output']>;
|
|
68595
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
68596
|
+
stepType?: Maybe<JiraPlaybookStepType>;
|
|
68597
|
+
successfulStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68598
|
+
totalStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68599
|
+
uniqueAgentCount?: Maybe<Scalars['Long']['output']>;
|
|
68600
|
+
uniqueIssueCount?: Maybe<Scalars['Long']['output']>;
|
|
68601
|
+
};
|
|
68602
|
+
export declare type JiraPlaybookStepUsageConnection = HasPageInfo & QueryPayload & {
|
|
68603
|
+
__typename?: 'JiraPlaybookStepUsageConnection';
|
|
68604
|
+
edges?: Maybe<Array<JiraPlaybookStepUsageEdge>>;
|
|
68605
|
+
errors?: Maybe<Array<QueryError>>;
|
|
68606
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
68607
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
68608
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
68609
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookStepUsage>>>;
|
|
68610
|
+
pageInfo: PageInfo;
|
|
68611
|
+
success: Scalars['Boolean']['output'];
|
|
68612
|
+
};
|
|
68613
|
+
export declare type JiraPlaybookStepUsageEdge = {
|
|
68614
|
+
__typename?: 'JiraPlaybookStepUsageEdge';
|
|
68615
|
+
cursor: Scalars['String']['output'];
|
|
68616
|
+
node?: Maybe<JiraPlaybookStepUsage>;
|
|
68617
|
+
};
|
|
68618
|
+
export declare type JiraPlaybookStepUsageFilter = {
|
|
68619
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68620
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68621
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68622
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
68623
|
+
stepStatus?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68624
|
+
stepType?: InputMaybe<JiraPlaybookStepType>;
|
|
68625
|
+
};
|
|
68439
68626
|
export declare enum JiraPlaybooksSortBy {
|
|
68440
68627
|
Name = "NAME"
|
|
68441
68628
|
}
|
|
@@ -80154,6 +80341,10 @@ export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
|
80154
80341
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
80155
80342
|
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
80156
80343
|
};
|
|
80344
|
+
export declare type MarketplaceStoreApprovalDetails = {
|
|
80345
|
+
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
80346
|
+
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
80347
|
+
};
|
|
80157
80348
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
80158
80349
|
Cloud = "CLOUD",
|
|
80159
80350
|
Datacenter = "DATACENTER",
|
|
@@ -80329,6 +80520,7 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
80329
80520
|
}
|
|
80330
80521
|
export declare type MarketplaceStoreEdition = {
|
|
80331
80522
|
__typename?: 'MarketplaceStoreEdition';
|
|
80523
|
+
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
80332
80524
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
80333
80525
|
id: Scalars['ID']['output'];
|
|
80334
80526
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -83668,6 +83860,23 @@ export declare type Mutation = {
|
|
|
83668
83860
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
83669
83861
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
83670
83862
|
attachDanglingComment?: Maybe<Comment>;
|
|
83863
|
+
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
83864
|
+
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
83865
|
+
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
83866
|
+
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
83867
|
+
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
83868
|
+
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
83869
|
+
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
83870
|
+
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
83871
|
+
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
83872
|
+
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
83873
|
+
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
83874
|
+
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
83875
|
+
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
83876
|
+
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
83877
|
+
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
83878
|
+
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
83879
|
+
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
83671
83880
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
83672
83881
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
83673
83882
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -84182,6 +84391,7 @@ export declare type Mutation = {
|
|
|
84182
84391
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
84183
84392
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84184
84393
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
84394
|
+
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
84185
84395
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84186
84396
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84187
84397
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -84191,10 +84401,8 @@ export declare type Mutation = {
|
|
|
84191
84401
|
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84192
84402
|
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84193
84403
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84194
|
-
spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
|
|
84195
84404
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84196
84405
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84197
|
-
spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
|
|
84198
84406
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
84199
84407
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
84200
84408
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -84388,6 +84596,57 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
84388
84596
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
84389
84597
|
input: ReattachInlineCommentInput;
|
|
84390
84598
|
};
|
|
84599
|
+
export declare type MutationAvp_AddDashboardElementArgs = {
|
|
84600
|
+
input: AvpAddDashboardElementInput;
|
|
84601
|
+
};
|
|
84602
|
+
export declare type MutationAvp_AddDashboardRowArgs = {
|
|
84603
|
+
input: AvpAddDashboardRowInput;
|
|
84604
|
+
};
|
|
84605
|
+
export declare type MutationAvp_ClearChartsInRowArgs = {
|
|
84606
|
+
input: AvpClearChartsInRowInput;
|
|
84607
|
+
};
|
|
84608
|
+
export declare type MutationAvp_CopyChartArgs = {
|
|
84609
|
+
input: AvpCopyChartInput;
|
|
84610
|
+
};
|
|
84611
|
+
export declare type MutationAvp_CopyDashboardRowArgs = {
|
|
84612
|
+
input: AvpCopyDashboardRowInput;
|
|
84613
|
+
};
|
|
84614
|
+
export declare type MutationAvp_CreateChartArgs = {
|
|
84615
|
+
input: AvpCreateChartInput;
|
|
84616
|
+
};
|
|
84617
|
+
export declare type MutationAvp_DeleteChartArgs = {
|
|
84618
|
+
input: AvpDeleteChartInput;
|
|
84619
|
+
};
|
|
84620
|
+
export declare type MutationAvp_MoveCanvasElementArgs = {
|
|
84621
|
+
input: AvpMoveCanvasElementInput;
|
|
84622
|
+
};
|
|
84623
|
+
export declare type MutationAvp_MoveCanvasElementToNewRowArgs = {
|
|
84624
|
+
input: AvpMoveCanvasElementToNewRowInput;
|
|
84625
|
+
};
|
|
84626
|
+
export declare type MutationAvp_MoveDashboardRowArgs = {
|
|
84627
|
+
input: AvpMoveDashboardRowInput;
|
|
84628
|
+
};
|
|
84629
|
+
export declare type MutationAvp_RemoveDashboardElementArgs = {
|
|
84630
|
+
input: AvpRemoveDashboardElementInput;
|
|
84631
|
+
};
|
|
84632
|
+
export declare type MutationAvp_RemoveDashboardRowArgs = {
|
|
84633
|
+
input: AvpRemoveDashboardRowInput;
|
|
84634
|
+
};
|
|
84635
|
+
export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
|
|
84636
|
+
input: AvpToggleCanvasElementExpandedInput;
|
|
84637
|
+
};
|
|
84638
|
+
export declare type MutationAvp_UpdateChartArgs = {
|
|
84639
|
+
input: AvpUpdateChartInput;
|
|
84640
|
+
};
|
|
84641
|
+
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
84642
|
+
input: AvpUpdateDashboardInput;
|
|
84643
|
+
};
|
|
84644
|
+
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
84645
|
+
input: AvpUpdateDashboardRowHeightInput;
|
|
84646
|
+
};
|
|
84647
|
+
export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
84648
|
+
input: AvpUpdateDashboardRowNumElementsInput;
|
|
84649
|
+
};
|
|
84391
84650
|
export declare type MutationBoardCardMoveArgs = {
|
|
84392
84651
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
84393
84652
|
};
|
|
@@ -86010,6 +86269,9 @@ export declare type MutationSpf_CreateDependencyArgs = {
|
|
|
86010
86269
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
86011
86270
|
input: SpfDeleteAskInput;
|
|
86012
86271
|
};
|
|
86272
|
+
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
86273
|
+
input: SpfDeleteAskLinkInput;
|
|
86274
|
+
};
|
|
86013
86275
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
86014
86276
|
input: SpfDeleteDependencyInput;
|
|
86015
86277
|
};
|
|
@@ -86037,18 +86299,12 @@ export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
|
86037
86299
|
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
86038
86300
|
input: SpfUpdateAskReceivingTeamInput;
|
|
86039
86301
|
};
|
|
86040
|
-
export declare type MutationSpf_UpdateAskStatusArgs = {
|
|
86041
|
-
input: SpfUpdateAskStatusInput;
|
|
86042
|
-
};
|
|
86043
86302
|
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
86044
86303
|
input: SpfUpdateAskSubmitterInput;
|
|
86045
86304
|
};
|
|
86046
86305
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
86047
86306
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
86048
86307
|
};
|
|
86049
|
-
export declare type MutationSpf_UpdateAskTargetDateArgs = {
|
|
86050
|
-
input: SpfUpdateAskTargetDateInput;
|
|
86051
|
-
};
|
|
86052
86308
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
86053
86309
|
input: SpfUpdateCommentDataInput;
|
|
86054
86310
|
};
|
|
@@ -89169,11 +89425,13 @@ export declare type Query = {
|
|
|
89169
89425
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
89170
89426
|
apps?: Maybe<AppConnection>;
|
|
89171
89427
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89172
|
-
|
|
89173
|
-
|
|
89174
|
-
|
|
89428
|
+
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89429
|
+
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89430
|
+
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89175
89431
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
89176
89432
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
89433
|
+
avp_getChart?: Maybe<AvpChart>;
|
|
89434
|
+
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
89177
89435
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
89178
89436
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
89179
89437
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -89192,6 +89450,7 @@ export declare type Query = {
|
|
|
89192
89450
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
89193
89451
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
89194
89452
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
89453
|
+
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
89195
89454
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
89196
89455
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
89197
89456
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
@@ -89620,6 +89879,8 @@ export declare type Query = {
|
|
|
89620
89879
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
89621
89880
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
89622
89881
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89882
|
+
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
89883
|
+
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
89623
89884
|
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
89624
89885
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
89625
89886
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
@@ -89711,6 +89972,7 @@ export declare type Query = {
|
|
|
89711
89972
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
89712
89973
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89713
89974
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89975
|
+
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
89714
89976
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
89715
89977
|
pokemon?: Maybe<PokemonQuery>;
|
|
89716
89978
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -90071,13 +90333,13 @@ export declare type QueryAppsArgs = {
|
|
|
90071
90333
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
90072
90334
|
cloudId: Scalars['ID']['input'];
|
|
90073
90335
|
};
|
|
90074
|
-
export declare type
|
|
90336
|
+
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
90075
90337
|
issueId: Scalars['ID']['input'];
|
|
90076
90338
|
};
|
|
90077
|
-
export declare type
|
|
90339
|
+
export declare type QueryAtlasProjectsLinkedToAtlasGoalArgs = {
|
|
90078
90340
|
goalId: Scalars['ID']['input'];
|
|
90079
90341
|
};
|
|
90080
|
-
export declare type
|
|
90342
|
+
export declare type QueryAtlasProjectsLinkedToJiraIssueArgs = {
|
|
90081
90343
|
issueId: Scalars['ID']['input'];
|
|
90082
90344
|
};
|
|
90083
90345
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
@@ -90086,6 +90348,12 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
|
90086
90348
|
export declare type QueryAvailableContentStatesArgs = {
|
|
90087
90349
|
contentId: Scalars['ID']['input'];
|
|
90088
90350
|
};
|
|
90351
|
+
export declare type QueryAvp_GetChartArgs = {
|
|
90352
|
+
chartAri: Scalars['ID']['input'];
|
|
90353
|
+
};
|
|
90354
|
+
export declare type QueryAvp_GetDashboardArgs = {
|
|
90355
|
+
dashboardAri: Scalars['ID']['input'];
|
|
90356
|
+
};
|
|
90089
90357
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
90090
90358
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90091
90359
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90158,6 +90426,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
90158
90426
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
90159
90427
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90160
90428
|
};
|
|
90429
|
+
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90430
|
+
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
90431
|
+
};
|
|
90161
90432
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
90162
90433
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90163
90434
|
};
|
|
@@ -91950,6 +92221,18 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
91950
92221
|
cloudId: Scalars['ID']['input'];
|
|
91951
92222
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91952
92223
|
};
|
|
92224
|
+
export declare type QueryJira_FieldSchemeAssociatedFieldsArgs = {
|
|
92225
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92226
|
+
cloudId: Scalars['ID']['input'];
|
|
92227
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92228
|
+
input?: InputMaybe<JiraFieldSchemeAssociatedFieldsInput>;
|
|
92229
|
+
};
|
|
92230
|
+
export declare type QueryJira_FieldSchemeAvailableFieldsArgs = {
|
|
92231
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92232
|
+
cloudId: Scalars['ID']['input'];
|
|
92233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92234
|
+
input?: InputMaybe<JiraFieldSchemeAvailableFieldsInput>;
|
|
92235
|
+
};
|
|
91953
92236
|
export declare type QueryJira_FieldSchemesArgs = {
|
|
91954
92237
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91955
92238
|
cloudId: Scalars['ID']['input'];
|
|
@@ -92227,6 +92510,13 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
92227
92510
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92228
92511
|
projectKey: Scalars['String']['input'];
|
|
92229
92512
|
};
|
|
92513
|
+
export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
|
|
92514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92515
|
+
cloudId: Scalars['ID']['input'];
|
|
92516
|
+
filters?: InputMaybe<JiraPlaybookStepUsageFilter>;
|
|
92517
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92518
|
+
projectKey: Scalars['String']['input'];
|
|
92519
|
+
};
|
|
92230
92520
|
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
92231
92521
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92232
92522
|
cloudId: Scalars['ID']['input'];
|
|
@@ -98790,6 +99080,7 @@ export declare type SpfAsk = Node & {
|
|
|
98790
99080
|
submittingTeam?: Maybe<TeamV2>;
|
|
98791
99081
|
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
98792
99082
|
targetDate?: Maybe<SpfAskTargetDate>;
|
|
99083
|
+
transitions?: Maybe<Array<Maybe<SpfAskTransition>>>;
|
|
98793
99084
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98794
99085
|
updatedBy?: Maybe<User>;
|
|
98795
99086
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -98887,6 +99178,12 @@ export declare enum SpfAskTargetDateType {
|
|
|
98887
99178
|
Month = "MONTH",
|
|
98888
99179
|
Quarter = "QUARTER"
|
|
98889
99180
|
}
|
|
99181
|
+
export declare type SpfAskTransition = {
|
|
99182
|
+
__typename?: 'SpfAskTransition';
|
|
99183
|
+
askId: Scalars['String']['output'];
|
|
99184
|
+
status?: Maybe<SpfAskStatus>;
|
|
99185
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99186
|
+
};
|
|
98890
99187
|
export declare type SpfAttachAskLinkInput = {
|
|
98891
99188
|
askId: Scalars['ID']['input'];
|
|
98892
99189
|
url: Scalars['URL']['input'];
|
|
@@ -98991,6 +99288,15 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
98991
99288
|
export declare type SpfDeleteAskInput = {
|
|
98992
99289
|
id: Scalars['ID']['input'];
|
|
98993
99290
|
};
|
|
99291
|
+
export declare type SpfDeleteAskLinkInput = {
|
|
99292
|
+
id: Scalars['ID']['input'];
|
|
99293
|
+
};
|
|
99294
|
+
export declare type SpfDeleteAskLinkPayload = Payload & {
|
|
99295
|
+
__typename?: 'SpfDeleteAskLinkPayload';
|
|
99296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99297
|
+
id: Scalars['ID']['output'];
|
|
99298
|
+
success: Scalars['Boolean']['output'];
|
|
99299
|
+
};
|
|
98994
99300
|
export declare type SpfDeleteAskPayload = Payload & {
|
|
98995
99301
|
__typename?: 'SpfDeleteAskPayload';
|
|
98996
99302
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -99150,10 +99456,6 @@ export declare type SpfUpdateAskReceivingTeamInput = {
|
|
|
99150
99456
|
id: Scalars['ID']['input'];
|
|
99151
99457
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99152
99458
|
};
|
|
99153
|
-
export declare type SpfUpdateAskStatusInput = {
|
|
99154
|
-
id: Scalars['ID']['input'];
|
|
99155
|
-
status: SpfAskStatus;
|
|
99156
|
-
};
|
|
99157
99459
|
export declare type SpfUpdateAskSubmitterInput = {
|
|
99158
99460
|
id: Scalars['ID']['input'];
|
|
99159
99461
|
submitterId: Scalars['String']['input'];
|
|
@@ -99162,10 +99464,6 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
99162
99464
|
id: Scalars['ID']['input'];
|
|
99163
99465
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99164
99466
|
};
|
|
99165
|
-
export declare type SpfUpdateAskTargetDateInput = {
|
|
99166
|
-
id: Scalars['ID']['input'];
|
|
99167
|
-
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
99168
|
-
};
|
|
99169
99467
|
export declare type SpfUpdateCommentDataInput = {
|
|
99170
99468
|
data: Scalars['String']['input'];
|
|
99171
99469
|
id: Scalars['ID']['input'];
|
|
@@ -103801,6 +104099,7 @@ export declare type TrelloMutationApi = {
|
|
|
103801
104099
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
103802
104100
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
103803
104101
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
104102
|
+
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
103804
104103
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
103805
104104
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
103806
104105
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -103848,6 +104147,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
103848
104147
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
103849
104148
|
input: TrelloPinCardInput;
|
|
103850
104149
|
};
|
|
104150
|
+
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
104151
|
+
input: TrelloRemoveBoardStarInput;
|
|
104152
|
+
};
|
|
103851
104153
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
103852
104154
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
103853
104155
|
};
|
|
@@ -104480,6 +104782,15 @@ export declare type TrelloReactionLimits = {
|
|
|
104480
104782
|
perAction?: Maybe<TrelloLimitProps>;
|
|
104481
104783
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
104482
104784
|
};
|
|
104785
|
+
export declare type TrelloRemoveBoardStarInput = {
|
|
104786
|
+
boardId: Scalars['ID']['input'];
|
|
104787
|
+
userId: Scalars['ID']['input'];
|
|
104788
|
+
};
|
|
104789
|
+
export declare type TrelloRemoveBoardStarPayload = Payload & {
|
|
104790
|
+
__typename?: 'TrelloRemoveBoardStarPayload';
|
|
104791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104792
|
+
success: Scalars['Boolean']['output'];
|
|
104793
|
+
};
|
|
104483
104794
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
104484
104795
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
104485
104796
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -106007,6 +106318,7 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
106007
106318
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
106008
106319
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106009
106320
|
id: Scalars['ID']['input'];
|
|
106321
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106010
106322
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106011
106323
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106012
106324
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106015,6 +106327,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
106015
106327
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106016
106328
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
106017
106329
|
id: Scalars['ID']['input'];
|
|
106330
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106018
106331
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106019
106332
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106020
106333
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -106023,6 +106336,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
106023
106336
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106024
106337
|
id: Scalars['ID']['input'];
|
|
106025
106338
|
linkType?: InputMaybe<CompassLinkType>;
|
|
106339
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106026
106340
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106027
106341
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106028
106342
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -106036,6 +106350,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
106036
106350
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106037
106351
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
106038
106352
|
id: Scalars['ID']['input'];
|
|
106353
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106039
106354
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
106040
106355
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106041
106356
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -106044,6 +106359,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
106044
106359
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
106045
106360
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
106046
106361
|
id: Scalars['ID']['input'];
|
|
106362
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
106047
106363
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
106048
106364
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
106049
106365
|
weight?: InputMaybe<Scalars['Int']['input']>;
|