@forge/cli-shared 8.0.1-next.1 → 8.0.1-next.3
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 +14 -0
- package/out/graphql/graphql-types.d.ts +742 -327
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +91 -116
- 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'];
|
|
@@ -7202,6 +7579,7 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
7202
7579
|
appliedSince: Scalars['DateTime']['output'];
|
|
7203
7580
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
7204
7581
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
7582
|
+
scorecardMaturityLevelHistories?: Maybe<CompassScorecardMaturityLevelHistoryConnection>;
|
|
7205
7583
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
7206
7584
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
7207
7585
|
};
|
|
@@ -7216,6 +7594,11 @@ export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesA
|
|
|
7216
7594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7217
7595
|
query?: InputMaybe<CompassScorecardCriteriaScoreHistoryQuery>;
|
|
7218
7596
|
};
|
|
7597
|
+
export declare type CompassComponentScorecardRelationshipScorecardMaturityLevelHistoriesArgs = {
|
|
7598
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7600
|
+
query?: InputMaybe<CompassScorecardMaturityLevelHistoryQuery>;
|
|
7601
|
+
};
|
|
7219
7602
|
export declare type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
7220
7603
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7221
7604
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7527,6 +7910,7 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
7527
7910
|
};
|
|
7528
7911
|
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
7529
7912
|
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
7913
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7530
7914
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7531
7915
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7532
7916
|
weight: Scalars['Int']['input'];
|
|
@@ -7559,6 +7943,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
7559
7943
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
7560
7944
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7561
7945
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7946
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7562
7947
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7563
7948
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7564
7949
|
weight: Scalars['Int']['input'];
|
|
@@ -7568,6 +7953,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7568
7953
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7569
7954
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7570
7955
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7956
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7571
7957
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7572
7958
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7573
7959
|
weight: Scalars['Int']['input'];
|
|
@@ -7575,6 +7961,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7575
7961
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
7576
7962
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7577
7963
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7964
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7578
7965
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7579
7966
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
7580
7967
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7584,6 +7971,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
7584
7971
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
7585
7972
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7586
7973
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7974
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7587
7975
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
7588
7976
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7589
7977
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7593,6 +7981,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
7593
7981
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
7594
7982
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7595
7983
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7984
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7596
7985
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7597
7986
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7598
7987
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -7602,6 +7991,7 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7602
7991
|
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
7603
7992
|
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
7604
7993
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7994
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7605
7995
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7606
7996
|
packageManager: CompassPackageDependencyManagerOptions;
|
|
7607
7997
|
packageName: Scalars['String']['input'];
|
|
@@ -9744,6 +10134,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
9744
10134
|
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
9745
10135
|
in: Array<Scalars['String']['input']>;
|
|
9746
10136
|
};
|
|
10137
|
+
export declare type CompassScorecardAppliedToComponentsMaturityLevelFilter = {
|
|
10138
|
+
maturityLevels: Array<Scalars['ID']['input']>;
|
|
10139
|
+
};
|
|
9747
10140
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
9748
10141
|
in: Array<Scalars['ID']['input']>;
|
|
9749
10142
|
};
|
|
@@ -9762,6 +10155,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
9762
10155
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
9763
10156
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
9764
10157
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
10158
|
+
scorecardMaturityLevels?: InputMaybe<CompassScorecardAppliedToComponentsMaturityLevelFilter>;
|
|
9765
10159
|
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
9766
10160
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
9767
10161
|
};
|
|
@@ -9821,6 +10215,12 @@ export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
|
9821
10215
|
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
9822
10216
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9823
10217
|
};
|
|
10218
|
+
export declare type CompassScorecardCriteriaMaturityGroupInput = {
|
|
10219
|
+
maturityLevel: CompassScorecardCriteriaMaturityLevelInput;
|
|
10220
|
+
};
|
|
10221
|
+
export declare type CompassScorecardCriteriaMaturityLevelInput = {
|
|
10222
|
+
id: Scalars['ID']['input'];
|
|
10223
|
+
};
|
|
9824
10224
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9825
10225
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9826
10226
|
criterionId: Scalars['ID']['output'];
|
|
@@ -10173,6 +10573,29 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
10173
10573
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
10174
10574
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
10175
10575
|
};
|
|
10576
|
+
export declare type CompassScorecardMaturityLevelHistory = {
|
|
10577
|
+
__typename?: 'CompassScorecardMaturityLevelHistory';
|
|
10578
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10579
|
+
maturityLevelAwarded?: Maybe<CompassScorecardMaturityLevel>;
|
|
10580
|
+
};
|
|
10581
|
+
export declare type CompassScorecardMaturityLevelHistoryConnection = {
|
|
10582
|
+
__typename?: 'CompassScorecardMaturityLevelHistoryConnection';
|
|
10583
|
+
edges?: Maybe<Array<CompassScorecardMaturityLevelHistoryEdge>>;
|
|
10584
|
+
nodes?: Maybe<Array<CompassScorecardMaturityLevelHistory>>;
|
|
10585
|
+
pageInfo: PageInfo;
|
|
10586
|
+
};
|
|
10587
|
+
export declare type CompassScorecardMaturityLevelHistoryEdge = {
|
|
10588
|
+
__typename?: 'CompassScorecardMaturityLevelHistoryEdge';
|
|
10589
|
+
cursor: Scalars['String']['output'];
|
|
10590
|
+
node?: Maybe<CompassScorecardMaturityLevelHistory>;
|
|
10591
|
+
};
|
|
10592
|
+
export declare type CompassScorecardMaturityLevelHistoryQuery = {
|
|
10593
|
+
filter?: InputMaybe<CompassScorecardMaturityLevelHistoryQueryFilter>;
|
|
10594
|
+
};
|
|
10595
|
+
export declare type CompassScorecardMaturityLevelHistoryQueryFilter = {
|
|
10596
|
+
periodicity?: InputMaybe<CompassScorecardScoreHistoryPeriodicity>;
|
|
10597
|
+
startFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
10598
|
+
};
|
|
10176
10599
|
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
10177
10600
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
10178
10601
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
@@ -10349,6 +10772,11 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
10349
10772
|
since: Scalars['DateTime']['output'];
|
|
10350
10773
|
};
|
|
10351
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
|
+
}
|
|
10352
10780
|
export declare enum CompassScorecardScoringStrategyType {
|
|
10353
10781
|
PercentageBased = "PERCENTAGE_BASED",
|
|
10354
10782
|
PointBased = "POINT_BASED",
|
|
@@ -10765,6 +11193,7 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
10765
11193
|
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
10766
11194
|
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
10767
11195
|
id: Scalars['ID']['input'];
|
|
11196
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10768
11197
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10769
11198
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10770
11199
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10775,6 +11204,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
10775
11204
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10776
11205
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10777
11206
|
id: Scalars['ID']['input'];
|
|
11207
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10778
11208
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10779
11209
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10780
11210
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10785,6 +11215,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
10785
11215
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10786
11216
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10787
11217
|
id: Scalars['ID']['input'];
|
|
11218
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10788
11219
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10789
11220
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10790
11221
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10793,6 +11224,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
10793
11224
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10794
11225
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10795
11226
|
id: Scalars['ID']['input'];
|
|
11227
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10796
11228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10797
11229
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
10798
11230
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -10803,6 +11235,7 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
10803
11235
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10804
11236
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10805
11237
|
id: Scalars['ID']['input'];
|
|
11238
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10806
11239
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
10807
11240
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10808
11241
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10813,6 +11246,7 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
10813
11246
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10814
11247
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10815
11248
|
id: Scalars['ID']['input'];
|
|
11249
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10816
11250
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10817
11251
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10818
11252
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -10823,6 +11257,7 @@ export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
|
10823
11257
|
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
10824
11258
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10825
11259
|
id: Scalars['ID']['input'];
|
|
11260
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10826
11261
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10827
11262
|
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
10828
11263
|
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21328,6 +21763,7 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
21328
21763
|
};
|
|
21329
21764
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
21330
21765
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21766
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21331
21767
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21332
21768
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21333
21769
|
weight: Scalars['Int']['input'];
|
|
@@ -21335,6 +21771,7 @@ export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
|
21335
21771
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
21336
21772
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21337
21773
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
21774
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21338
21775
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21339
21776
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21340
21777
|
weight: Scalars['Int']['input'];
|
|
@@ -21342,6 +21779,7 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
21342
21779
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
21343
21780
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21344
21781
|
linkType: CompassLinkType;
|
|
21782
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21345
21783
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21346
21784
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21347
21785
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -21354,6 +21792,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21354
21792
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
21355
21793
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21356
21794
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
21795
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21357
21796
|
metricDefinitionId: Scalars['ID']['input'];
|
|
21358
21797
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21359
21798
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -21361,6 +21800,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21361
21800
|
};
|
|
21362
21801
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
21363
21802
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21803
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21364
21804
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21365
21805
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21366
21806
|
weight: Scalars['Int']['input'];
|
|
@@ -21413,6 +21853,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
21413
21853
|
name: Scalars['String']['input'];
|
|
21414
21854
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
21415
21855
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
21856
|
+
scoreSystemType?: InputMaybe<CompassScorecardScoreSystemType>;
|
|
21416
21857
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
21417
21858
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
21418
21859
|
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
@@ -33022,8 +33463,6 @@ export declare type GraphStore = {
|
|
|
33022
33463
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
33023
33464
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
33024
33465
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
33025
|
-
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
33026
|
-
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
33027
33466
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
33028
33467
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
33029
33468
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -33039,8 +33478,6 @@ export declare type GraphStore = {
|
|
|
33039
33478
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
33040
33479
|
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
33041
33480
|
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
33042
|
-
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
33043
|
-
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
33044
33481
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
33045
33482
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
33046
33483
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -33332,6 +33769,8 @@ export declare type GraphStore = {
|
|
|
33332
33769
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
33333
33770
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
33334
33771
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
33772
|
+
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
33773
|
+
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
33335
33774
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
33336
33775
|
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
33337
33776
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
@@ -33860,22 +34299,6 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
33860
34299
|
id: Scalars['ID']['input'];
|
|
33861
34300
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
33862
34301
|
};
|
|
33863
|
-
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
33864
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33865
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33866
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33867
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33868
|
-
id: Scalars['ID']['input'];
|
|
33869
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33870
|
-
};
|
|
33871
|
-
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
33872
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33873
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33874
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33875
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33876
|
-
id: Scalars['ID']['input'];
|
|
33877
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33878
|
-
};
|
|
33879
34302
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
33880
34303
|
container_ids: Array<Scalars['ID']['input']>;
|
|
33881
34304
|
enabled_sources?: InputMaybe<Array<InputMaybe<GraphStoreAtlasHomeSourcesEnum>>>;
|
|
@@ -33975,22 +34398,6 @@ export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
|
33975
34398
|
id: Scalars['ID']['input'];
|
|
33976
34399
|
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
33977
34400
|
};
|
|
33978
|
-
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
33979
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33980
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33981
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33982
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33983
|
-
id: Scalars['ID']['input'];
|
|
33984
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33985
|
-
};
|
|
33986
|
-
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
33987
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33988
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33989
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33990
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33991
|
-
id: Scalars['ID']['input'];
|
|
33992
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33993
|
-
};
|
|
33994
34401
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
33995
34402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33996
34403
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35882,6 +36289,20 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
35882
36289
|
id: Scalars['ID']['input'];
|
|
35883
36290
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
35884
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
|
+
};
|
|
35885
36306
|
export declare type GraphStorePrInProviderRepoArgs = {
|
|
35886
36307
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35887
36308
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38789,107 +39210,6 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
38789
39210
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
38790
39211
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38791
39212
|
};
|
|
38792
|
-
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
38793
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38794
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38795
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38796
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38797
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38798
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38799
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38800
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
38801
|
-
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38802
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
38803
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38804
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
38805
|
-
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38806
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
38807
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38808
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
38809
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38810
|
-
};
|
|
38811
|
-
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
38812
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38813
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38814
|
-
};
|
|
38815
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
38816
|
-
Day = "DAY",
|
|
38817
|
-
Month = "MONTH",
|
|
38818
|
-
NotSet = "NOT_SET",
|
|
38819
|
-
Quarter = "QUARTER"
|
|
38820
|
-
}
|
|
38821
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
38822
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38823
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38824
|
-
};
|
|
38825
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
38826
|
-
AtRisk = "AT_RISK",
|
|
38827
|
-
Cancelled = "CANCELLED",
|
|
38828
|
-
Done = "DONE",
|
|
38829
|
-
NotSet = "NOT_SET",
|
|
38830
|
-
OffTrack = "OFF_TRACK",
|
|
38831
|
-
OnTrack = "ON_TRACK",
|
|
38832
|
-
Paused = "PAUSED",
|
|
38833
|
-
Pending = "PENDING"
|
|
38834
|
-
}
|
|
38835
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
38836
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38837
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38838
|
-
};
|
|
38839
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
38840
|
-
Day = "DAY",
|
|
38841
|
-
Month = "MONTH",
|
|
38842
|
-
NotSet = "NOT_SET",
|
|
38843
|
-
Null = "NULL",
|
|
38844
|
-
Quarter = "QUARTER"
|
|
38845
|
-
}
|
|
38846
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
38847
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38848
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38849
|
-
};
|
|
38850
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
38851
|
-
AtRisk = "AT_RISK",
|
|
38852
|
-
Cancelled = "CANCELLED",
|
|
38853
|
-
Done = "DONE",
|
|
38854
|
-
NotSet = "NOT_SET",
|
|
38855
|
-
Null = "NULL",
|
|
38856
|
-
OffTrack = "OFF_TRACK",
|
|
38857
|
-
OnTrack = "ON_TRACK",
|
|
38858
|
-
Paused = "PAUSED",
|
|
38859
|
-
Pending = "PENDING"
|
|
38860
|
-
}
|
|
38861
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
38862
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38863
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38864
|
-
};
|
|
38865
|
-
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
38866
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38867
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38868
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38869
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38870
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38871
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38872
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38873
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38874
|
-
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
38875
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38876
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38877
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38878
|
-
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
38879
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38880
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38881
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38882
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38883
|
-
};
|
|
38884
|
-
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
38885
|
-
NotSet = "NOT_SET",
|
|
38886
|
-
System = "SYSTEM",
|
|
38887
|
-
User = "USER"
|
|
38888
|
-
}
|
|
38889
|
-
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
38890
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38891
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38892
|
-
};
|
|
38893
39213
|
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38894
39214
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38895
39215
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
@@ -38959,103 +39279,6 @@ export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
|
38959
39279
|
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
38960
39280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38961
39281
|
};
|
|
38962
|
-
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
38963
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38964
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38965
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38966
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38967
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38968
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38969
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38970
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
38971
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
38972
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38973
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
38974
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
38975
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38976
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
38977
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38978
|
-
};
|
|
38979
|
-
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
38980
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38981
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38982
|
-
};
|
|
38983
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
38984
|
-
Day = "DAY",
|
|
38985
|
-
Month = "MONTH",
|
|
38986
|
-
NotSet = "NOT_SET",
|
|
38987
|
-
Quarter = "QUARTER"
|
|
38988
|
-
}
|
|
38989
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
38990
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38991
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38992
|
-
};
|
|
38993
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
38994
|
-
AtRisk = "AT_RISK",
|
|
38995
|
-
Cancelled = "CANCELLED",
|
|
38996
|
-
Done = "DONE",
|
|
38997
|
-
NotSet = "NOT_SET",
|
|
38998
|
-
OffTrack = "OFF_TRACK",
|
|
38999
|
-
OnTrack = "ON_TRACK",
|
|
39000
|
-
Paused = "PAUSED",
|
|
39001
|
-
Pending = "PENDING"
|
|
39002
|
-
}
|
|
39003
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
39004
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
39005
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
39006
|
-
};
|
|
39007
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
39008
|
-
Day = "DAY",
|
|
39009
|
-
Month = "MONTH",
|
|
39010
|
-
NotSet = "NOT_SET",
|
|
39011
|
-
Null = "NULL",
|
|
39012
|
-
Quarter = "QUARTER"
|
|
39013
|
-
}
|
|
39014
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
39015
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
39016
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
39017
|
-
};
|
|
39018
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
39019
|
-
AtRisk = "AT_RISK",
|
|
39020
|
-
Cancelled = "CANCELLED",
|
|
39021
|
-
Done = "DONE",
|
|
39022
|
-
NotSet = "NOT_SET",
|
|
39023
|
-
Null = "NULL",
|
|
39024
|
-
OffTrack = "OFF_TRACK",
|
|
39025
|
-
OnTrack = "ON_TRACK",
|
|
39026
|
-
Paused = "PAUSED",
|
|
39027
|
-
Pending = "PENDING"
|
|
39028
|
-
}
|
|
39029
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
39030
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
39031
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
39032
|
-
};
|
|
39033
|
-
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
39034
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39035
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
39036
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39037
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
39038
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
39039
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
39040
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
39041
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
39042
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
39043
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
39044
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
39045
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
39046
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
39047
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
39048
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
39049
|
-
};
|
|
39050
|
-
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
39051
|
-
NotSet = "NOT_SET",
|
|
39052
|
-
System = "SYSTEM",
|
|
39053
|
-
User = "USER"
|
|
39054
|
-
}
|
|
39055
|
-
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
39056
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
39057
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
39058
|
-
};
|
|
39059
39282
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
39060
39283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39061
39284
|
};
|
|
@@ -40349,7 +40572,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
40349
40572
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
40350
40573
|
id: Scalars['ID']['output'];
|
|
40351
40574
|
};
|
|
40352
|
-
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;
|
|
40353
40576
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
40354
40577
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
40355
40578
|
value: Scalars['Int']['output'];
|
|
@@ -40384,7 +40607,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40384
40607
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40385
40608
|
id: Scalars['ID']['output'];
|
|
40386
40609
|
};
|
|
40387
|
-
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;
|
|
40388
40611
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40389
40612
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40390
40613
|
value: Scalars['String']['output'];
|
|
@@ -40394,19 +40617,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
40394
40617
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
40395
40618
|
id: Scalars['ID']['output'];
|
|
40396
40619
|
};
|
|
40397
|
-
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;
|
|
40398
40621
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
40399
40622
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
40400
40623
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40401
40624
|
id: Scalars['ID']['output'];
|
|
40402
40625
|
};
|
|
40403
|
-
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;
|
|
40404
40627
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40405
40628
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40406
40629
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40407
40630
|
id: Scalars['ID']['output'];
|
|
40408
40631
|
};
|
|
40409
|
-
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;
|
|
40410
40633
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40411
40634
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40412
40635
|
value: Scalars['Boolean']['output'];
|
|
@@ -40505,7 +40728,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40505
40728
|
V2 = "V2",
|
|
40506
40729
|
V3 = "V3"
|
|
40507
40730
|
}
|
|
40508
|
-
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;
|
|
40509
40732
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40510
40733
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40511
40734
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41703,6 +41926,7 @@ export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
41703
41926
|
};
|
|
41704
41927
|
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
41705
41928
|
Declined = "DECLINED",
|
|
41929
|
+
Draft = "DRAFT",
|
|
41706
41930
|
Merged = "MERGED",
|
|
41707
41931
|
NotSet = "NOT_SET",
|
|
41708
41932
|
Open = "OPEN",
|
|
@@ -42251,6 +42475,7 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUn
|
|
|
42251
42475
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
42252
42476
|
Archive = "ARCHIVE",
|
|
42253
42477
|
Audio = "AUDIO",
|
|
42478
|
+
Blogpost = "BLOGPOST",
|
|
42254
42479
|
Code = "CODE",
|
|
42255
42480
|
Document = "DOCUMENT",
|
|
42256
42481
|
Folder = "FOLDER",
|
|
@@ -42258,11 +42483,13 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
42258
42483
|
Image = "IMAGE",
|
|
42259
42484
|
NotSet = "NOT_SET",
|
|
42260
42485
|
Other = "OTHER",
|
|
42486
|
+
Page = "PAGE",
|
|
42261
42487
|
Pdf = "PDF",
|
|
42262
42488
|
Presentation = "PRESENTATION",
|
|
42263
42489
|
Shortcut = "SHORTCUT",
|
|
42264
42490
|
Spreadsheet = "SPREADSHEET",
|
|
42265
|
-
Video = "VIDEO"
|
|
42491
|
+
Video = "VIDEO",
|
|
42492
|
+
WebPage = "WEB_PAGE"
|
|
42266
42493
|
}
|
|
42267
42494
|
export declare type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
42268
42495
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
@@ -42370,6 +42597,7 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
42370
42597
|
};
|
|
42371
42598
|
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
42372
42599
|
Declined = "DECLINED",
|
|
42600
|
+
Draft = "DRAFT",
|
|
42373
42601
|
Merged = "MERGED",
|
|
42374
42602
|
NotSet = "NOT_SET",
|
|
42375
42603
|
Open = "OPEN",
|
|
@@ -42713,6 +42941,7 @@ export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
42713
42941
|
};
|
|
42714
42942
|
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
42715
42943
|
Declined = "DECLINED",
|
|
42944
|
+
Draft = "DRAFT",
|
|
42716
42945
|
Merged = "MERGED",
|
|
42717
42946
|
NotSet = "NOT_SET",
|
|
42718
42947
|
Open = "OPEN",
|
|
@@ -43538,6 +43767,7 @@ export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
43538
43767
|
};
|
|
43539
43768
|
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
43540
43769
|
Declined = "DECLINED",
|
|
43770
|
+
Draft = "DRAFT",
|
|
43541
43771
|
Merged = "MERGED",
|
|
43542
43772
|
NotSet = "NOT_SET",
|
|
43543
43773
|
Open = "OPEN",
|
|
@@ -44985,6 +45215,9 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
44985
45215
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
44986
45216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44987
45217
|
};
|
|
45218
|
+
export declare type GraphStorePrHasCommentSortInput = {
|
|
45219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45220
|
+
};
|
|
44988
45221
|
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
44989
45222
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
44990
45223
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -45234,6 +45467,7 @@ export declare type GraphStoreProjectAssociatedPrFilterInput = {
|
|
|
45234
45467
|
};
|
|
45235
45468
|
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
45236
45469
|
Declined = "DECLINED",
|
|
45470
|
+
Draft = "DRAFT",
|
|
45237
45471
|
Merged = "MERGED",
|
|
45238
45472
|
NotSet = "NOT_SET",
|
|
45239
45473
|
Open = "OPEN",
|
|
@@ -45770,38 +46004,6 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
45770
46004
|
};
|
|
45771
46005
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
45772
46006
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
45773
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45774
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
45775
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
45776
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45777
|
-
pageInfo: PageInfo;
|
|
45778
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45779
|
-
};
|
|
45780
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
45781
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
45782
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45783
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45784
|
-
id: Scalars['ID']['output'];
|
|
45785
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45786
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
45787
|
-
};
|
|
45788
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45789
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
45790
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
45791
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45792
|
-
pageInfo: PageInfo;
|
|
45793
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45794
|
-
};
|
|
45795
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
45796
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
45797
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45798
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45799
|
-
id: Scalars['ID']['output'];
|
|
45800
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45801
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
45802
|
-
};
|
|
45803
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
45804
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
45805
46007
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
45806
46008
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
45807
46009
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -45970,38 +46172,6 @@ export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge
|
|
|
45970
46172
|
};
|
|
45971
46173
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
45972
46174
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
45973
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45974
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
45975
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
45976
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45977
|
-
pageInfo: PageInfo;
|
|
45978
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45979
|
-
};
|
|
45980
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
45981
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
45982
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45983
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45984
|
-
id: Scalars['ID']['output'];
|
|
45985
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45986
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
45987
|
-
};
|
|
45988
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45989
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
45990
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
45991
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45992
|
-
pageInfo: PageInfo;
|
|
45993
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45994
|
-
};
|
|
45995
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
45996
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
45997
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45998
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45999
|
-
id: Scalars['ID']['output'];
|
|
46000
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46001
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
46002
|
-
};
|
|
46003
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
46004
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
46005
46175
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
46006
46176
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
46007
46177
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -48792,6 +48962,34 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
48792
48962
|
};
|
|
48793
48963
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
48794
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;
|
|
48795
48993
|
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
48796
48994
|
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
48797
48995
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
@@ -53624,6 +53822,7 @@ export declare type GraphStoreSprintAssociatedPrFilterInput = {
|
|
|
53624
53822
|
};
|
|
53625
53823
|
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
53626
53824
|
Declined = "DECLINED",
|
|
53825
|
+
Draft = "DRAFT",
|
|
53627
53826
|
Merged = "MERGED",
|
|
53628
53827
|
NotSet = "NOT_SET",
|
|
53629
53828
|
Open = "OPEN",
|
|
@@ -62051,6 +62250,26 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
62051
62250
|
Allow = "ALLOW",
|
|
62052
62251
|
Exclude = "EXCLUDE"
|
|
62053
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
|
+
};
|
|
62054
62273
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
62055
62274
|
__typename?: 'JiraFieldSchemePayload';
|
|
62056
62275
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -62945,6 +63164,7 @@ export declare type JiraGroup = Node & {
|
|
|
62945
63164
|
name: Scalars['String']['output'];
|
|
62946
63165
|
};
|
|
62947
63166
|
export declare type JiraGroupByDropdownFilter = {
|
|
63167
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
62948
63168
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
62949
63169
|
};
|
|
62950
63170
|
export declare type JiraGroupConnection = {
|
|
@@ -68359,6 +68579,46 @@ export declare enum JiraPlaybookStepType {
|
|
|
68359
68579
|
AutomationRule = "AUTOMATION_RULE",
|
|
68360
68580
|
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
68361
68581
|
}
|
|
68582
|
+
export declare type JiraPlaybookStepUsage = Node & {
|
|
68583
|
+
__typename?: 'JiraPlaybookStepUsage';
|
|
68584
|
+
avgExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68585
|
+
failedStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68586
|
+
id: Scalars['ID']['output'];
|
|
68587
|
+
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68588
|
+
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
68589
|
+
ownerAccountId?: Maybe<Scalars['String']['output']>;
|
|
68590
|
+
playbookName?: Maybe<Scalars['String']['output']>;
|
|
68591
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
68592
|
+
stepType?: Maybe<JiraPlaybookStepType>;
|
|
68593
|
+
successfulStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68594
|
+
totalStepExecutionCount?: Maybe<Scalars['Long']['output']>;
|
|
68595
|
+
uniqueAgentCount?: Maybe<Scalars['Long']['output']>;
|
|
68596
|
+
uniqueIssueCount?: Maybe<Scalars['Long']['output']>;
|
|
68597
|
+
};
|
|
68598
|
+
export declare type JiraPlaybookStepUsageConnection = HasPageInfo & QueryPayload & {
|
|
68599
|
+
__typename?: 'JiraPlaybookStepUsageConnection';
|
|
68600
|
+
edges?: Maybe<Array<JiraPlaybookStepUsageEdge>>;
|
|
68601
|
+
errors?: Maybe<Array<QueryError>>;
|
|
68602
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
68603
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
68604
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
68605
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookStepUsage>>>;
|
|
68606
|
+
pageInfo: PageInfo;
|
|
68607
|
+
success: Scalars['Boolean']['output'];
|
|
68608
|
+
};
|
|
68609
|
+
export declare type JiraPlaybookStepUsageEdge = {
|
|
68610
|
+
__typename?: 'JiraPlaybookStepUsageEdge';
|
|
68611
|
+
cursor: Scalars['String']['output'];
|
|
68612
|
+
node?: Maybe<JiraPlaybookStepUsage>;
|
|
68613
|
+
};
|
|
68614
|
+
export declare type JiraPlaybookStepUsageFilter = {
|
|
68615
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68616
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68617
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68618
|
+
state?: InputMaybe<JiraPlaybookStateField>;
|
|
68619
|
+
stepStatus?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68620
|
+
stepType?: InputMaybe<JiraPlaybookStepType>;
|
|
68621
|
+
};
|
|
68362
68622
|
export declare enum JiraPlaybooksSortBy {
|
|
68363
68623
|
Name = "NAME"
|
|
68364
68624
|
}
|
|
@@ -78054,6 +78314,12 @@ export declare type LoomComment = Node & {
|
|
|
78054
78314
|
video?: Maybe<LoomVideo>;
|
|
78055
78315
|
videoId: Scalars['ID']['output'];
|
|
78056
78316
|
};
|
|
78317
|
+
export declare type LoomFolder = {
|
|
78318
|
+
__typename?: 'LoomFolder';
|
|
78319
|
+
id: Scalars['ID']['output'];
|
|
78320
|
+
name: Scalars['String']['output'];
|
|
78321
|
+
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
78322
|
+
};
|
|
78057
78323
|
export declare type LoomMeeting = Node & {
|
|
78058
78324
|
__typename?: 'LoomMeeting';
|
|
78059
78325
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -78901,6 +79167,10 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
|
78901
79167
|
userKey?: InputMaybe<Scalars['ID']['input']>;
|
|
78902
79168
|
versionNumber: Scalars['ID']['input'];
|
|
78903
79169
|
};
|
|
79170
|
+
export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
79171
|
+
Commercial = "COMMERCIAL",
|
|
79172
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
79173
|
+
}
|
|
78904
79174
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
78905
79175
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
78906
79176
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -79384,6 +79654,7 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
79384
79654
|
};
|
|
79385
79655
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
79386
79656
|
appKey: Scalars['ID']['input'];
|
|
79657
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
79387
79658
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
79388
79659
|
};
|
|
79389
79660
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -80066,6 +80337,10 @@ export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
|
80066
80337
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
80067
80338
|
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
80068
80339
|
};
|
|
80340
|
+
export declare type MarketplaceStoreApprovalDetails = {
|
|
80341
|
+
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
80342
|
+
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
80343
|
+
};
|
|
80069
80344
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
80070
80345
|
Cloud = "CLOUD",
|
|
80071
80346
|
Datacenter = "DATACENTER",
|
|
@@ -80241,6 +80516,7 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
80241
80516
|
}
|
|
80242
80517
|
export declare type MarketplaceStoreEdition = {
|
|
80243
80518
|
__typename?: 'MarketplaceStoreEdition';
|
|
80519
|
+
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
80244
80520
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
80245
80521
|
id: Scalars['ID']['output'];
|
|
80246
80522
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -83580,6 +83856,23 @@ export declare type Mutation = {
|
|
|
83580
83856
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
83581
83857
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
83582
83858
|
attachDanglingComment?: Maybe<Comment>;
|
|
83859
|
+
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
83860
|
+
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
83861
|
+
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
83862
|
+
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
83863
|
+
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
83864
|
+
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
83865
|
+
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
83866
|
+
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
83867
|
+
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
83868
|
+
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
83869
|
+
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
83870
|
+
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
83871
|
+
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
83872
|
+
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
83873
|
+
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
83874
|
+
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
83875
|
+
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
83583
83876
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
83584
83877
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
83585
83878
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -84015,6 +84308,7 @@ export declare type Mutation = {
|
|
|
84015
84308
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
84016
84309
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
84017
84310
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
84311
|
+
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
84018
84312
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
84019
84313
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84020
84314
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
@@ -84093,6 +84387,7 @@ export declare type Mutation = {
|
|
|
84093
84387
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
84094
84388
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84095
84389
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
84390
|
+
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
84096
84391
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84097
84392
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84098
84393
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -84102,10 +84397,8 @@ export declare type Mutation = {
|
|
|
84102
84397
|
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84103
84398
|
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84104
84399
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84105
|
-
spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
|
|
84106
84400
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84107
84401
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84108
|
-
spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
|
|
84109
84402
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
84110
84403
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
84111
84404
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -84299,6 +84592,57 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
84299
84592
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
84300
84593
|
input: ReattachInlineCommentInput;
|
|
84301
84594
|
};
|
|
84595
|
+
export declare type MutationAvp_AddDashboardElementArgs = {
|
|
84596
|
+
input: AvpAddDashboardElementInput;
|
|
84597
|
+
};
|
|
84598
|
+
export declare type MutationAvp_AddDashboardRowArgs = {
|
|
84599
|
+
input: AvpAddDashboardRowInput;
|
|
84600
|
+
};
|
|
84601
|
+
export declare type MutationAvp_ClearChartsInRowArgs = {
|
|
84602
|
+
input: AvpClearChartsInRowInput;
|
|
84603
|
+
};
|
|
84604
|
+
export declare type MutationAvp_CopyChartArgs = {
|
|
84605
|
+
input: AvpCopyChartInput;
|
|
84606
|
+
};
|
|
84607
|
+
export declare type MutationAvp_CopyDashboardRowArgs = {
|
|
84608
|
+
input: AvpCopyDashboardRowInput;
|
|
84609
|
+
};
|
|
84610
|
+
export declare type MutationAvp_CreateChartArgs = {
|
|
84611
|
+
input: AvpCreateChartInput;
|
|
84612
|
+
};
|
|
84613
|
+
export declare type MutationAvp_DeleteChartArgs = {
|
|
84614
|
+
input: AvpDeleteChartInput;
|
|
84615
|
+
};
|
|
84616
|
+
export declare type MutationAvp_MoveCanvasElementArgs = {
|
|
84617
|
+
input: AvpMoveCanvasElementInput;
|
|
84618
|
+
};
|
|
84619
|
+
export declare type MutationAvp_MoveCanvasElementToNewRowArgs = {
|
|
84620
|
+
input: AvpMoveCanvasElementToNewRowInput;
|
|
84621
|
+
};
|
|
84622
|
+
export declare type MutationAvp_MoveDashboardRowArgs = {
|
|
84623
|
+
input: AvpMoveDashboardRowInput;
|
|
84624
|
+
};
|
|
84625
|
+
export declare type MutationAvp_RemoveDashboardElementArgs = {
|
|
84626
|
+
input: AvpRemoveDashboardElementInput;
|
|
84627
|
+
};
|
|
84628
|
+
export declare type MutationAvp_RemoveDashboardRowArgs = {
|
|
84629
|
+
input: AvpRemoveDashboardRowInput;
|
|
84630
|
+
};
|
|
84631
|
+
export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
|
|
84632
|
+
input: AvpToggleCanvasElementExpandedInput;
|
|
84633
|
+
};
|
|
84634
|
+
export declare type MutationAvp_UpdateChartArgs = {
|
|
84635
|
+
input: AvpUpdateChartInput;
|
|
84636
|
+
};
|
|
84637
|
+
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
84638
|
+
input: AvpUpdateDashboardInput;
|
|
84639
|
+
};
|
|
84640
|
+
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
84641
|
+
input: AvpUpdateDashboardRowHeightInput;
|
|
84642
|
+
};
|
|
84643
|
+
export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
84644
|
+
input: AvpUpdateDashboardRowNumElementsInput;
|
|
84645
|
+
};
|
|
84302
84646
|
export declare type MutationBoardCardMoveArgs = {
|
|
84303
84647
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
84304
84648
|
};
|
|
@@ -85401,6 +85745,7 @@ export declare type MutationEnablePublicLinkForPageArgs = {
|
|
|
85401
85745
|
pageId: Scalars['ID']['input'];
|
|
85402
85746
|
};
|
|
85403
85747
|
export declare type MutationFavouritePageArgs = {
|
|
85748
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85404
85749
|
favouritePageInput: FavouritePageInput;
|
|
85405
85750
|
};
|
|
85406
85751
|
export declare type MutationFavouriteSpaceArgs = {
|
|
@@ -85666,6 +86011,10 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
85666
86011
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
85667
86012
|
id: Scalars['String']['input'];
|
|
85668
86013
|
};
|
|
86014
|
+
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
86015
|
+
cloudId: Scalars['ID']['input'];
|
|
86016
|
+
input: Array<RadarClearFocusAreaProposalInput>;
|
|
86017
|
+
};
|
|
85669
86018
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
85670
86019
|
cloudId: Scalars['ID']['input'];
|
|
85671
86020
|
input: RadarCustomFieldInput;
|
|
@@ -85916,6 +86265,9 @@ export declare type MutationSpf_CreateDependencyArgs = {
|
|
|
85916
86265
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
85917
86266
|
input: SpfDeleteAskInput;
|
|
85918
86267
|
};
|
|
86268
|
+
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
86269
|
+
input: SpfDeleteAskLinkInput;
|
|
86270
|
+
};
|
|
85919
86271
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
85920
86272
|
input: SpfDeleteDependencyInput;
|
|
85921
86273
|
};
|
|
@@ -85943,18 +86295,12 @@ export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
|
85943
86295
|
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
85944
86296
|
input: SpfUpdateAskReceivingTeamInput;
|
|
85945
86297
|
};
|
|
85946
|
-
export declare type MutationSpf_UpdateAskStatusArgs = {
|
|
85947
|
-
input: SpfUpdateAskStatusInput;
|
|
85948
|
-
};
|
|
85949
86298
|
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
85950
86299
|
input: SpfUpdateAskSubmitterInput;
|
|
85951
86300
|
};
|
|
85952
86301
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
85953
86302
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
85954
86303
|
};
|
|
85955
|
-
export declare type MutationSpf_UpdateAskTargetDateArgs = {
|
|
85956
|
-
input: SpfUpdateAskTargetDateInput;
|
|
85957
|
-
};
|
|
85958
86304
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
85959
86305
|
input: SpfUpdateCommentDataInput;
|
|
85960
86306
|
};
|
|
@@ -86029,6 +86375,7 @@ export declare type MutationUnassignIssueParentArgs = {
|
|
|
86029
86375
|
input?: InputMaybe<UnassignIssueParentInput>;
|
|
86030
86376
|
};
|
|
86031
86377
|
export declare type MutationUnfavouritePageArgs = {
|
|
86378
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86032
86379
|
favouritePageInput: FavouritePageInput;
|
|
86033
86380
|
};
|
|
86034
86381
|
export declare type MutationUnfavouriteSpaceArgs = {
|
|
@@ -86050,6 +86397,7 @@ export declare type MutationUnwatchBlogsArgs = {
|
|
|
86050
86397
|
watchSpaceInput: WatchSpaceInput;
|
|
86051
86398
|
};
|
|
86052
86399
|
export declare type MutationUnwatchContentArgs = {
|
|
86400
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86053
86401
|
watchContentInput: WatchContentInput;
|
|
86054
86402
|
};
|
|
86055
86403
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
@@ -86262,6 +86610,7 @@ export declare type MutationWatchBlogsArgs = {
|
|
|
86262
86610
|
watchSpaceInput: WatchSpaceInput;
|
|
86263
86611
|
};
|
|
86264
86612
|
export declare type MutationWatchContentArgs = {
|
|
86613
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86265
86614
|
watchContentInput: WatchContentInput;
|
|
86266
86615
|
};
|
|
86267
86616
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
@@ -89072,11 +89421,13 @@ export declare type Query = {
|
|
|
89072
89421
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
89073
89422
|
apps?: Maybe<AppConnection>;
|
|
89074
89423
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89075
|
-
|
|
89076
|
-
|
|
89077
|
-
|
|
89424
|
+
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89425
|
+
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89426
|
+
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89078
89427
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
89079
89428
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
89429
|
+
avp_getChart?: Maybe<AvpChart>;
|
|
89430
|
+
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
89080
89431
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
89081
89432
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
89082
89433
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -89095,6 +89446,7 @@ export declare type Query = {
|
|
|
89095
89446
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
89096
89447
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
89097
89448
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
89449
|
+
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
89098
89450
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
89099
89451
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
89100
89452
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
@@ -89523,6 +89875,7 @@ export declare type Query = {
|
|
|
89523
89875
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
89524
89876
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
89525
89877
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89878
|
+
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
89526
89879
|
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
89527
89880
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
89528
89881
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
@@ -89548,6 +89901,7 @@ export declare type Query = {
|
|
|
89548
89901
|
loom_comment?: Maybe<LoomComment>;
|
|
89549
89902
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
89550
89903
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
89904
|
+
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
89551
89905
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
89552
89906
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
89553
89907
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -89613,6 +89967,7 @@ export declare type Query = {
|
|
|
89613
89967
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
89614
89968
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89615
89969
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89970
|
+
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
89616
89971
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
89617
89972
|
pokemon?: Maybe<PokemonQuery>;
|
|
89618
89973
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -89973,13 +90328,13 @@ export declare type QueryAppsArgs = {
|
|
|
89973
90328
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
89974
90329
|
cloudId: Scalars['ID']['input'];
|
|
89975
90330
|
};
|
|
89976
|
-
export declare type
|
|
90331
|
+
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
89977
90332
|
issueId: Scalars['ID']['input'];
|
|
89978
90333
|
};
|
|
89979
|
-
export declare type
|
|
90334
|
+
export declare type QueryAtlasProjectsLinkedToAtlasGoalArgs = {
|
|
89980
90335
|
goalId: Scalars['ID']['input'];
|
|
89981
90336
|
};
|
|
89982
|
-
export declare type
|
|
90337
|
+
export declare type QueryAtlasProjectsLinkedToJiraIssueArgs = {
|
|
89983
90338
|
issueId: Scalars['ID']['input'];
|
|
89984
90339
|
};
|
|
89985
90340
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
@@ -89988,6 +90343,12 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
|
89988
90343
|
export declare type QueryAvailableContentStatesArgs = {
|
|
89989
90344
|
contentId: Scalars['ID']['input'];
|
|
89990
90345
|
};
|
|
90346
|
+
export declare type QueryAvp_GetChartArgs = {
|
|
90347
|
+
chartAri: Scalars['ID']['input'];
|
|
90348
|
+
};
|
|
90349
|
+
export declare type QueryAvp_GetDashboardArgs = {
|
|
90350
|
+
dashboardAri: Scalars['ID']['input'];
|
|
90351
|
+
};
|
|
89991
90352
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
89992
90353
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89993
90354
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90060,6 +90421,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
90060
90421
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
90061
90422
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90062
90423
|
};
|
|
90424
|
+
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90425
|
+
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
90426
|
+
};
|
|
90063
90427
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
90064
90428
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90065
90429
|
};
|
|
@@ -91852,6 +92216,12 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
91852
92216
|
cloudId: Scalars['ID']['input'];
|
|
91853
92217
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91854
92218
|
};
|
|
92219
|
+
export declare type QueryJira_FieldSchemeAssociatedFieldsArgs = {
|
|
92220
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92221
|
+
cloudId: Scalars['ID']['input'];
|
|
92222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92223
|
+
input?: InputMaybe<JiraFieldSchemeAssociatedFieldsInput>;
|
|
92224
|
+
};
|
|
91855
92225
|
export declare type QueryJira_FieldSchemesArgs = {
|
|
91856
92226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91857
92227
|
cloudId: Scalars['ID']['input'];
|
|
@@ -91926,6 +92296,12 @@ export declare type QueryLoom_CreateSpaceArgs = {
|
|
|
91926
92296
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
91927
92297
|
siteId: Scalars['ID']['input'];
|
|
91928
92298
|
};
|
|
92299
|
+
export declare type QueryLoom_FoldersSearchArgs = {
|
|
92300
|
+
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92301
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
92302
|
+
siteId: Scalars['ID']['input'];
|
|
92303
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
92304
|
+
};
|
|
91929
92305
|
export declare type QueryLoom_MeetingArgs = {
|
|
91930
92306
|
id: Scalars['ID']['input'];
|
|
91931
92307
|
};
|
|
@@ -92123,6 +92499,13 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
92123
92499
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92124
92500
|
projectKey: Scalars['String']['input'];
|
|
92125
92501
|
};
|
|
92502
|
+
export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
|
|
92503
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92504
|
+
cloudId: Scalars['ID']['input'];
|
|
92505
|
+
filters?: InputMaybe<JiraPlaybookStepUsageFilter>;
|
|
92506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92507
|
+
projectKey: Scalars['String']['input'];
|
|
92508
|
+
};
|
|
92126
92509
|
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
92127
92510
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92128
92511
|
cloudId: Scalars['ID']['input'];
|
|
@@ -92690,6 +93073,9 @@ export declare type QueryUserGroupSearchArgs = {
|
|
|
92690
93073
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
92691
93074
|
sitePermissionTypeFilter?: InputMaybe<SitePermissionTypeFilter>;
|
|
92692
93075
|
};
|
|
93076
|
+
export declare type QueryUserPreferencesArgs = {
|
|
93077
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
93078
|
+
};
|
|
92693
93079
|
export declare type QueryUserWithContentRestrictionsArgs = {
|
|
92694
93080
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
92695
93081
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -92849,6 +93235,9 @@ export declare type RadarBooleanFieldValue = {
|
|
|
92849
93235
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
92850
93236
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
92851
93237
|
};
|
|
93238
|
+
export declare type RadarClearFocusAreaProposalInput = {
|
|
93239
|
+
proposalAri: Scalars['ID']['input'];
|
|
93240
|
+
};
|
|
92852
93241
|
export declare type RadarConnection = {
|
|
92853
93242
|
pageInfo: PageInfo;
|
|
92854
93243
|
totalCount: Scalars['Int']['output'];
|
|
@@ -98680,6 +99069,7 @@ export declare type SpfAsk = Node & {
|
|
|
98680
99069
|
submittingTeam?: Maybe<TeamV2>;
|
|
98681
99070
|
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
98682
99071
|
targetDate?: Maybe<SpfAskTargetDate>;
|
|
99072
|
+
transitions?: Maybe<Array<Maybe<SpfAskTransition>>>;
|
|
98683
99073
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98684
99074
|
updatedBy?: Maybe<User>;
|
|
98685
99075
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -98777,6 +99167,12 @@ export declare enum SpfAskTargetDateType {
|
|
|
98777
99167
|
Month = "MONTH",
|
|
98778
99168
|
Quarter = "QUARTER"
|
|
98779
99169
|
}
|
|
99170
|
+
export declare type SpfAskTransition = {
|
|
99171
|
+
__typename?: 'SpfAskTransition';
|
|
99172
|
+
askId: Scalars['String']['output'];
|
|
99173
|
+
status?: Maybe<SpfAskStatus>;
|
|
99174
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99175
|
+
};
|
|
98780
99176
|
export declare type SpfAttachAskLinkInput = {
|
|
98781
99177
|
askId: Scalars['ID']['input'];
|
|
98782
99178
|
url: Scalars['URL']['input'];
|
|
@@ -98881,6 +99277,15 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
98881
99277
|
export declare type SpfDeleteAskInput = {
|
|
98882
99278
|
id: Scalars['ID']['input'];
|
|
98883
99279
|
};
|
|
99280
|
+
export declare type SpfDeleteAskLinkInput = {
|
|
99281
|
+
id: Scalars['ID']['input'];
|
|
99282
|
+
};
|
|
99283
|
+
export declare type SpfDeleteAskLinkPayload = Payload & {
|
|
99284
|
+
__typename?: 'SpfDeleteAskLinkPayload';
|
|
99285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99286
|
+
id: Scalars['ID']['output'];
|
|
99287
|
+
success: Scalars['Boolean']['output'];
|
|
99288
|
+
};
|
|
98884
99289
|
export declare type SpfDeleteAskPayload = Payload & {
|
|
98885
99290
|
__typename?: 'SpfDeleteAskPayload';
|
|
98886
99291
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -99040,10 +99445,6 @@ export declare type SpfUpdateAskReceivingTeamInput = {
|
|
|
99040
99445
|
id: Scalars['ID']['input'];
|
|
99041
99446
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99042
99447
|
};
|
|
99043
|
-
export declare type SpfUpdateAskStatusInput = {
|
|
99044
|
-
id: Scalars['ID']['input'];
|
|
99045
|
-
status: SpfAskStatus;
|
|
99046
|
-
};
|
|
99047
99448
|
export declare type SpfUpdateAskSubmitterInput = {
|
|
99048
99449
|
id: Scalars['ID']['input'];
|
|
99049
99450
|
submitterId: Scalars['String']['input'];
|
|
@@ -99052,10 +99453,6 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
99052
99453
|
id: Scalars['ID']['input'];
|
|
99053
99454
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99054
99455
|
};
|
|
99055
|
-
export declare type SpfUpdateAskTargetDateInput = {
|
|
99056
|
-
id: Scalars['ID']['input'];
|
|
99057
|
-
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
99058
|
-
};
|
|
99059
99456
|
export declare type SpfUpdateCommentDataInput = {
|
|
99060
99457
|
data: Scalars['String']['input'];
|
|
99061
99458
|
id: Scalars['ID']['input'];
|
|
@@ -103691,6 +104088,7 @@ export declare type TrelloMutationApi = {
|
|
|
103691
104088
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
103692
104089
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
103693
104090
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
104091
|
+
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
103694
104092
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
103695
104093
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
103696
104094
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -103738,6 +104136,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
103738
104136
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
103739
104137
|
input: TrelloPinCardInput;
|
|
103740
104138
|
};
|
|
104139
|
+
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
104140
|
+
input: TrelloRemoveBoardStarInput;
|
|
104141
|
+
};
|
|
103741
104142
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
103742
104143
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
103743
104144
|
};
|
|
@@ -104370,6 +104771,15 @@ export declare type TrelloReactionLimits = {
|
|
|
104370
104771
|
perAction?: Maybe<TrelloLimitProps>;
|
|
104371
104772
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
104372
104773
|
};
|
|
104774
|
+
export declare type TrelloRemoveBoardStarInput = {
|
|
104775
|
+
boardId: Scalars['ID']['input'];
|
|
104776
|
+
userId: Scalars['ID']['input'];
|
|
104777
|
+
};
|
|
104778
|
+
export declare type TrelloRemoveBoardStarPayload = Payload & {
|
|
104779
|
+
__typename?: 'TrelloRemoveBoardStarPayload';
|
|
104780
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104781
|
+
success: Scalars['Boolean']['output'];
|
|
104782
|
+
};
|
|
104373
104783
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
104374
104784
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
104375
104785
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -105897,6 +106307,7 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
105897
106307
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
105898
106308
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105899
106309
|
id: Scalars['ID']['input'];
|
|
106310
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105900
106311
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105901
106312
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105902
106313
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -105905,6 +106316,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
105905
106316
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105906
106317
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
105907
106318
|
id: Scalars['ID']['input'];
|
|
106319
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105908
106320
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105909
106321
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105910
106322
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -105913,6 +106325,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
105913
106325
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105914
106326
|
id: Scalars['ID']['input'];
|
|
105915
106327
|
linkType?: InputMaybe<CompassLinkType>;
|
|
106328
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105916
106329
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105917
106330
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105918
106331
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -105926,6 +106339,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
105926
106339
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105927
106340
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
105928
106341
|
id: Scalars['ID']['input'];
|
|
106342
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105929
106343
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
105930
106344
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105931
106345
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -105934,6 +106348,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
105934
106348
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
105935
106349
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
105936
106350
|
id: Scalars['ID']['input'];
|
|
106351
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
105937
106352
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
105938
106353
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
105939
106354
|
weight?: InputMaybe<Scalars['Int']['input']>;
|