@forge/cli-shared 7.1.0-next.6 → 8.0.0-experimental-71cedbc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +116 -0
- package/out/app-logs/graphql-client.d.ts +1 -1
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +33 -18
- package/out/app-logs/view-logs.d.ts +4 -2
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -3
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +4 -1
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +4 -2
- package/out/file-system/file-system-reader.d.ts +1 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +2001 -387
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +329 -115
- package/out/service/bridge-script-service.d.ts +1 -0
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/i18n-resource-bundling-service.d.ts +1 -0
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.d.ts +1 -0
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +2 -3
- package/out/ui/command-line-ui.d.ts +0 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +0 -5
- package/out/ui/logger.d.ts +0 -1
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +0 -2
- package/out/ui/text.d.ts +0 -14
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -20
- package/package.json +3 -3
|
@@ -123,6 +123,350 @@ export declare type AiConfigResponse = {
|
|
|
123
123
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
124
124
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
125
125
|
};
|
|
126
|
+
export declare type AvpAddDashboardElementInput = {
|
|
127
|
+
canvasRowId: Scalars['ID']['input'];
|
|
128
|
+
dashboardAri: Scalars['ID']['input'];
|
|
129
|
+
insertIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
130
|
+
};
|
|
131
|
+
export declare type AvpAddDashboardElementPayload = Payload & {
|
|
132
|
+
__typename?: 'AVPAddDashboardElementPayload';
|
|
133
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
134
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135
|
+
success: Scalars['Boolean']['output'];
|
|
136
|
+
};
|
|
137
|
+
export declare type AvpAddDashboardRowInput = {
|
|
138
|
+
dashboardAri: Scalars['ID']['input'];
|
|
139
|
+
height?: InputMaybe<AvpCanvasRowHeight>;
|
|
140
|
+
numElements?: InputMaybe<Scalars['Int']['input']>;
|
|
141
|
+
rowIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
142
|
+
};
|
|
143
|
+
export declare type AvpAddDashboardRowPayload = Payload & {
|
|
144
|
+
__typename?: 'AVPAddDashboardRowPayload';
|
|
145
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
146
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147
|
+
success: Scalars['Boolean']['output'];
|
|
148
|
+
};
|
|
149
|
+
export declare enum AvpCanvasRowHeight {
|
|
150
|
+
Large = "large",
|
|
151
|
+
Medium = "medium",
|
|
152
|
+
Small = "small",
|
|
153
|
+
Xsmall = "xsmall"
|
|
154
|
+
}
|
|
155
|
+
export declare type AvpChart = {
|
|
156
|
+
__typename?: 'AVPChart';
|
|
157
|
+
chartConfig?: Maybe<AvpChartConfig>;
|
|
158
|
+
chartLayout?: Maybe<AvpChartLayout>;
|
|
159
|
+
chartType?: Maybe<Scalars['String']['output']>;
|
|
160
|
+
envVarId?: Maybe<Scalars['ID']['output']>;
|
|
161
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
162
|
+
pipelineId?: Maybe<Scalars['ID']['output']>;
|
|
163
|
+
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
164
|
+
};
|
|
165
|
+
export declare type AvpChartClientSettings = {
|
|
166
|
+
__typename?: 'AVPChartClientSettings';
|
|
167
|
+
options?: Maybe<Array<AvpChartSetting>>;
|
|
168
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
169
|
+
};
|
|
170
|
+
export declare type AvpChartClientSettingsInput = {
|
|
171
|
+
options?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
172
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
+
};
|
|
174
|
+
export declare type AvpChartConfig = {
|
|
175
|
+
__typename?: 'AVPChartConfig';
|
|
176
|
+
clientSettings?: Maybe<AvpChartClientSettings>;
|
|
177
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
178
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
179
|
+
settings?: Maybe<Array<AvpChartSetting>>;
|
|
180
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
181
|
+
};
|
|
182
|
+
export declare type AvpChartConfigInput = {
|
|
183
|
+
clientSettings?: InputMaybe<AvpChartClientSettingsInput>;
|
|
184
|
+
settings?: InputMaybe<Array<AvpChartSettingInput>>;
|
|
185
|
+
};
|
|
186
|
+
export declare type AvpChartInput = {
|
|
187
|
+
chartConfig?: InputMaybe<AvpChartConfigInput>;
|
|
188
|
+
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
189
|
+
envVarId?: InputMaybe<Scalars['ID']['input']>;
|
|
190
|
+
pipelineId?: InputMaybe<Scalars['ID']['input']>;
|
|
191
|
+
templateChartId?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
};
|
|
193
|
+
export declare type AvpChartLayout = {
|
|
194
|
+
__typename?: 'AVPChartLayout';
|
|
195
|
+
blocksHigh?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
blocksWide?: Maybe<Scalars['Int']['output']>;
|
|
197
|
+
x?: Maybe<Scalars['Int']['output']>;
|
|
198
|
+
y?: Maybe<Scalars['Int']['output']>;
|
|
199
|
+
z?: Maybe<Scalars['Int']['output']>;
|
|
200
|
+
};
|
|
201
|
+
export declare type AvpChartSetting = {
|
|
202
|
+
__typename?: 'AVPChartSetting';
|
|
203
|
+
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
204
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
205
|
+
};
|
|
206
|
+
export declare type AvpChartSettingInput = {
|
|
207
|
+
jsonValue?: InputMaybe<Scalars['String']['input']>;
|
|
208
|
+
name: Scalars['String']['input'];
|
|
209
|
+
};
|
|
210
|
+
export declare type AvpClearChartInRowPayload = Payload & {
|
|
211
|
+
__typename?: 'AVPClearChartInRowPayload';
|
|
212
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
213
|
+
errors?: Maybe<Array<MutationError>>;
|
|
214
|
+
success: Scalars['Boolean']['output'];
|
|
215
|
+
};
|
|
216
|
+
export declare type AvpClearChartsInRowInput = {
|
|
217
|
+
dashboardAri: Scalars['ID']['input'];
|
|
218
|
+
rowId: Scalars['ID']['input'];
|
|
219
|
+
};
|
|
220
|
+
export declare type AvpCopyChartInput = {
|
|
221
|
+
chartAri: Scalars['ID']['input'];
|
|
222
|
+
};
|
|
223
|
+
export declare type AvpCopyChartPayload = Payload & {
|
|
224
|
+
__typename?: 'AVPCopyChartPayload';
|
|
225
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
226
|
+
chart?: Maybe<AvpChart>;
|
|
227
|
+
errors?: Maybe<Array<MutationError>>;
|
|
228
|
+
success: Scalars['Boolean']['output'];
|
|
229
|
+
};
|
|
230
|
+
export declare type AvpCopyDashboardRowInput = {
|
|
231
|
+
dashboardAri: Scalars['ID']['input'];
|
|
232
|
+
rowId: Scalars['ID']['input'];
|
|
233
|
+
};
|
|
234
|
+
export declare type AvpCopyDashboardRowPayload = Payload & {
|
|
235
|
+
__typename?: 'AVPCopyDashboardRowPayload';
|
|
236
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
237
|
+
charts?: Maybe<Array<AvpChart>>;
|
|
238
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239
|
+
success: Scalars['Boolean']['output'];
|
|
240
|
+
};
|
|
241
|
+
export declare type AvpCreateChartInput = {
|
|
242
|
+
canvasElementId?: InputMaybe<Scalars['ID']['input']>;
|
|
243
|
+
chart: AvpChartInput;
|
|
244
|
+
dashboardAri: Scalars['ID']['input'];
|
|
245
|
+
};
|
|
246
|
+
export declare type AvpCreateChartPayload = Payload & {
|
|
247
|
+
__typename?: 'AVPCreateChartPayload';
|
|
248
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
249
|
+
chart?: Maybe<AvpChart>;
|
|
250
|
+
errors?: Maybe<Array<MutationError>>;
|
|
251
|
+
success: Scalars['Boolean']['output'];
|
|
252
|
+
};
|
|
253
|
+
export declare type AvpDashboard = {
|
|
254
|
+
__typename?: 'AVPDashboard';
|
|
255
|
+
access?: Maybe<Scalars['Int']['output']>;
|
|
256
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
257
|
+
charts?: Maybe<Array<AvpChart>>;
|
|
258
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
259
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
260
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
261
|
+
envVars?: Maybe<Array<AvpEnvVar>>;
|
|
262
|
+
fromTemplate?: Maybe<Scalars['String']['output']>;
|
|
263
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
264
|
+
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
265
|
+
settings?: Maybe<AvpDashboardSettings>;
|
|
266
|
+
status?: Maybe<AvpDashboardStatus>;
|
|
267
|
+
templateVersion?: Maybe<Scalars['Int']['output']>;
|
|
268
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
269
|
+
trashedAt?: Maybe<Scalars['String']['output']>;
|
|
270
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
271
|
+
};
|
|
272
|
+
export declare type AvpDashboardCanvasLayout = {
|
|
273
|
+
__typename?: 'AVPDashboardCanvasLayout';
|
|
274
|
+
controlIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
275
|
+
rows?: Maybe<Array<AvpDashboardCanvasLayoutRow>>;
|
|
276
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
277
|
+
};
|
|
278
|
+
export declare type AvpDashboardCanvasLayoutElement = {
|
|
279
|
+
__typename?: 'AVPDashboardCanvasLayoutElement';
|
|
280
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
281
|
+
item?: Maybe<AvpDashboardCanvasLayoutItem>;
|
|
282
|
+
span?: Maybe<Scalars['Int']['output']>;
|
|
283
|
+
};
|
|
284
|
+
export declare type AvpDashboardCanvasLayoutItem = {
|
|
285
|
+
__typename?: 'AVPDashboardCanvasLayoutItem';
|
|
286
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
287
|
+
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
288
|
+
};
|
|
289
|
+
export declare type AvpDashboardCanvasLayoutRow = {
|
|
290
|
+
__typename?: 'AVPDashboardCanvasLayoutRow';
|
|
291
|
+
elements?: Maybe<Array<AvpDashboardCanvasLayoutElement>>;
|
|
292
|
+
height?: Maybe<AvpCanvasRowHeight>;
|
|
293
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
294
|
+
};
|
|
295
|
+
export declare type AvpDashboardInput = {
|
|
296
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
297
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
298
|
+
settings?: InputMaybe<AvpDashboardSettingsInput>;
|
|
299
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
300
|
+
};
|
|
301
|
+
export declare type AvpDashboardSettings = {
|
|
302
|
+
__typename?: 'AVPDashboardSettings';
|
|
303
|
+
allowTzOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
304
|
+
allowViewerRefresh?: Maybe<Scalars['Boolean']['output']>;
|
|
305
|
+
autoApplyVars?: Maybe<Scalars['Boolean']['output']>;
|
|
306
|
+
autoRefreshInterval?: Maybe<Scalars['Int']['output']>;
|
|
307
|
+
cacheDuration?: Maybe<Scalars['Int']['output']>;
|
|
308
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
309
|
+
refreshMethod?: Maybe<AvpRefreshMethod>;
|
|
310
|
+
subscriptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
311
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
312
|
+
};
|
|
313
|
+
export declare type AvpDashboardSettingsInput = {
|
|
314
|
+
allowTzOverride?: InputMaybe<Scalars['Boolean']['input']>;
|
|
315
|
+
allowViewerRefresh?: InputMaybe<Scalars['Boolean']['input']>;
|
|
316
|
+
autoApplyVars?: InputMaybe<Scalars['Boolean']['input']>;
|
|
317
|
+
autoRefreshInterval?: InputMaybe<Scalars['Int']['input']>;
|
|
318
|
+
cacheDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
319
|
+
refreshMethod?: InputMaybe<AvpRefreshMethod>;
|
|
320
|
+
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
321
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
322
|
+
};
|
|
323
|
+
export declare enum AvpDashboardStatus {
|
|
324
|
+
Active = "ACTIVE",
|
|
325
|
+
Archived = "ARCHIVED",
|
|
326
|
+
Trashed = "TRASHED"
|
|
327
|
+
}
|
|
328
|
+
export declare type AvpDeleteChartInput = {
|
|
329
|
+
chartAri: Scalars['ID']['input'];
|
|
330
|
+
};
|
|
331
|
+
export declare type AvpDeleteChartPayload = Payload & {
|
|
332
|
+
__typename?: 'AVPDeleteChartPayload';
|
|
333
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
335
|
+
success: Scalars['Boolean']['output'];
|
|
336
|
+
};
|
|
337
|
+
export declare type AvpEnvVar = {
|
|
338
|
+
__typename?: 'AVPEnvVar';
|
|
339
|
+
chartId?: Maybe<Scalars['ID']['output']>;
|
|
340
|
+
dataType?: Maybe<AvpEnvVarDataType>;
|
|
341
|
+
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
342
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
343
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
344
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
345
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
346
|
+
};
|
|
347
|
+
export declare enum AvpEnvVarDataType {
|
|
348
|
+
Boolean = "BOOLEAN",
|
|
349
|
+
Date = "DATE",
|
|
350
|
+
Datetime = "DATETIME",
|
|
351
|
+
DateRange = "DATE_RANGE",
|
|
352
|
+
Number = "NUMBER",
|
|
353
|
+
NumberRange = "NUMBER_RANGE",
|
|
354
|
+
Text = "TEXT"
|
|
355
|
+
}
|
|
356
|
+
export declare type AvpMoveCanvasElementInput = {
|
|
357
|
+
dashboardAri: Scalars['ID']['input'];
|
|
358
|
+
sourceElementId: Scalars['ID']['input'];
|
|
359
|
+
sourceRowId: Scalars['ID']['input'];
|
|
360
|
+
targetElementIndex: Scalars['Int']['input'];
|
|
361
|
+
targetRowId: Scalars['ID']['input'];
|
|
362
|
+
};
|
|
363
|
+
export declare type AvpMoveCanvasElementPayload = Payload & {
|
|
364
|
+
__typename?: 'AVPMoveCanvasElementPayload';
|
|
365
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
367
|
+
success: Scalars['Boolean']['output'];
|
|
368
|
+
};
|
|
369
|
+
export declare type AvpMoveCanvasElementToNewRowInput = {
|
|
370
|
+
dashboardAri: Scalars['ID']['input'];
|
|
371
|
+
sourceElementId: Scalars['ID']['input'];
|
|
372
|
+
sourceRowId: Scalars['ID']['input'];
|
|
373
|
+
targetRowIndex: Scalars['Int']['input'];
|
|
374
|
+
};
|
|
375
|
+
export declare type AvpMoveCanvasElementToNewRowPayload = Payload & {
|
|
376
|
+
__typename?: 'AVPMoveCanvasElementToNewRowPayload';
|
|
377
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
379
|
+
success: Scalars['Boolean']['output'];
|
|
380
|
+
};
|
|
381
|
+
export declare type AvpMoveDashboardRowInput = {
|
|
382
|
+
dashboardAri: Scalars['ID']['input'];
|
|
383
|
+
sourceRowId: Scalars['ID']['input'];
|
|
384
|
+
targetRowIndex: Scalars['Int']['input'];
|
|
385
|
+
};
|
|
386
|
+
export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
387
|
+
__typename?: 'AVPMoveDashboardRowPayload';
|
|
388
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
389
|
+
errors?: Maybe<Array<MutationError>>;
|
|
390
|
+
success: Scalars['Boolean']['output'];
|
|
391
|
+
};
|
|
392
|
+
export declare enum AvpRefreshMethod {
|
|
393
|
+
RefreshAuto = "REFRESH_AUTO",
|
|
394
|
+
RefreshLoad = "REFRESH_LOAD",
|
|
395
|
+
RefreshManual = "REFRESH_MANUAL",
|
|
396
|
+
RefreshSmart = "REFRESH_SMART"
|
|
397
|
+
}
|
|
398
|
+
export declare type AvpRemoveDashboardElementInput = {
|
|
399
|
+
canvasElementId: Scalars['ID']['input'];
|
|
400
|
+
dashboardAri: Scalars['ID']['input'];
|
|
401
|
+
};
|
|
402
|
+
export declare type AvpRemoveDashboardElementPayload = Payload & {
|
|
403
|
+
__typename?: 'AVPRemoveDashboardElementPayload';
|
|
404
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
406
|
+
success: Scalars['Boolean']['output'];
|
|
407
|
+
};
|
|
408
|
+
export declare type AvpRemoveDashboardRowInput = {
|
|
409
|
+
dashboardAri: Scalars['ID']['input'];
|
|
410
|
+
rowId: Scalars['ID']['input'];
|
|
411
|
+
};
|
|
412
|
+
export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
413
|
+
__typename?: 'AVPRemoveDashboardRowPayload';
|
|
414
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
415
|
+
errors?: Maybe<Array<MutationError>>;
|
|
416
|
+
success: Scalars['Boolean']['output'];
|
|
417
|
+
};
|
|
418
|
+
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
419
|
+
dashboardAri: Scalars['ID']['input'];
|
|
420
|
+
elementId: Scalars['ID']['input'];
|
|
421
|
+
};
|
|
422
|
+
export declare type AvpToggleCanvasElementExpandedPayload = Payload & {
|
|
423
|
+
__typename?: 'AVPToggleCanvasElementExpandedPayload';
|
|
424
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
425
|
+
errors?: Maybe<Array<MutationError>>;
|
|
426
|
+
success: Scalars['Boolean']['output'];
|
|
427
|
+
};
|
|
428
|
+
export declare type AvpUpdateChartInput = {
|
|
429
|
+
chart: AvpChartInput;
|
|
430
|
+
chartAri: Scalars['ID']['input'];
|
|
431
|
+
};
|
|
432
|
+
export declare type AvpUpdateChartPayload = Payload & {
|
|
433
|
+
__typename?: 'AVPUpdateChartPayload';
|
|
434
|
+
chart?: Maybe<AvpChart>;
|
|
435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
436
|
+
success: Scalars['Boolean']['output'];
|
|
437
|
+
};
|
|
438
|
+
export declare type AvpUpdateDashboardInput = {
|
|
439
|
+
dashboard: AvpDashboardInput;
|
|
440
|
+
dashboardAri: Scalars['ID']['input'];
|
|
441
|
+
};
|
|
442
|
+
export declare type AvpUpdateDashboardPayload = Payload & {
|
|
443
|
+
__typename?: 'AVPUpdateDashboardPayload';
|
|
444
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
446
|
+
success: Scalars['Boolean']['output'];
|
|
447
|
+
};
|
|
448
|
+
export declare type AvpUpdateDashboardRowHeightInput = {
|
|
449
|
+
dashboardAri: Scalars['ID']['input'];
|
|
450
|
+
height: AvpCanvasRowHeight;
|
|
451
|
+
rowId: Scalars['ID']['input'];
|
|
452
|
+
};
|
|
453
|
+
export declare type AvpUpdateDashboardRowHeightPayload = Payload & {
|
|
454
|
+
__typename?: 'AVPUpdateDashboardRowHeightPayload';
|
|
455
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
457
|
+
success: Scalars['Boolean']['output'];
|
|
458
|
+
};
|
|
459
|
+
export declare type AvpUpdateDashboardRowNumElementsInput = {
|
|
460
|
+
dashboardAri: Scalars['ID']['input'];
|
|
461
|
+
numElements: Scalars['Int']['input'];
|
|
462
|
+
rowId: Scalars['ID']['input'];
|
|
463
|
+
};
|
|
464
|
+
export declare type AvpUpdateDashboardRowNumElementsPayload = Payload & {
|
|
465
|
+
__typename?: 'AVPUpdateDashboardRowNumElementsPayload';
|
|
466
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
467
|
+
errors?: Maybe<Array<MutationError>>;
|
|
468
|
+
success: Scalars['Boolean']['output'];
|
|
469
|
+
};
|
|
126
470
|
export declare enum AcceptableResponse {
|
|
127
471
|
False = "FALSE",
|
|
128
472
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -725,6 +1069,36 @@ export declare type AddPublicLinkPermissionsPayload = Payload & {
|
|
|
725
1069
|
success: Scalars['Boolean']['output'];
|
|
726
1070
|
};
|
|
727
1071
|
export declare type Admin = JiraUser | JiraUserGroup;
|
|
1072
|
+
export declare type AdminAccessUrl = {
|
|
1073
|
+
__typename?: 'AdminAccessUrl';
|
|
1074
|
+
expirationDate?: Maybe<Scalars['String']['output']>;
|
|
1075
|
+
id: Scalars['ID']['output'];
|
|
1076
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
1077
|
+
resources?: Maybe<Array<AdminResource>>;
|
|
1078
|
+
status: Scalars['String']['output'];
|
|
1079
|
+
url: Scalars['String']['output'];
|
|
1080
|
+
};
|
|
1081
|
+
export declare type AdminAccessUrlConnection = {
|
|
1082
|
+
__typename?: 'AdminAccessUrlConnection';
|
|
1083
|
+
edges?: Maybe<Array<AdminAccessUrlEdge>>;
|
|
1084
|
+
pageInfo: PageInfo;
|
|
1085
|
+
};
|
|
1086
|
+
export declare type AdminAccessUrlCreationResponsePayload = Payload & {
|
|
1087
|
+
__typename?: 'AdminAccessUrlCreationResponsePayload';
|
|
1088
|
+
accessUrl?: Maybe<AdminAccessUrl>;
|
|
1089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1090
|
+
success: Scalars['Boolean']['output'];
|
|
1091
|
+
};
|
|
1092
|
+
export declare type AdminAccessUrlDeletionResponsePayload = Payload & {
|
|
1093
|
+
__typename?: 'AdminAccessUrlDeletionResponsePayload';
|
|
1094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1095
|
+
success: Scalars['Boolean']['output'];
|
|
1096
|
+
};
|
|
1097
|
+
export declare type AdminAccessUrlEdge = {
|
|
1098
|
+
__typename?: 'AdminAccessUrlEdge';
|
|
1099
|
+
cursor: Scalars['String']['output'];
|
|
1100
|
+
node: AdminAccessUrl;
|
|
1101
|
+
};
|
|
728
1102
|
export declare type AdminAnnouncementBannerFeature = {
|
|
729
1103
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
730
1104
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -746,6 +1120,12 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
746
1120
|
ScheduledStartDate = "SCHEDULED_START_DATE",
|
|
747
1121
|
Visibility = "VISIBILITY"
|
|
748
1122
|
}
|
|
1123
|
+
export declare type AdminPolicy = AdminAccessUrl;
|
|
1124
|
+
export declare type AdminResource = AdminSite;
|
|
1125
|
+
export declare type AdminSite = {
|
|
1126
|
+
__typename?: 'AdminSite';
|
|
1127
|
+
id: Scalars['ID']['output'];
|
|
1128
|
+
};
|
|
749
1129
|
export declare type AgentAiContextPanelResponse = {
|
|
750
1130
|
__typename?: 'AgentAIContextPanelResponse';
|
|
751
1131
|
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
@@ -817,6 +1197,7 @@ export declare type AgentStudioAgentEdge = {
|
|
|
817
1197
|
};
|
|
818
1198
|
export declare type AgentStudioAgentQueryInput = {
|
|
819
1199
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
+
onlyCodingAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
820
1201
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
821
1202
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
822
1203
|
};
|
|
@@ -836,8 +1217,11 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
836
1217
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
837
1218
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
838
1219
|
creator?: Maybe<User>;
|
|
1220
|
+
creatorType?: Maybe<Scalars['String']['output']>;
|
|
839
1221
|
description?: Maybe<Scalars['String']['output']>;
|
|
1222
|
+
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
840
1223
|
id: Scalars['ID']['output'];
|
|
1224
|
+
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
841
1225
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
842
1226
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
843
1227
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
@@ -2052,6 +2436,14 @@ export declare type AppStorageAdmin = {
|
|
|
2052
2436
|
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2053
2437
|
input: AppStorageKvsQueryInput;
|
|
2054
2438
|
};
|
|
2439
|
+
export declare type AppStorageAdminMutation = {
|
|
2440
|
+
__typename?: 'AppStorageAdminMutation';
|
|
2441
|
+
appId: Scalars['ID']['output'];
|
|
2442
|
+
kvsSet?: Maybe<AppStorageKvsSetPayload>;
|
|
2443
|
+
};
|
|
2444
|
+
export declare type AppStorageAdminMutationKvsSetArgs = {
|
|
2445
|
+
input: AppStorageKvsSetInput;
|
|
2446
|
+
};
|
|
2055
2447
|
export declare type AppStorageCustomEntityMutation = {
|
|
2056
2448
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2057
2449
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2083,6 +2475,19 @@ export declare type AppStorageKvsQueryPayload = {
|
|
|
2083
2475
|
pageInfo: AppStoragePageInfo;
|
|
2084
2476
|
totalCount: Scalars['Int']['output'];
|
|
2085
2477
|
};
|
|
2478
|
+
export declare type AppStorageKvsSetInput = {
|
|
2479
|
+
contextAri: Scalars['ID']['input'];
|
|
2480
|
+
environmentId: Scalars['ID']['input'];
|
|
2481
|
+
installationId: Scalars['ID']['input'];
|
|
2482
|
+
key: Scalars['String']['input'];
|
|
2483
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2484
|
+
value: Scalars['AppStorageEntityValue']['input'];
|
|
2485
|
+
};
|
|
2486
|
+
export declare type AppStorageKvsSetPayload = {
|
|
2487
|
+
__typename?: 'AppStorageKvsSetPayload';
|
|
2488
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2489
|
+
success: Scalars['Boolean']['output'];
|
|
2490
|
+
};
|
|
2086
2491
|
export declare type AppStorageMutation = {
|
|
2087
2492
|
__typename?: 'AppStorageMutation';
|
|
2088
2493
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -3697,6 +4102,15 @@ export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienc
|
|
|
3697
4102
|
export declare enum CcpCancelEntitlementExperienceCapabilityReasonCode {
|
|
3698
4103
|
EntitlementIsCollectionInstance = "ENTITLEMENT_IS_COLLECTION_INSTANCE"
|
|
3699
4104
|
}
|
|
4105
|
+
export declare type CcpCatalogAccount = Node & {
|
|
4106
|
+
__typename?: 'CcpCatalogAccount';
|
|
4107
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4108
|
+
id: Scalars['ID']['output'];
|
|
4109
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
4110
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4111
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4112
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
4113
|
+
};
|
|
3700
4114
|
export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability & {
|
|
3701
4115
|
__typename?: 'CcpChangeOfferingExperienceCapability';
|
|
3702
4116
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -3751,9 +4165,16 @@ export declare type CcpCreateEntitlementExperienceCapability = CommerceExperienc
|
|
|
3751
4165
|
offering?: Maybe<CcpOffering>;
|
|
3752
4166
|
};
|
|
3753
4167
|
export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
4168
|
+
AnnualToMonthlyTransition = "ANNUAL_TO_MONTHLY_TRANSITION",
|
|
4169
|
+
AnnualTransitionNotSupported = "ANNUAL_TRANSITION_NOT_SUPPORTED",
|
|
4170
|
+
EntitlementsInDifferentIg = "ENTITLEMENTS_IN_DIFFERENT_IG",
|
|
4171
|
+
EntitlementsInDifferentTxa = "ENTITLEMENTS_IN_DIFFERENT_TXA",
|
|
4172
|
+
EntitlementsOnDifferentBillingCycle = "ENTITLEMENTS_ON_DIFFERENT_BILLING_CYCLE",
|
|
3754
4173
|
InsufficientInput = "INSUFFICIENT_INPUT",
|
|
4174
|
+
InvoiceGroupInDunning = "INVOICE_GROUP_IN_DUNNING",
|
|
3755
4175
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3756
4176
|
NoOfferingForProduct = "NO_OFFERING_FOR_PRODUCT",
|
|
4177
|
+
UnableToSourceTxa = "UNABLE_TO_SOURCE_TXA",
|
|
3757
4178
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3758
4179
|
}
|
|
3759
4180
|
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
@@ -3808,6 +4229,66 @@ export declare type CcpCustomisedValues = {
|
|
|
3808
4229
|
applicationReason?: Maybe<CcpApplicationReason>;
|
|
3809
4230
|
benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
|
|
3810
4231
|
};
|
|
4232
|
+
export declare type CcpCustomizationSetCoupling = {
|
|
4233
|
+
__typename?: 'CcpCustomizationSetCoupling';
|
|
4234
|
+
operation?: Maybe<CcpCustomizationSetCouplingOperation>;
|
|
4235
|
+
type?: Maybe<CcpCustomizationSetCouplingType>;
|
|
4236
|
+
};
|
|
4237
|
+
export declare type CcpCustomizationSetCouplingOperation = {
|
|
4238
|
+
__typename?: 'CcpCustomizationSetCouplingOperation';
|
|
4239
|
+
comparator?: Maybe<CcpCustomizationSetCouplingOperationComparator>;
|
|
4240
|
+
computeArguments?: Maybe<CcpCustomizationSetCouplingOperationComputeArgument>;
|
|
4241
|
+
relaxContext?: Maybe<CcpCustomizationSetCouplingOperationRelaxContext>;
|
|
4242
|
+
source?: Maybe<CcpCustomizationSetCouplingOperationSource>;
|
|
4243
|
+
type?: Maybe<CcpCustomizationSetCouplingOperationType>;
|
|
4244
|
+
};
|
|
4245
|
+
export declare enum CcpCustomizationSetCouplingOperationComparator {
|
|
4246
|
+
Equal = "EQUAL",
|
|
4247
|
+
GreaterThan = "GREATER_THAN",
|
|
4248
|
+
GreaterThanOrEqual = "GREATER_THAN_OR_EQUAL",
|
|
4249
|
+
LessThan = "LESS_THAN",
|
|
4250
|
+
LessThanOrEqual = "LESS_THAN_OR_EQUAL",
|
|
4251
|
+
MatchTo = "MATCH_TO"
|
|
4252
|
+
}
|
|
4253
|
+
export declare type CcpCustomizationSetCouplingOperationComputeArgument = {
|
|
4254
|
+
__typename?: 'CcpCustomizationSetCouplingOperationComputeArgument';
|
|
4255
|
+
tag?: Maybe<CcpCustomizationSetCouplingOperationComputeArgumentTag>;
|
|
4256
|
+
};
|
|
4257
|
+
export declare enum CcpCustomizationSetCouplingOperationComputeArgumentTag {
|
|
4258
|
+
MultiInstanceTag = "MULTI_INSTANCE_TAG"
|
|
4259
|
+
}
|
|
4260
|
+
export declare type CcpCustomizationSetCouplingOperationRelaxContext = {
|
|
4261
|
+
__typename?: 'CcpCustomizationSetCouplingOperationRelaxContext';
|
|
4262
|
+
applicableGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
4263
|
+
inTrial?: Maybe<CcpCustomizationSetCouplingOperationRelaxContextInTrial>;
|
|
4264
|
+
};
|
|
4265
|
+
export declare enum CcpCustomizationSetCouplingOperationRelaxContextInTrial {
|
|
4266
|
+
Any = "ANY",
|
|
4267
|
+
Both = "BOTH",
|
|
4268
|
+
From = "FROM",
|
|
4269
|
+
To = "TO"
|
|
4270
|
+
}
|
|
4271
|
+
export declare enum CcpCustomizationSetCouplingOperationSource {
|
|
4272
|
+
Relationship = "RELATIONSHIP",
|
|
4273
|
+
RelationshipFrom = "RELATIONSHIP_FROM",
|
|
4274
|
+
RelationshipTo = "RELATIONSHIP_TO",
|
|
4275
|
+
RelationshipToMax = "RELATIONSHIP_TO_MAX"
|
|
4276
|
+
}
|
|
4277
|
+
export declare enum CcpCustomizationSetCouplingOperationType {
|
|
4278
|
+
Compute = "COMPUTE",
|
|
4279
|
+
Constraint = "CONSTRAINT"
|
|
4280
|
+
}
|
|
4281
|
+
export declare enum CcpCustomizationSetCouplingType {
|
|
4282
|
+
CouplingBillingAnchorDate = "COUPLING_BILLING_ANCHOR_DATE",
|
|
4283
|
+
CouplingBillingCycle = "COUPLING_BILLING_CYCLE",
|
|
4284
|
+
CouplingBillingTermedDate = "COUPLING_BILLING_TERMED_DATE",
|
|
4285
|
+
CouplingChargeElementBillableLimit = "COUPLING_CHARGE_ELEMENT_BILLABLE_LIMIT",
|
|
4286
|
+
CouplingChargeType = "COUPLING_CHARGE_TYPE",
|
|
4287
|
+
CouplingInvoiceGroup = "COUPLING_INVOICE_GROUP",
|
|
4288
|
+
CouplingTagMultiInstanceType = "COUPLING_TAG_MULTI_INSTANCE_TYPE",
|
|
4289
|
+
CouplingTransactionAccount = "COUPLING_TRANSACTION_ACCOUNT",
|
|
4290
|
+
CouplingTrialEndDate = "COUPLING_TRIAL_END_DATE"
|
|
4291
|
+
}
|
|
3811
4292
|
export declare type CcpCycle = CommercePrimaryCycle & {
|
|
3812
4293
|
__typename?: 'CcpCycle';
|
|
3813
4294
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -3943,14 +4424,29 @@ export declare enum CcpEntitlementStatus {
|
|
|
3943
4424
|
Active = "ACTIVE",
|
|
3944
4425
|
Inactive = "INACTIVE"
|
|
3945
4426
|
}
|
|
3946
|
-
export declare type CcpEntitlementTemplate = {
|
|
4427
|
+
export declare type CcpEntitlementTemplate = Node & {
|
|
3947
4428
|
__typename?: 'CcpEntitlementTemplate';
|
|
4429
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4430
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
3948
4431
|
data?: Maybe<Scalars['String']['output']>;
|
|
4432
|
+
defaultRevision?: Maybe<Scalars['Boolean']['output']>;
|
|
4433
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4434
|
+
id: Scalars['ID']['output'];
|
|
3949
4435
|
key?: Maybe<Scalars['ID']['output']>;
|
|
4436
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
3950
4437
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
4438
|
+
status?: Maybe<CcpEntitlementTemplateStatus>;
|
|
4439
|
+
uniqueKey?: Maybe<Scalars['ID']['output']>;
|
|
4440
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
3951
4441
|
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
3952
4442
|
version?: Maybe<Scalars['Int']['output']>;
|
|
3953
4443
|
};
|
|
4444
|
+
export declare enum CcpEntitlementTemplateStatus {
|
|
4445
|
+
Deprecated = "DEPRECATED",
|
|
4446
|
+
None = "NONE",
|
|
4447
|
+
Published = "PUBLISHED",
|
|
4448
|
+
Unpublished = "UNPUBLISHED"
|
|
4449
|
+
}
|
|
3954
4450
|
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
3955
4451
|
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
3956
4452
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -4166,6 +4662,137 @@ export declare type CcpOfferingRelationshipEdge = {
|
|
|
4166
4662
|
cursor: Scalars['String']['output'];
|
|
4167
4663
|
node?: Maybe<CcpOfferingRelationship>;
|
|
4168
4664
|
};
|
|
4665
|
+
export declare type CcpOfferingRelationshipTemplate = Node & {
|
|
4666
|
+
__typename?: 'CcpOfferingRelationshipTemplate';
|
|
4667
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4668
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4669
|
+
customizationSet?: Maybe<CcpOfferingRelationshipTemplateCustomizationSet>;
|
|
4670
|
+
customizationSetPreview?: Maybe<CcpOfferingRelationshipTemplateCustomizationSetPreview>;
|
|
4671
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4672
|
+
from?: Maybe<CcpOfferingRelationshipTemplateNode>;
|
|
4673
|
+
id: Scalars['ID']['output'];
|
|
4674
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
4675
|
+
status?: Maybe<CcpOfferingRelationshipTemplateStatus>;
|
|
4676
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
4677
|
+
to?: Maybe<CcpOfferingRelationshipTemplateNode>;
|
|
4678
|
+
type?: Maybe<CcpOfferingRelationshipTemplateType>;
|
|
4679
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4680
|
+
version?: Maybe<Scalars['Float']['output']>;
|
|
4681
|
+
};
|
|
4682
|
+
export declare type CcpOfferingRelationshipTemplateCardinality = {
|
|
4683
|
+
__typename?: 'CcpOfferingRelationshipTemplateCardinality';
|
|
4684
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
4685
|
+
min?: Maybe<Scalars['Int']['output']>;
|
|
4686
|
+
};
|
|
4687
|
+
export declare type CcpOfferingRelationshipTemplateConditions = {
|
|
4688
|
+
__typename?: 'CcpOfferingRelationshipTemplateConditions';
|
|
4689
|
+
hostingType?: Maybe<CcpOfferingRelationshipTemplateConditionsHostingType>;
|
|
4690
|
+
};
|
|
4691
|
+
export declare enum CcpOfferingRelationshipTemplateConditionsHostingType {
|
|
4692
|
+
Cloud = "CLOUD",
|
|
4693
|
+
Datacenter = "DATACENTER",
|
|
4694
|
+
Server = "SERVER"
|
|
4695
|
+
}
|
|
4696
|
+
export declare enum CcpOfferingRelationshipTemplateCustomizationSet {
|
|
4697
|
+
AddOnBillingCoupled = "ADD_ON_BILLING_COUPLED",
|
|
4698
|
+
AppDatacenter = "APP_DATACENTER",
|
|
4699
|
+
CollectionEnterprise = "COLLECTION_ENTERPRISE",
|
|
4700
|
+
CollectionNonEnterprise = "COLLECTION_NON_ENTERPRISE",
|
|
4701
|
+
CollectionTrialEnterprise = "COLLECTION_TRIAL_ENTERPRISE",
|
|
4702
|
+
Enterprise = "ENTERPRISE",
|
|
4703
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
4704
|
+
JiraFamily = "JIRA_FAMILY",
|
|
4705
|
+
Marketplace = "MARKETPLACE",
|
|
4706
|
+
MarketplaceMultiInstance = "MARKETPLACE_MULTI_INSTANCE",
|
|
4707
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
4708
|
+
Sandbox = "SANDBOX",
|
|
4709
|
+
SandboxDependenceContainer = "SANDBOX_DEPENDENCE_CONTAINER",
|
|
4710
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
4711
|
+
}
|
|
4712
|
+
export declare type CcpOfferingRelationshipTemplateCustomizationSetPreview = {
|
|
4713
|
+
__typename?: 'CcpOfferingRelationshipTemplateCustomizationSetPreview';
|
|
4714
|
+
coupling?: Maybe<Array<Maybe<CcpCustomizationSetCoupling>>>;
|
|
4715
|
+
name?: Maybe<CcpOfferingRelationshipTemplateCustomizationSet>;
|
|
4716
|
+
overrideBehaviors?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplateOverrideBehavior>>>;
|
|
4717
|
+
processorConfigs?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplateProcessorConfigMapEntry>>>;
|
|
4718
|
+
};
|
|
4719
|
+
export declare type CcpOfferingRelationshipTemplateNode = {
|
|
4720
|
+
__typename?: 'CcpOfferingRelationshipTemplateNode';
|
|
4721
|
+
cardinality?: Maybe<CcpOfferingRelationshipTemplateCardinality>;
|
|
4722
|
+
selectors?: Maybe<CcpOfferingRelationshipTemplateSelectors>;
|
|
4723
|
+
};
|
|
4724
|
+
export declare type CcpOfferingRelationshipTemplateOverrideBehavior = {
|
|
4725
|
+
__typename?: 'CcpOfferingRelationshipTemplateOverrideBehavior';
|
|
4726
|
+
params?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4727
|
+
trigger?: Maybe<CcpOfferingRelationshipTemplateOverrideTrigger>;
|
|
4728
|
+
type?: Maybe<CcpOfferingRelationshipTemplateOverrideType>;
|
|
4729
|
+
};
|
|
4730
|
+
export declare enum CcpOfferingRelationshipTemplateOverrideTrigger {
|
|
4731
|
+
Any = "ANY",
|
|
4732
|
+
CouplingConstraintMultiInstanceTag = "COUPLING_CONSTRAINT_MULTI_INSTANCE_TAG",
|
|
4733
|
+
CreatingFrom = "CREATING_FROM",
|
|
4734
|
+
CreatingTo = "CREATING_TO",
|
|
4735
|
+
DeactivatingFrom = "DEACTIVATING_FROM",
|
|
4736
|
+
DeactivatingTo = "DEACTIVATING_TO",
|
|
4737
|
+
TermEndDateOnFrom = "TERM_END_DATE_ON_FROM",
|
|
4738
|
+
UpdatingFrom = "UPDATING_FROM",
|
|
4739
|
+
UpdatingTo = "UPDATING_TO"
|
|
4740
|
+
}
|
|
4741
|
+
export declare enum CcpOfferingRelationshipTemplateOverrideType {
|
|
4742
|
+
DeactivateEntitlement = "DEACTIVATE_ENTITLEMENT",
|
|
4743
|
+
DeactivateRelationship = "DEACTIVATE_RELATIONSHIP",
|
|
4744
|
+
DeactivateTo = "DEACTIVATE_TO",
|
|
4745
|
+
InheritChargeElementBillableLimit = "INHERIT_CHARGE_ELEMENT_BILLABLE_LIMIT",
|
|
4746
|
+
InheritTrialEndDate = "INHERIT_TRIAL_END_DATE",
|
|
4747
|
+
SoftTermEntitlement = "SOFT_TERM_ENTITLEMENT"
|
|
4748
|
+
}
|
|
4749
|
+
export declare type CcpOfferingRelationshipTemplateProcessorConfig = {
|
|
4750
|
+
__typename?: 'CcpOfferingRelationshipTemplateProcessorConfig';
|
|
4751
|
+
params?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4752
|
+
strategy?: Maybe<CcpOfferingRelationshipTemplateProcessorConfigStrategy>;
|
|
4753
|
+
};
|
|
4754
|
+
export declare type CcpOfferingRelationshipTemplateProcessorConfigMapEntry = {
|
|
4755
|
+
__typename?: 'CcpOfferingRelationshipTemplateProcessorConfigMapEntry';
|
|
4756
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
4757
|
+
value?: Maybe<CcpOfferingRelationshipTemplateProcessorConfig>;
|
|
4758
|
+
};
|
|
4759
|
+
export declare enum CcpOfferingRelationshipTemplateProcessorConfigStrategy {
|
|
4760
|
+
ComputeGlpAsWhole = "COMPUTE_GLP_AS_WHOLE"
|
|
4761
|
+
}
|
|
4762
|
+
export declare type CcpOfferingRelationshipTemplateSelectorGroup = {
|
|
4763
|
+
__typename?: 'CcpOfferingRelationshipTemplateSelectorGroup';
|
|
4764
|
+
cardinality?: Maybe<CcpOfferingRelationshipTemplateSelectorGroupCardinality>;
|
|
4765
|
+
conditions?: Maybe<CcpOfferingRelationshipTemplateConditions>;
|
|
4766
|
+
group?: Maybe<Scalars['String']['output']>;
|
|
4767
|
+
ids?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
4768
|
+
};
|
|
4769
|
+
export declare type CcpOfferingRelationshipTemplateSelectorGroupCardinality = {
|
|
4770
|
+
__typename?: 'CcpOfferingRelationshipTemplateSelectorGroupCardinality';
|
|
4771
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
4772
|
+
};
|
|
4773
|
+
export declare type CcpOfferingRelationshipTemplateSelectors = {
|
|
4774
|
+
__typename?: 'CcpOfferingRelationshipTemplateSelectors';
|
|
4775
|
+
in?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplateSelectorGroup>>>;
|
|
4776
|
+
};
|
|
4777
|
+
export declare enum CcpOfferingRelationshipTemplateStatus {
|
|
4778
|
+
Active = "ACTIVE",
|
|
4779
|
+
Deprecated = "DEPRECATED",
|
|
4780
|
+
Draft = "DRAFT",
|
|
4781
|
+
None = "NONE"
|
|
4782
|
+
}
|
|
4783
|
+
export declare enum CcpOfferingRelationshipTemplateType {
|
|
4784
|
+
AddonDependence = "ADDON_DEPENDENCE",
|
|
4785
|
+
AppCompatibility = "APP_COMPATIBILITY",
|
|
4786
|
+
AppDependence = "APP_DEPENDENCE",
|
|
4787
|
+
Collection = "COLLECTION",
|
|
4788
|
+
CollectionTrial = "COLLECTION_TRIAL",
|
|
4789
|
+
Enterprise = "ENTERPRISE",
|
|
4790
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
4791
|
+
FamilyContainer = "FAMILY_CONTAINER",
|
|
4792
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
4793
|
+
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
4794
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
4795
|
+
}
|
|
4169
4796
|
export declare enum CcpOfferingStatus {
|
|
4170
4797
|
Active = "ACTIVE",
|
|
4171
4798
|
AtNotice = "AT_NOTICE",
|
|
@@ -4584,11 +5211,15 @@ export declare type CcpPurchaseOrder = {
|
|
|
4584
5211
|
};
|
|
4585
5212
|
export declare type CcpQueryApi = {
|
|
4586
5213
|
__typename?: 'CcpQueryApi';
|
|
5214
|
+
catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
4587
5215
|
entitlement?: Maybe<CcpEntitlement>;
|
|
5216
|
+
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
4588
5217
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
5218
|
+
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4589
5219
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4590
5220
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
4591
5221
|
offering?: Maybe<CcpOffering>;
|
|
5222
|
+
offeringRelationshipTemplates?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplate>>>;
|
|
4592
5223
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4593
5224
|
paymentMethods?: Maybe<Array<Maybe<CcpPaymentMethod>>>;
|
|
4594
5225
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
@@ -4600,18 +5231,30 @@ export declare type CcpQueryApi = {
|
|
|
4600
5231
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4601
5232
|
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4602
5233
|
};
|
|
5234
|
+
export declare type CcpQueryApiCatalogAccountsArgs = {
|
|
5235
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5236
|
+
};
|
|
4603
5237
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4604
5238
|
id: Scalars['ID']['input'];
|
|
4605
5239
|
};
|
|
5240
|
+
export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
5241
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5242
|
+
};
|
|
4606
5243
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
4607
5244
|
ids: Array<Scalars['ID']['input']>;
|
|
4608
5245
|
};
|
|
5246
|
+
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
5247
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5248
|
+
};
|
|
4609
5249
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
4610
5250
|
ids: Array<Scalars['ID']['input']>;
|
|
4611
5251
|
};
|
|
4612
5252
|
export declare type CcpQueryApiOfferingArgs = {
|
|
4613
5253
|
key: Scalars['ID']['input'];
|
|
4614
5254
|
};
|
|
5255
|
+
export declare type CcpQueryApiOfferingRelationshipTemplatesArgs = {
|
|
5256
|
+
ids: Array<Scalars['ID']['input']>;
|
|
5257
|
+
};
|
|
4615
5258
|
export declare type CcpQueryApiOfferingsArgs = {
|
|
4616
5259
|
ids: Array<Scalars['ID']['input']>;
|
|
4617
5260
|
};
|
|
@@ -5214,6 +5857,27 @@ export declare enum ChannelPlatformMutationStatus {
|
|
|
5214
5857
|
Failure = "FAILURE",
|
|
5215
5858
|
Success = "SUCCESS"
|
|
5216
5859
|
}
|
|
5860
|
+
export declare enum ChannelPlatformParticipantRole {
|
|
5861
|
+
Agent = "AGENT",
|
|
5862
|
+
Customer = "CUSTOMER",
|
|
5863
|
+
CustomBot = "CUSTOM_BOT",
|
|
5864
|
+
Supervisor = "SUPERVISOR",
|
|
5865
|
+
System = "SYSTEM"
|
|
5866
|
+
}
|
|
5867
|
+
export declare type ChannelPlatformPluginActionRequest = {
|
|
5868
|
+
actionName?: InputMaybe<Scalars['String']['input']>;
|
|
5869
|
+
appId?: InputMaybe<Scalars['String']['input']>;
|
|
5870
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
5871
|
+
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5872
|
+
};
|
|
5873
|
+
export declare type ChannelPlatformPluginActionResponse = {
|
|
5874
|
+
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
5875
|
+
response?: Maybe<Scalars['JSON']['output']>;
|
|
5876
|
+
};
|
|
5877
|
+
export declare enum ChannelPlatformRole {
|
|
5878
|
+
Agent = "AGENT",
|
|
5879
|
+
Customer = "CUSTOMER"
|
|
5880
|
+
}
|
|
5217
5881
|
export declare type ChannelPlatformSampleQueue = {
|
|
5218
5882
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
5219
5883
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -5226,6 +5890,7 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5226
5890
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5227
5891
|
};
|
|
5228
5892
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5893
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5229
5894
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5230
5895
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5231
5896
|
};
|
|
@@ -5240,6 +5905,27 @@ export declare type ChannelPlatformSubmitTicketResponse = {
|
|
|
5240
5905
|
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
5241
5906
|
};
|
|
5242
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
|
+
};
|
|
5243
5929
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
5244
5930
|
cloudId: Scalars['ID']['input'];
|
|
5245
5931
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -6893,6 +7579,7 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
6893
7579
|
appliedSince: Scalars['DateTime']['output'];
|
|
6894
7580
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
6895
7581
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
7582
|
+
scorecardMaturityLevelHistories?: Maybe<CompassScorecardMaturityLevelHistoryConnection>;
|
|
6896
7583
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
6897
7584
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
6898
7585
|
};
|
|
@@ -6907,6 +7594,11 @@ export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesA
|
|
|
6907
7594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6908
7595
|
query?: InputMaybe<CompassScorecardCriteriaScoreHistoryQuery>;
|
|
6909
7596
|
};
|
|
7597
|
+
export declare type CompassComponentScorecardRelationshipScorecardMaturityLevelHistoriesArgs = {
|
|
7598
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7600
|
+
query?: InputMaybe<CompassScorecardMaturityLevelHistoryQuery>;
|
|
7601
|
+
};
|
|
6910
7602
|
export declare type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
6911
7603
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6912
7604
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7218,6 +7910,7 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
7218
7910
|
};
|
|
7219
7911
|
export declare type CompassCreateDynamicScorecardCriteriaInput = {
|
|
7220
7912
|
expressions: Array<CompassCreateScorecardCriterionExpressionTreeInput>;
|
|
7913
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7221
7914
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7222
7915
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7223
7916
|
weight: Scalars['Int']['input'];
|
|
@@ -7250,6 +7943,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
7250
7943
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
7251
7944
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7252
7945
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7946
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7253
7947
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7254
7948
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7255
7949
|
weight: Scalars['Int']['input'];
|
|
@@ -7259,6 +7953,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7259
7953
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7260
7954
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7261
7955
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7956
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7262
7957
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7263
7958
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7264
7959
|
weight: Scalars['Int']['input'];
|
|
@@ -7266,6 +7961,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
7266
7961
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
7267
7962
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7268
7963
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7964
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7269
7965
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7270
7966
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
7271
7967
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7275,6 +7971,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
7275
7971
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
7276
7972
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7277
7973
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7974
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7278
7975
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
7279
7976
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7280
7977
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7284,6 +7981,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
7284
7981
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
7285
7982
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
7286
7983
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7984
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7287
7985
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7288
7986
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7289
7987
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -7293,6 +7991,7 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7293
7991
|
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
7294
7992
|
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
7295
7993
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7994
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
7296
7995
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7297
7996
|
packageManager: CompassPackageDependencyManagerOptions;
|
|
7298
7997
|
packageName: Scalars['String']['input'];
|
|
@@ -7746,6 +8445,7 @@ export declare type CompassCustomNumberFieldFilter = CompassCustomFieldFilter &
|
|
|
7746
8445
|
export declare type CompassCustomNumberFieldFilterInput = {
|
|
7747
8446
|
comparator?: InputMaybe<CustomNumberFieldInputComparators>;
|
|
7748
8447
|
customFieldId: Scalars['String']['input'];
|
|
8448
|
+
values?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
7749
8449
|
};
|
|
7750
8450
|
export declare type CompassCustomNumberFieldInput = {
|
|
7751
8451
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -7831,6 +8531,7 @@ export declare type CompassCustomTextFieldFilter = CompassCustomFieldFilter & {
|
|
|
7831
8531
|
export declare type CompassCustomTextFieldFilterInput = {
|
|
7832
8532
|
comparator?: InputMaybe<CustomTextFieldInputComparators>;
|
|
7833
8533
|
customFieldId: Scalars['String']['input'];
|
|
8534
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7834
8535
|
};
|
|
7835
8536
|
export declare type CompassCustomTextFieldInput = {
|
|
7836
8537
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
@@ -9348,6 +10049,7 @@ export declare type CompassScorecard = Node & {
|
|
|
9348
10049
|
name: Scalars['String']['output'];
|
|
9349
10050
|
owner?: Maybe<User>;
|
|
9350
10051
|
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
10052
|
+
scorecardMaturityLevelStatisticsHistories?: Maybe<CompassScorecardMaturityLevelStatisticsHistoryConnection>;
|
|
9351
10053
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
9352
10054
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
9353
10055
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -9377,6 +10079,11 @@ export declare type CompassScorecardDeactivatedComponentsArgs = {
|
|
|
9377
10079
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9378
10080
|
query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
|
|
9379
10081
|
};
|
|
10082
|
+
export declare type CompassScorecardScorecardMaturityLevelStatisticsHistoriesArgs = {
|
|
10083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10085
|
+
query?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQuery>;
|
|
10086
|
+
};
|
|
9380
10087
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
9381
10088
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
9382
10089
|
};
|
|
@@ -9391,6 +10098,9 @@ export declare type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
|
9391
10098
|
export declare type CompassScorecardApplicationModel = {
|
|
9392
10099
|
applicationType: Scalars['String']['output'];
|
|
9393
10100
|
};
|
|
10101
|
+
export declare type CompassScorecardAppliedToComponentsComponentStateFilter = {
|
|
10102
|
+
in: Array<Scalars['String']['input']>;
|
|
10103
|
+
};
|
|
9394
10104
|
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
9395
10105
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
9396
10106
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -9424,6 +10134,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
9424
10134
|
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
9425
10135
|
in: Array<Scalars['String']['input']>;
|
|
9426
10136
|
};
|
|
10137
|
+
export declare type CompassScorecardAppliedToComponentsMaturityLevelFilter = {
|
|
10138
|
+
maturityLevels: Array<Scalars['ID']['input']>;
|
|
10139
|
+
};
|
|
9427
10140
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
9428
10141
|
in: Array<Scalars['ID']['input']>;
|
|
9429
10142
|
};
|
|
@@ -9434,6 +10147,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
9434
10147
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
9435
10148
|
};
|
|
9436
10149
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
10150
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
9437
10151
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9438
10152
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
9439
10153
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
@@ -9441,6 +10155,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
9441
10155
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
9442
10156
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
9443
10157
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
10158
|
+
scorecardMaturityLevels?: InputMaybe<CompassScorecardAppliedToComponentsMaturityLevelFilter>;
|
|
9444
10159
|
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
9445
10160
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
9446
10161
|
};
|
|
@@ -9500,6 +10215,12 @@ export declare type CompassScorecardCriteriaMaturityGroup = {
|
|
|
9500
10215
|
__typename?: 'CompassScorecardCriteriaMaturityGroup';
|
|
9501
10216
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9502
10217
|
};
|
|
10218
|
+
export declare type CompassScorecardCriteriaMaturityGroupInput = {
|
|
10219
|
+
maturityLevel: CompassScorecardCriteriaMaturityLevelInput;
|
|
10220
|
+
};
|
|
10221
|
+
export declare type CompassScorecardCriteriaMaturityLevelInput = {
|
|
10222
|
+
id: Scalars['ID']['input'];
|
|
10223
|
+
};
|
|
9503
10224
|
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9504
10225
|
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9505
10226
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9852,10 +10573,62 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
9852
10573
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
9853
10574
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
9854
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
|
+
};
|
|
9855
10599
|
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
9856
10600
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
9857
10601
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
9858
|
-
|
|
10602
|
+
};
|
|
10603
|
+
export declare type CompassScorecardMaturityLevelStatistic = {
|
|
10604
|
+
__typename?: 'CompassScorecardMaturityLevelStatistic';
|
|
10605
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10606
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
10607
|
+
};
|
|
10608
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistory = {
|
|
10609
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistory';
|
|
10610
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
10611
|
+
statistics?: Maybe<Array<CompassScorecardMaturityLevelStatistic>>;
|
|
10612
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10613
|
+
};
|
|
10614
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryConnection = {
|
|
10615
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryConnection';
|
|
10616
|
+
edges?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistoryEdge>>;
|
|
10617
|
+
nodes?: Maybe<Array<CompassScorecardMaturityLevelStatisticsHistory>>;
|
|
10618
|
+
pageInfo: PageInfo;
|
|
10619
|
+
};
|
|
10620
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryEdge = {
|
|
10621
|
+
__typename?: 'CompassScorecardMaturityLevelStatisticsHistoryEdge';
|
|
10622
|
+
cursor: Scalars['String']['output'];
|
|
10623
|
+
node?: Maybe<CompassScorecardMaturityLevelStatisticsHistory>;
|
|
10624
|
+
};
|
|
10625
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
10626
|
+
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
10627
|
+
};
|
|
10628
|
+
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
10629
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
10630
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
10631
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
9859
10632
|
};
|
|
9860
10633
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9861
10634
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
@@ -9999,6 +10772,11 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
9999
10772
|
since: Scalars['DateTime']['output'];
|
|
10000
10773
|
};
|
|
10001
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
|
+
}
|
|
10002
10780
|
export declare enum CompassScorecardScoringStrategyType {
|
|
10003
10781
|
PercentageBased = "PERCENTAGE_BASED",
|
|
10004
10782
|
PointBased = "POINT_BASED",
|
|
@@ -10415,6 +11193,7 @@ export declare type CompassUpdateDocumentPayload = Payload & {
|
|
|
10415
11193
|
export declare type CompassUpdateDynamicScorecardCriteriaInput = {
|
|
10416
11194
|
expressions?: InputMaybe<Array<CompassUpdateScorecardCriterionExpressionTreeInput>>;
|
|
10417
11195
|
id: Scalars['ID']['input'];
|
|
11196
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10418
11197
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10419
11198
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10420
11199
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10425,6 +11204,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
10425
11204
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10426
11205
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10427
11206
|
id: Scalars['ID']['input'];
|
|
11207
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10428
11208
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10429
11209
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10430
11210
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10435,6 +11215,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
10435
11215
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10436
11216
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10437
11217
|
id: Scalars['ID']['input'];
|
|
11218
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10438
11219
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10439
11220
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10440
11221
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10443,6 +11224,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
10443
11224
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10444
11225
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10445
11226
|
id: Scalars['ID']['input'];
|
|
11227
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10446
11228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10447
11229
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
10448
11230
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -10453,6 +11235,7 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
10453
11235
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10454
11236
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10455
11237
|
id: Scalars['ID']['input'];
|
|
11238
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10456
11239
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
10457
11240
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10458
11241
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10463,6 +11246,7 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
10463
11246
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
10464
11247
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10465
11248
|
id: Scalars['ID']['input'];
|
|
11249
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10466
11250
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10467
11251
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
10468
11252
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -10473,6 +11257,7 @@ export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
|
10473
11257
|
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
10474
11258
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
10475
11259
|
id: Scalars['ID']['input'];
|
|
11260
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
10476
11261
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
10477
11262
|
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
10478
11263
|
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10750,6 +11535,10 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
10750
11535
|
success: Scalars['Boolean']['output'];
|
|
10751
11536
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
10752
11537
|
};
|
|
11538
|
+
export declare enum ComplianceBoundary {
|
|
11539
|
+
Commercial = "COMMERCIAL",
|
|
11540
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11541
|
+
}
|
|
10753
11542
|
export declare type ComponentApiUpload = {
|
|
10754
11543
|
__typename?: 'ComponentApiUpload';
|
|
10755
11544
|
specUrl: Scalars['String']['output'];
|
|
@@ -10778,21 +11567,6 @@ export declare enum ComponentSyncEventStatus {
|
|
|
10778
11567
|
Success = "SUCCESS",
|
|
10779
11568
|
UserError = "USER_ERROR"
|
|
10780
11569
|
}
|
|
10781
|
-
export declare type ConfigurePolarisRefreshInput = {
|
|
10782
|
-
autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
10783
|
-
clearError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10784
|
-
disable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10785
|
-
project: Scalars['ID']['input'];
|
|
10786
|
-
setError?: InputMaybe<PolarisRefreshError>;
|
|
10787
|
-
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
10788
|
-
timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
10789
|
-
};
|
|
10790
|
-
export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
10791
|
-
__typename?: 'ConfigurePolarisRefreshPayload';
|
|
10792
|
-
errors?: Maybe<Array<MutationError>>;
|
|
10793
|
-
node?: Maybe<Scalars['Int']['output']>;
|
|
10794
|
-
success: Scalars['Boolean']['output'];
|
|
10795
|
-
};
|
|
10796
11570
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
10797
11571
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
10798
11572
|
appearance: Scalars['String']['output'];
|
|
@@ -20989,6 +21763,7 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
20989
21763
|
};
|
|
20990
21764
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
20991
21765
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21766
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
20992
21767
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20993
21768
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
20994
21769
|
weight: Scalars['Int']['input'];
|
|
@@ -20996,6 +21771,7 @@ export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
|
20996
21771
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
20997
21772
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
20998
21773
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
21774
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
20999
21775
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21000
21776
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21001
21777
|
weight: Scalars['Int']['input'];
|
|
@@ -21003,6 +21779,7 @@ export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
|
21003
21779
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
21004
21780
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21005
21781
|
linkType: CompassLinkType;
|
|
21782
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21006
21783
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21007
21784
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21008
21785
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -21015,6 +21792,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21015
21792
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
21016
21793
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21017
21794
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
21795
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21018
21796
|
metricDefinitionId: Scalars['ID']['input'];
|
|
21019
21797
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21020
21798
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -21022,6 +21800,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
21022
21800
|
};
|
|
21023
21801
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
21024
21802
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21803
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
21025
21804
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21026
21805
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
21027
21806
|
weight: Scalars['Int']['input'];
|
|
@@ -21074,6 +21853,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
21074
21853
|
name: Scalars['String']['input'];
|
|
21075
21854
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
21076
21855
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
21856
|
+
scoreSystemType?: InputMaybe<CompassScorecardScoreSystemType>;
|
|
21077
21857
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
21078
21858
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
21079
21859
|
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
@@ -21291,6 +22071,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
21291
22071
|
export declare type CreateJiraPlaybookInput = {
|
|
21292
22072
|
cloudId: Scalars['ID']['input'];
|
|
21293
22073
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
22074
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
21294
22075
|
name: Scalars['String']['input'];
|
|
21295
22076
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
21296
22077
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -21536,6 +22317,7 @@ export declare type CsmAiAction = {
|
|
|
21536
22317
|
description?: Maybe<Scalars['String']['output']>;
|
|
21537
22318
|
id: Scalars['ID']['output'];
|
|
21538
22319
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
22320
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21539
22321
|
name?: Maybe<Scalars['String']['output']>;
|
|
21540
22322
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
21541
22323
|
};
|
|
@@ -21628,6 +22410,7 @@ export declare type CsmAiCreateActionInput = {
|
|
|
21628
22410
|
authentication: CsmAiAuthenticationInput;
|
|
21629
22411
|
description: Scalars['String']['input'];
|
|
21630
22412
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
22413
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
21631
22414
|
name: Scalars['String']['input'];
|
|
21632
22415
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
21633
22416
|
};
|
|
@@ -21671,6 +22454,10 @@ export declare type CsmAiHub = {
|
|
|
21671
22454
|
agent?: Maybe<CsmAiAgentResult>;
|
|
21672
22455
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
21673
22456
|
id: Scalars['ID']['output'];
|
|
22457
|
+
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22458
|
+
};
|
|
22459
|
+
export declare type CsmAiHubActionsArgs = {
|
|
22460
|
+
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21674
22461
|
};
|
|
21675
22462
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
21676
22463
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -21702,6 +22489,7 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
21702
22489
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
21703
22490
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21704
22491
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22492
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21705
22493
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21706
22494
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
21707
22495
|
};
|
|
@@ -21743,6 +22531,78 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
21743
22531
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
21744
22532
|
success: Scalars['Boolean']['output'];
|
|
21745
22533
|
};
|
|
22534
|
+
export declare type CsmAiUpdateWidgetPayload = Payload & {
|
|
22535
|
+
__typename?: 'CsmAiUpdateWidgetPayload';
|
|
22536
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22537
|
+
success: Scalars['Boolean']['output'];
|
|
22538
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
22539
|
+
};
|
|
22540
|
+
export declare type CsmAiWidgetBrandingAttribution = {
|
|
22541
|
+
__typename?: 'CsmAiWidgetBrandingAttribution';
|
|
22542
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22543
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22544
|
+
};
|
|
22545
|
+
export declare type CsmAiWidgetBrandingAttributionInput = {
|
|
22546
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
22547
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
22548
|
+
};
|
|
22549
|
+
export declare enum CsmAiWidgetBrandingChatColorVibeVariant {
|
|
22550
|
+
Dark = "DARK",
|
|
22551
|
+
Default = "DEFAULT",
|
|
22552
|
+
Light = "LIGHT",
|
|
22553
|
+
Vibrant = "VIBRANT"
|
|
22554
|
+
}
|
|
22555
|
+
export declare enum CsmAiWidgetBrandingColorVibeVariant {
|
|
22556
|
+
Dark = "DARK",
|
|
22557
|
+
Light = "LIGHT",
|
|
22558
|
+
Vibrant = "VIBRANT"
|
|
22559
|
+
}
|
|
22560
|
+
export declare enum CsmAiWidgetBrandingRadius {
|
|
22561
|
+
Normal = "NORMAL",
|
|
22562
|
+
Rounded = "ROUNDED",
|
|
22563
|
+
Sharp = "SHARP"
|
|
22564
|
+
}
|
|
22565
|
+
export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
22566
|
+
Comfortable = "COMFORTABLE",
|
|
22567
|
+
Cosy = "COSY",
|
|
22568
|
+
Generous = "GENEROUS"
|
|
22569
|
+
}
|
|
22570
|
+
export declare type CsmAiWidgetBrandingTheme = {
|
|
22571
|
+
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
22572
|
+
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
22573
|
+
chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
|
|
22574
|
+
colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
|
|
22575
|
+
radius?: Maybe<CsmAiWidgetBrandingRadius>;
|
|
22576
|
+
space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
|
|
22577
|
+
};
|
|
22578
|
+
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
22579
|
+
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
22580
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
22581
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
22582
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
22583
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
22584
|
+
};
|
|
22585
|
+
export declare type CsmAiWidgetConfig = {
|
|
22586
|
+
__typename?: 'CsmAiWidgetConfig';
|
|
22587
|
+
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
22588
|
+
id: Scalars['ID']['output'];
|
|
22589
|
+
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22590
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22591
|
+
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
22592
|
+
type: CsmAiWidgetType;
|
|
22593
|
+
};
|
|
22594
|
+
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
22595
|
+
export declare enum CsmAiWidgetType {
|
|
22596
|
+
Embed = "EMBED",
|
|
22597
|
+
SupportSite = "SUPPORT_SITE"
|
|
22598
|
+
}
|
|
22599
|
+
export declare type CsmAiWidgetUpdateInput = {
|
|
22600
|
+
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
22601
|
+
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22602
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22603
|
+
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
22604
|
+
type: CsmAiWidgetType;
|
|
22605
|
+
};
|
|
21746
22606
|
export declare type CumulativeFlowDiagram = {
|
|
21747
22607
|
__typename?: 'CumulativeFlowDiagram';
|
|
21748
22608
|
chart: CfdChartConnection;
|
|
@@ -21888,6 +22748,7 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
21888
22748
|
NotSet = "NOT_SET"
|
|
21889
22749
|
}
|
|
21890
22750
|
export declare enum CustomNumberFieldInputComparators {
|
|
22751
|
+
ContainAny = "CONTAIN_ANY",
|
|
21891
22752
|
IsSet = "IS_SET",
|
|
21892
22753
|
NotSet = "NOT_SET"
|
|
21893
22754
|
}
|
|
@@ -21903,6 +22764,7 @@ export declare enum CustomSingleSelectFieldInputComparators {
|
|
|
21903
22764
|
NotSet = "NOT_SET"
|
|
21904
22765
|
}
|
|
21905
22766
|
export declare enum CustomTextFieldInputComparators {
|
|
22767
|
+
ContainAny = "CONTAIN_ANY",
|
|
21906
22768
|
IsSet = "IS_SET",
|
|
21907
22769
|
NotSet = "NOT_SET"
|
|
21908
22770
|
}
|
|
@@ -24086,6 +24948,42 @@ export declare type DevAiWorkspace = {
|
|
|
24086
24948
|
status?: Maybe<Scalars['String']['output']>;
|
|
24087
24949
|
workspaceAri: Scalars['ID']['output'];
|
|
24088
24950
|
};
|
|
24951
|
+
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
24952
|
+
name: Scalars['String']['input'];
|
|
24953
|
+
};
|
|
24954
|
+
export declare type DevConsoleDeveloperSpace = {
|
|
24955
|
+
__typename?: 'DevConsoleDeveloperSpace';
|
|
24956
|
+
id: Scalars['String']['output'];
|
|
24957
|
+
name: Scalars['String']['output'];
|
|
24958
|
+
status: Scalars['String']['output'];
|
|
24959
|
+
type: DevConsoleDeveloperSpaceType;
|
|
24960
|
+
version: Scalars['Int']['output'];
|
|
24961
|
+
versionId: Scalars['Int']['output'];
|
|
24962
|
+
};
|
|
24963
|
+
export declare type DevConsoleDeveloperSpaceDetails = {
|
|
24964
|
+
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
24965
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
24966
|
+
name: Scalars['String']['output'];
|
|
24967
|
+
};
|
|
24968
|
+
export declare enum DevConsoleDeveloperSpaceType {
|
|
24969
|
+
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
24970
|
+
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
24971
|
+
}
|
|
24972
|
+
export declare type DevConsoleMutation = {
|
|
24973
|
+
__typename?: 'DevConsoleMutation';
|
|
24974
|
+
createDeveloperSpace: DevConsoleDeveloperSpace;
|
|
24975
|
+
};
|
|
24976
|
+
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
24977
|
+
input: DevConsoleCreateDeveloperSpaceInput;
|
|
24978
|
+
};
|
|
24979
|
+
export declare type DevConsoleQuery = {
|
|
24980
|
+
__typename?: 'DevConsoleQuery';
|
|
24981
|
+
getDeveloperSpaceDetails: DevConsoleDeveloperSpaceDetails;
|
|
24982
|
+
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
24983
|
+
};
|
|
24984
|
+
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
24985
|
+
developerSpaceId: Scalars['String']['input'];
|
|
24986
|
+
};
|
|
24089
24987
|
export declare type DevOps = {
|
|
24090
24988
|
__typename?: 'DevOps';
|
|
24091
24989
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -25766,6 +26664,7 @@ export declare type EcosystemMutation = {
|
|
|
25766
26664
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
25767
26665
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
25768
26666
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
26667
|
+
devConsole?: Maybe<DevConsoleMutation>;
|
|
25769
26668
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
25770
26669
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
25771
26670
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
@@ -25870,6 +26769,7 @@ export declare type EcosystemQuery = {
|
|
|
25870
26769
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
25871
26770
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
25872
26771
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
26772
|
+
devConsole?: Maybe<DevConsoleQuery>;
|
|
25873
26773
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
25874
26774
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
25875
26775
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -25974,7 +26874,7 @@ export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
|
25974
26874
|
export declare type EcosystemRealtimePublishBody = {
|
|
25975
26875
|
__typename?: 'EcosystemRealtimePublishBody';
|
|
25976
26876
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
25977
|
-
eventTimestamp?: Maybe<Scalars['
|
|
26877
|
+
eventTimestamp?: Maybe<Scalars['String']['output']>;
|
|
25978
26878
|
};
|
|
25979
26879
|
export declare type EcosystemRealtimeSubscriptionBody = {
|
|
25980
26880
|
__typename?: 'EcosystemRealtimeSubscriptionBody';
|
|
@@ -32563,8 +33463,6 @@ export declare type GraphStore = {
|
|
|
32563
33463
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
32564
33464
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
32565
33465
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
32566
|
-
atlasGoalHasUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateConnection>;
|
|
32567
|
-
atlasGoalHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection>;
|
|
32568
33466
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
32569
33467
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
32570
33468
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
@@ -32580,8 +33478,6 @@ export declare type GraphStore = {
|
|
|
32580
33478
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
32581
33479
|
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
32582
33480
|
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
32583
|
-
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
32584
|
-
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
32585
33481
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
32586
33482
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
32587
33483
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -32610,8 +33506,6 @@ export declare type GraphStore = {
|
|
|
32610
33506
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32611
33507
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32612
33508
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32613
|
-
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32614
|
-
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
32615
33509
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
32616
33510
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
32617
33511
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -32650,6 +33544,7 @@ export declare type GraphStore = {
|
|
|
32650
33544
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
32651
33545
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
32652
33546
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
33547
|
+
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
32653
33548
|
deploymentAssociatedDeployment?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection>;
|
|
32654
33549
|
deploymentAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection>;
|
|
32655
33550
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
@@ -32874,6 +33769,8 @@ export declare type GraphStore = {
|
|
|
32874
33769
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
32875
33770
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
32876
33771
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
33772
|
+
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
33773
|
+
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
32877
33774
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
32878
33775
|
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
32879
33776
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
@@ -33066,6 +33963,7 @@ export declare type GraphStore = {
|
|
|
33066
33963
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
33067
33964
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
33068
33965
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
33966
|
+
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
33069
33967
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
33070
33968
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
33071
33969
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -33401,22 +34299,6 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
33401
34299
|
id: Scalars['ID']['input'];
|
|
33402
34300
|
sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
|
|
33403
34301
|
};
|
|
33404
|
-
export declare type GraphStoreAtlasGoalHasUpdateArgs = {
|
|
33405
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33406
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33407
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33408
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33409
|
-
id: Scalars['ID']['input'];
|
|
33410
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33411
|
-
};
|
|
33412
|
-
export declare type GraphStoreAtlasGoalHasUpdateInverseArgs = {
|
|
33413
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33414
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33415
|
-
filter?: InputMaybe<GraphStoreAtlasGoalHasUpdateFilterInput>;
|
|
33416
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33417
|
-
id: Scalars['ID']['input'];
|
|
33418
|
-
sort?: InputMaybe<GraphStoreAtlasGoalHasUpdateSortInput>;
|
|
33419
|
-
};
|
|
33420
34302
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
33421
34303
|
container_ids: Array<Scalars['ID']['input']>;
|
|
33422
34304
|
enabled_sources?: InputMaybe<Array<InputMaybe<GraphStoreAtlasHomeSourcesEnum>>>;
|
|
@@ -33516,22 +34398,6 @@ export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
|
33516
34398
|
id: Scalars['ID']['input'];
|
|
33517
34399
|
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
33518
34400
|
};
|
|
33519
|
-
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
33520
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33521
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33522
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33523
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33524
|
-
id: Scalars['ID']['input'];
|
|
33525
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33526
|
-
};
|
|
33527
|
-
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
33528
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33529
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33530
|
-
filter?: InputMaybe<GraphStoreAtlasProjectHasUpdateFilterInput>;
|
|
33531
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33532
|
-
id: Scalars['ID']['input'];
|
|
33533
|
-
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
33534
|
-
};
|
|
33535
34401
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
33536
34402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33537
34403
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33716,20 +34582,6 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
33716
34582
|
id: Scalars['ID']['input'];
|
|
33717
34583
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
33718
34584
|
};
|
|
33719
|
-
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
33720
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33721
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33722
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33723
|
-
id: Scalars['ID']['input'];
|
|
33724
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33725
|
-
};
|
|
33726
|
-
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
33727
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
33728
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33729
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33730
|
-
id: Scalars['ID']['input'];
|
|
33731
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33732
|
-
};
|
|
33733
34585
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
33734
34586
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33735
34587
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33985,6 +34837,11 @@ export declare type GraphStoreCypherQueryV2Args = {
|
|
|
33985
34837
|
query: Scalars['String']['input'];
|
|
33986
34838
|
version?: InputMaybe<GraphStoreCypherQueryV2VersionEnum>;
|
|
33987
34839
|
};
|
|
34840
|
+
export declare type GraphStoreCypherQueryV2BatchArgs = {
|
|
34841
|
+
params?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
34842
|
+
queries: Array<GraphStoreCypherQueryV2BatchQueryRequestInput>;
|
|
34843
|
+
version?: InputMaybe<GraphStoreCypherQueryV2BatchVersionEnum>;
|
|
34844
|
+
};
|
|
33988
34845
|
export declare type GraphStoreDeploymentAssociatedDeploymentArgs = {
|
|
33989
34846
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33990
34847
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35432,6 +36289,20 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
35432
36289
|
id: Scalars['ID']['input'];
|
|
35433
36290
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
35434
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
|
+
};
|
|
35435
36306
|
export declare type GraphStorePrInProviderRepoArgs = {
|
|
35436
36307
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35437
36308
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36706,6 +37577,13 @@ export declare type GraphStoreTopicHasRelatedEntityArgs = {
|
|
|
36706
37577
|
id: Scalars['ID']['input'];
|
|
36707
37578
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
36708
37579
|
};
|
|
37580
|
+
export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
37581
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37582
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37583
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37584
|
+
id: Scalars['ID']['input'];
|
|
37585
|
+
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
37586
|
+
};
|
|
36709
37587
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
36710
37588
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36711
37589
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38332,107 +39210,6 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
38332
39210
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
38333
39211
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38334
39212
|
};
|
|
38335
|
-
export declare type GraphStoreAtlasGoalHasUpdateConditionalFilterInput = {
|
|
38336
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38337
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38338
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38339
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38340
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38341
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38342
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38343
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput>;
|
|
38344
|
-
relationship_newScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38345
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateNewStatusFilterInput>;
|
|
38346
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38347
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput>;
|
|
38348
|
-
relationship_oldScore?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38349
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasGoalHasUpdateOldStatusFilterInput>;
|
|
38350
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38351
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput>;
|
|
38352
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38353
|
-
};
|
|
38354
|
-
export declare type GraphStoreAtlasGoalHasUpdateFilterInput = {
|
|
38355
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38356
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasGoalHasUpdateConditionalFilterInput>>>;
|
|
38357
|
-
};
|
|
38358
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewConfidence {
|
|
38359
|
-
Day = "DAY",
|
|
38360
|
-
Month = "MONTH",
|
|
38361
|
-
NotSet = "NOT_SET",
|
|
38362
|
-
Quarter = "QUARTER"
|
|
38363
|
-
}
|
|
38364
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewConfidenceFilterInput = {
|
|
38365
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38366
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewConfidence>>;
|
|
38367
|
-
};
|
|
38368
|
-
export declare enum GraphStoreAtlasGoalHasUpdateNewStatus {
|
|
38369
|
-
AtRisk = "AT_RISK",
|
|
38370
|
-
Cancelled = "CANCELLED",
|
|
38371
|
-
Done = "DONE",
|
|
38372
|
-
NotSet = "NOT_SET",
|
|
38373
|
-
OffTrack = "OFF_TRACK",
|
|
38374
|
-
OnTrack = "ON_TRACK",
|
|
38375
|
-
Paused = "PAUSED",
|
|
38376
|
-
Pending = "PENDING"
|
|
38377
|
-
}
|
|
38378
|
-
export declare type GraphStoreAtlasGoalHasUpdateNewStatusFilterInput = {
|
|
38379
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38380
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateNewStatus>>;
|
|
38381
|
-
};
|
|
38382
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldConfidence {
|
|
38383
|
-
Day = "DAY",
|
|
38384
|
-
Month = "MONTH",
|
|
38385
|
-
NotSet = "NOT_SET",
|
|
38386
|
-
Null = "NULL",
|
|
38387
|
-
Quarter = "QUARTER"
|
|
38388
|
-
}
|
|
38389
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldConfidenceFilterInput = {
|
|
38390
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38391
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldConfidence>>;
|
|
38392
|
-
};
|
|
38393
|
-
export declare enum GraphStoreAtlasGoalHasUpdateOldStatus {
|
|
38394
|
-
AtRisk = "AT_RISK",
|
|
38395
|
-
Cancelled = "CANCELLED",
|
|
38396
|
-
Done = "DONE",
|
|
38397
|
-
NotSet = "NOT_SET",
|
|
38398
|
-
Null = "NULL",
|
|
38399
|
-
OffTrack = "OFF_TRACK",
|
|
38400
|
-
OnTrack = "ON_TRACK",
|
|
38401
|
-
Paused = "PAUSED",
|
|
38402
|
-
Pending = "PENDING"
|
|
38403
|
-
}
|
|
38404
|
-
export declare type GraphStoreAtlasGoalHasUpdateOldStatusFilterInput = {
|
|
38405
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38406
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateOldStatus>>;
|
|
38407
|
-
};
|
|
38408
|
-
export declare type GraphStoreAtlasGoalHasUpdateSortInput = {
|
|
38409
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38410
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38411
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38412
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38413
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38414
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38415
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38416
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38417
|
-
relationship_newScore?: InputMaybe<GraphStoreSortInput>;
|
|
38418
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38419
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38420
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38421
|
-
relationship_oldScore?: InputMaybe<GraphStoreSortInput>;
|
|
38422
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38423
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38424
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38425
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38426
|
-
};
|
|
38427
|
-
export declare enum GraphStoreAtlasGoalHasUpdateUpdateType {
|
|
38428
|
-
NotSet = "NOT_SET",
|
|
38429
|
-
System = "SYSTEM",
|
|
38430
|
-
User = "USER"
|
|
38431
|
-
}
|
|
38432
|
-
export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
38433
|
-
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38434
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
38435
|
-
};
|
|
38436
39213
|
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38437
39214
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38438
39215
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
@@ -38502,103 +39279,6 @@ export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
|
38502
39279
|
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
38503
39280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38504
39281
|
};
|
|
38505
|
-
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
38506
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38507
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38508
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
38509
|
-
relationship_createdBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38510
|
-
relationship_creationDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38511
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreAriFilterInput>;
|
|
38512
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38513
|
-
relationship_newConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput>;
|
|
38514
|
-
relationship_newStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateNewStatusFilterInput>;
|
|
38515
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38516
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput>;
|
|
38517
|
-
relationship_oldStatus?: InputMaybe<GraphStoreAtlasProjectHasUpdateOldStatusFilterInput>;
|
|
38518
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreLongFilterInput>;
|
|
38519
|
-
relationship_updateType?: InputMaybe<GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput>;
|
|
38520
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
38521
|
-
};
|
|
38522
|
-
export declare type GraphStoreAtlasProjectHasUpdateFilterInput = {
|
|
38523
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38524
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectHasUpdateConditionalFilterInput>>>;
|
|
38525
|
-
};
|
|
38526
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewConfidence {
|
|
38527
|
-
Day = "DAY",
|
|
38528
|
-
Month = "MONTH",
|
|
38529
|
-
NotSet = "NOT_SET",
|
|
38530
|
-
Quarter = "QUARTER"
|
|
38531
|
-
}
|
|
38532
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewConfidenceFilterInput = {
|
|
38533
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38534
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewConfidence>>;
|
|
38535
|
-
};
|
|
38536
|
-
export declare enum GraphStoreAtlasProjectHasUpdateNewStatus {
|
|
38537
|
-
AtRisk = "AT_RISK",
|
|
38538
|
-
Cancelled = "CANCELLED",
|
|
38539
|
-
Done = "DONE",
|
|
38540
|
-
NotSet = "NOT_SET",
|
|
38541
|
-
OffTrack = "OFF_TRACK",
|
|
38542
|
-
OnTrack = "ON_TRACK",
|
|
38543
|
-
Paused = "PAUSED",
|
|
38544
|
-
Pending = "PENDING"
|
|
38545
|
-
}
|
|
38546
|
-
export declare type GraphStoreAtlasProjectHasUpdateNewStatusFilterInput = {
|
|
38547
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38548
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateNewStatus>>;
|
|
38549
|
-
};
|
|
38550
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldConfidence {
|
|
38551
|
-
Day = "DAY",
|
|
38552
|
-
Month = "MONTH",
|
|
38553
|
-
NotSet = "NOT_SET",
|
|
38554
|
-
Null = "NULL",
|
|
38555
|
-
Quarter = "QUARTER"
|
|
38556
|
-
}
|
|
38557
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldConfidenceFilterInput = {
|
|
38558
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38559
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldConfidence>>;
|
|
38560
|
-
};
|
|
38561
|
-
export declare enum GraphStoreAtlasProjectHasUpdateOldStatus {
|
|
38562
|
-
AtRisk = "AT_RISK",
|
|
38563
|
-
Cancelled = "CANCELLED",
|
|
38564
|
-
Done = "DONE",
|
|
38565
|
-
NotSet = "NOT_SET",
|
|
38566
|
-
Null = "NULL",
|
|
38567
|
-
OffTrack = "OFF_TRACK",
|
|
38568
|
-
OnTrack = "ON_TRACK",
|
|
38569
|
-
Paused = "PAUSED",
|
|
38570
|
-
Pending = "PENDING"
|
|
38571
|
-
}
|
|
38572
|
-
export declare type GraphStoreAtlasProjectHasUpdateOldStatusFilterInput = {
|
|
38573
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38574
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateOldStatus>>;
|
|
38575
|
-
};
|
|
38576
|
-
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
38577
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38578
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38579
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38580
|
-
relationship_createdBy?: InputMaybe<GraphStoreSortInput>;
|
|
38581
|
-
relationship_creationDate?: InputMaybe<GraphStoreSortInput>;
|
|
38582
|
-
relationship_lastEditedBy?: InputMaybe<GraphStoreSortInput>;
|
|
38583
|
-
relationship_lastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
38584
|
-
relationship_newConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38585
|
-
relationship_newStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38586
|
-
relationship_newTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38587
|
-
relationship_oldConfidence?: InputMaybe<GraphStoreSortInput>;
|
|
38588
|
-
relationship_oldStatus?: InputMaybe<GraphStoreSortInput>;
|
|
38589
|
-
relationship_oldTargetDate?: InputMaybe<GraphStoreSortInput>;
|
|
38590
|
-
relationship_updateType?: InputMaybe<GraphStoreSortInput>;
|
|
38591
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38592
|
-
};
|
|
38593
|
-
export declare enum GraphStoreAtlasProjectHasUpdateUpdateType {
|
|
38594
|
-
NotSet = "NOT_SET",
|
|
38595
|
-
System = "SYSTEM",
|
|
38596
|
-
User = "USER"
|
|
38597
|
-
}
|
|
38598
|
-
export declare type GraphStoreAtlasProjectHasUpdateUpdateTypeFilterInput = {
|
|
38599
|
-
is?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38600
|
-
isNot?: InputMaybe<Array<GraphStoreAtlasProjectHasUpdateUpdateType>>;
|
|
38601
|
-
};
|
|
38602
39282
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
38603
39283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38604
39284
|
};
|
|
@@ -39371,9 +40051,6 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
39371
40051
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
39372
40052
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39373
40053
|
};
|
|
39374
|
-
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39375
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39376
|
-
};
|
|
39377
40054
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
39378
40055
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39379
40056
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -39895,7 +40572,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
39895
40572
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
39896
40573
|
id: Scalars['ID']['output'];
|
|
39897
40574
|
};
|
|
39898
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40575
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39899
40576
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
39900
40577
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
39901
40578
|
value: Scalars['Int']['output'];
|
|
@@ -39930,7 +40607,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
39930
40607
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
39931
40608
|
id: Scalars['ID']['output'];
|
|
39932
40609
|
};
|
|
39933
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40610
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39934
40611
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
39935
40612
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
39936
40613
|
value: Scalars['String']['output'];
|
|
@@ -39940,13 +40617,73 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
39940
40617
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
39941
40618
|
id: Scalars['ID']['output'];
|
|
39942
40619
|
};
|
|
39943
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40620
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39944
40621
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
39945
40622
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
39946
40623
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
39947
40624
|
id: Scalars['ID']['output'];
|
|
39948
40625
|
};
|
|
39949
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40626
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40627
|
+
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40628
|
+
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40629
|
+
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40630
|
+
id: Scalars['ID']['output'];
|
|
40631
|
+
};
|
|
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;
|
|
40633
|
+
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40634
|
+
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40635
|
+
value: Scalars['Boolean']['output'];
|
|
40636
|
+
};
|
|
40637
|
+
export declare type GraphStoreCypherQueryV2BatchColumn = {
|
|
40638
|
+
__typename?: 'GraphStoreCypherQueryV2BatchColumn';
|
|
40639
|
+
key: Scalars['String']['output'];
|
|
40640
|
+
value?: Maybe<GraphStoreCypherQueryV2BatchResultRowItemValueUnion>;
|
|
40641
|
+
};
|
|
40642
|
+
export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
40643
|
+
__typename?: 'GraphStoreCypherQueryV2BatchConnection';
|
|
40644
|
+
results: Array<GraphStoreCypherQueryV2BatchQueryResult>;
|
|
40645
|
+
version: Scalars['String']['output'];
|
|
40646
|
+
};
|
|
40647
|
+
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
40648
|
+
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
40649
|
+
node: GraphStoreCypherQueryV2BatchNode;
|
|
40650
|
+
};
|
|
40651
|
+
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
40652
|
+
__typename?: 'GraphStoreCypherQueryV2BatchFloatObject';
|
|
40653
|
+
value: Scalars['Float']['output'];
|
|
40654
|
+
};
|
|
40655
|
+
export declare type GraphStoreCypherQueryV2BatchIntObject = {
|
|
40656
|
+
__typename?: 'GraphStoreCypherQueryV2BatchIntObject';
|
|
40657
|
+
value: Scalars['Int']['output'];
|
|
40658
|
+
};
|
|
40659
|
+
export declare type GraphStoreCypherQueryV2BatchNode = {
|
|
40660
|
+
__typename?: 'GraphStoreCypherQueryV2BatchNode';
|
|
40661
|
+
columns: Array<GraphStoreCypherQueryV2BatchColumn>;
|
|
40662
|
+
};
|
|
40663
|
+
export declare type GraphStoreCypherQueryV2BatchNodeList = {
|
|
40664
|
+
__typename?: 'GraphStoreCypherQueryV2BatchNodeList';
|
|
40665
|
+
nodes: Array<GraphStoreCypherQueryV2BatchAriNode>;
|
|
40666
|
+
};
|
|
40667
|
+
export declare type GraphStoreCypherQueryV2BatchQueryRequestInput = {
|
|
40668
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40669
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40670
|
+
query: Scalars['String']['input'];
|
|
40671
|
+
};
|
|
40672
|
+
export declare type GraphStoreCypherQueryV2BatchQueryResult = {
|
|
40673
|
+
__typename?: 'GraphStoreCypherQueryV2BatchQueryResult';
|
|
40674
|
+
edges: Array<GraphStoreCypherQueryV2BatchEdge>;
|
|
40675
|
+
pageInfo: PageInfo;
|
|
40676
|
+
version: Scalars['String']['output'];
|
|
40677
|
+
};
|
|
40678
|
+
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject;
|
|
40679
|
+
export declare type GraphStoreCypherQueryV2BatchStringObject = {
|
|
40680
|
+
__typename?: 'GraphStoreCypherQueryV2BatchStringObject';
|
|
40681
|
+
value: Scalars['String']['output'];
|
|
40682
|
+
};
|
|
40683
|
+
export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
40684
|
+
V2 = "V2",
|
|
40685
|
+
V3 = "V3"
|
|
40686
|
+
}
|
|
39950
40687
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
39951
40688
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
39952
40689
|
value: Scalars['Boolean']['output'];
|
|
@@ -39991,7 +40728,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
39991
40728
|
V2 = "V2",
|
|
39992
40729
|
V3 = "V3"
|
|
39993
40730
|
}
|
|
39994
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40731
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39995
40732
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
39996
40733
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
39997
40734
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41189,6 +41926,7 @@ export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
|
41189
41926
|
};
|
|
41190
41927
|
export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
41191
41928
|
Declined = "DECLINED",
|
|
41929
|
+
Draft = "DRAFT",
|
|
41192
41930
|
Merged = "MERGED",
|
|
41193
41931
|
NotSet = "NOT_SET",
|
|
41194
41932
|
Open = "OPEN",
|
|
@@ -41737,6 +42475,7 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUn
|
|
|
41737
42475
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
41738
42476
|
Archive = "ARCHIVE",
|
|
41739
42477
|
Audio = "AUDIO",
|
|
42478
|
+
Blogpost = "BLOGPOST",
|
|
41740
42479
|
Code = "CODE",
|
|
41741
42480
|
Document = "DOCUMENT",
|
|
41742
42481
|
Folder = "FOLDER",
|
|
@@ -41744,11 +42483,13 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
41744
42483
|
Image = "IMAGE",
|
|
41745
42484
|
NotSet = "NOT_SET",
|
|
41746
42485
|
Other = "OTHER",
|
|
42486
|
+
Page = "PAGE",
|
|
41747
42487
|
Pdf = "PDF",
|
|
41748
42488
|
Presentation = "PRESENTATION",
|
|
41749
42489
|
Shortcut = "SHORTCUT",
|
|
41750
42490
|
Spreadsheet = "SPREADSHEET",
|
|
41751
|
-
Video = "VIDEO"
|
|
42491
|
+
Video = "VIDEO",
|
|
42492
|
+
WebPage = "WEB_PAGE"
|
|
41752
42493
|
}
|
|
41753
42494
|
export declare type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
41754
42495
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
@@ -41856,6 +42597,7 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
41856
42597
|
};
|
|
41857
42598
|
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
41858
42599
|
Declined = "DECLINED",
|
|
42600
|
+
Draft = "DRAFT",
|
|
41859
42601
|
Merged = "MERGED",
|
|
41860
42602
|
NotSet = "NOT_SET",
|
|
41861
42603
|
Open = "OPEN",
|
|
@@ -42199,6 +42941,7 @@ export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
|
42199
42941
|
};
|
|
42200
42942
|
export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
42201
42943
|
Declined = "DECLINED",
|
|
42944
|
+
Draft = "DRAFT",
|
|
42202
42945
|
Merged = "MERGED",
|
|
42203
42946
|
NotSet = "NOT_SET",
|
|
42204
42947
|
Open = "OPEN",
|
|
@@ -43024,6 +43767,7 @@ export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
|
43024
43767
|
};
|
|
43025
43768
|
export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
43026
43769
|
Declined = "DECLINED",
|
|
43770
|
+
Draft = "DRAFT",
|
|
43027
43771
|
Merged = "MERGED",
|
|
43028
43772
|
NotSet = "NOT_SET",
|
|
43029
43773
|
Open = "OPEN",
|
|
@@ -44471,6 +45215,9 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
44471
45215
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
44472
45216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44473
45217
|
};
|
|
45218
|
+
export declare type GraphStorePrHasCommentSortInput = {
|
|
45219
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45220
|
+
};
|
|
44474
45221
|
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
44475
45222
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
44476
45223
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -44720,6 +45467,7 @@ export declare type GraphStoreProjectAssociatedPrFilterInput = {
|
|
|
44720
45467
|
};
|
|
44721
45468
|
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
44722
45469
|
Declined = "DECLINED",
|
|
45470
|
+
Draft = "DRAFT",
|
|
44723
45471
|
Merged = "MERGED",
|
|
44724
45472
|
NotSet = "NOT_SET",
|
|
44725
45473
|
Open = "OPEN",
|
|
@@ -45256,38 +46004,6 @@ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
|
|
|
45256
46004
|
};
|
|
45257
46005
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
|
|
45258
46006
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
|
|
45259
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45260
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateConnection';
|
|
45261
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateEdge>>>;
|
|
45262
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45263
|
-
pageInfo: PageInfo;
|
|
45264
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45265
|
-
};
|
|
45266
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateEdge = {
|
|
45267
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateEdge';
|
|
45268
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45269
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45270
|
-
id: Scalars['ID']['output'];
|
|
45271
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45272
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateUnion>;
|
|
45273
|
-
};
|
|
45274
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45275
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseConnection';
|
|
45276
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge>>>;
|
|
45277
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45278
|
-
pageInfo: PageInfo;
|
|
45279
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45280
|
-
};
|
|
45281
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge = {
|
|
45282
|
-
__typename?: 'GraphStoreSimplifiedAtlasGoalHasUpdateInverseEdge';
|
|
45283
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45284
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45285
|
-
id: Scalars['ID']['output'];
|
|
45286
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45287
|
-
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion>;
|
|
45288
|
-
};
|
|
45289
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateInverseUnion = TownsquareGoal;
|
|
45290
|
-
export declare type GraphStoreSimplifiedAtlasGoalHasUpdateUnion = TownsquareGoalUpdate;
|
|
45291
46007
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
45292
46008
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
|
|
45293
46009
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
|
|
@@ -45456,38 +46172,6 @@ export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge
|
|
|
45456
46172
|
};
|
|
45457
46173
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
45458
46174
|
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
45459
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
45460
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
45461
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
45462
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45463
|
-
pageInfo: PageInfo;
|
|
45464
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45465
|
-
};
|
|
45466
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
45467
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
45468
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45469
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45470
|
-
id: Scalars['ID']['output'];
|
|
45471
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45472
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
45473
|
-
};
|
|
45474
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & HasTotal & {
|
|
45475
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
45476
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
45477
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45478
|
-
pageInfo: PageInfo;
|
|
45479
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45480
|
-
};
|
|
45481
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
45482
|
-
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
45483
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45484
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45485
|
-
id: Scalars['ID']['output'];
|
|
45486
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45487
|
-
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
45488
|
-
};
|
|
45489
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
45490
|
-
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
45491
46175
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
45492
46176
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
45493
46177
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -45796,34 +46480,6 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
45796
46480
|
};
|
|
45797
46481
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
45798
46482
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
45799
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
45800
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
45801
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
45802
|
-
pageInfo: PageInfo;
|
|
45803
|
-
};
|
|
45804
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
45805
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
45806
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45807
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45808
|
-
id: Scalars['ID']['output'];
|
|
45809
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45810
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
45811
|
-
};
|
|
45812
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
45813
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
45814
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
45815
|
-
pageInfo: PageInfo;
|
|
45816
|
-
};
|
|
45817
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
45818
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
45819
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45820
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45821
|
-
id: Scalars['ID']['output'];
|
|
45822
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
45823
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
45824
|
-
};
|
|
45825
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
45826
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
45827
46483
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
45828
46484
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
45829
46485
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -48306,6 +48962,34 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
48306
48962
|
};
|
|
48307
48963
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
48308
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;
|
|
48309
48993
|
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
48310
48994
|
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
48311
48995
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
@@ -50089,7 +50773,21 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityEdge = {
|
|
|
50089
50773
|
lastUpdated: Scalars['DateTime']['output'];
|
|
50090
50774
|
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityUnion>;
|
|
50091
50775
|
};
|
|
50092
|
-
export declare type
|
|
50776
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
50777
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection';
|
|
50778
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge>>>;
|
|
50779
|
+
pageInfo: PageInfo;
|
|
50780
|
+
};
|
|
50781
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
50782
|
+
__typename?: 'GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge';
|
|
50783
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50784
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50785
|
+
id: Scalars['ID']['output'];
|
|
50786
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50787
|
+
node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion>;
|
|
50788
|
+
};
|
|
50789
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
50790
|
+
export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
|
|
50093
50791
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
50094
50792
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
50095
50793
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -53124,6 +53822,7 @@ export declare type GraphStoreSprintAssociatedPrFilterInput = {
|
|
|
53124
53822
|
};
|
|
53125
53823
|
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
53126
53824
|
Declined = "DECLINED",
|
|
53825
|
+
Draft = "DRAFT",
|
|
53127
53826
|
Merged = "MERGED",
|
|
53128
53827
|
NotSet = "NOT_SET",
|
|
53129
53828
|
Open = "OPEN",
|
|
@@ -53859,16 +54558,19 @@ export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendatio
|
|
|
53859
54558
|
__typename?: 'GrowthRecJiraTemplateRecommendation';
|
|
53860
54559
|
entityId: Scalars['ID']['output'];
|
|
53861
54560
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54561
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
53862
54562
|
};
|
|
53863
54563
|
export declare type GrowthRecNonHydratedRecommendation = GrowthRecRecommendation & {
|
|
53864
54564
|
__typename?: 'GrowthRecNonHydratedRecommendation';
|
|
53865
54565
|
entityId: Scalars['ID']['output'];
|
|
53866
54566
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54567
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
53867
54568
|
};
|
|
53868
54569
|
export declare type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
53869
54570
|
__typename?: 'GrowthRecProductRecommendation';
|
|
53870
54571
|
entityId: Scalars['ID']['output'];
|
|
53871
54572
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54573
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
53872
54574
|
};
|
|
53873
54575
|
export declare type GrowthRecQuery = {
|
|
53874
54576
|
__typename?: 'GrowthRecQuery';
|
|
@@ -53882,6 +54584,7 @@ export declare type GrowthRecQueryRecommendationsArgs = {
|
|
|
53882
54584
|
export declare type GrowthRecRecommendation = {
|
|
53883
54585
|
entityId: Scalars['ID']['output'];
|
|
53884
54586
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
54587
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
53885
54588
|
};
|
|
53886
54589
|
export declare type GrowthRecRecommendations = {
|
|
53887
54590
|
__typename?: 'GrowthRecRecommendations';
|
|
@@ -57434,6 +58137,17 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
57434
58137
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
57435
58138
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
57436
58139
|
};
|
|
58140
|
+
export declare type JiraAlignAggJiraAlignProjectOwner = {
|
|
58141
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
58142
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
58143
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
58144
|
+
};
|
|
58145
|
+
export declare type JiraAlignAggJiraAlignProjectOwnerDto = JiraAlignAggJiraAlignProjectOwner & {
|
|
58146
|
+
__typename?: 'JiraAlignAggJiraAlignProjectOwnerDTO';
|
|
58147
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
58148
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
58149
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
58150
|
+
};
|
|
57437
58151
|
export declare type JiraAlignAggMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
57438
58152
|
__typename?: 'JiraAlignAggMercuryOriginalProjectStatusDTO';
|
|
57439
58153
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
@@ -57445,6 +58159,7 @@ export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus &
|
|
|
57445
58159
|
};
|
|
57446
58160
|
export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
57447
58161
|
__typename?: 'JiraAlignAggProject';
|
|
58162
|
+
externalOwner?: Maybe<JiraAlignAggJiraAlignProjectOwner>;
|
|
57448
58163
|
id: Scalars['ID']['output'];
|
|
57449
58164
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
57450
58165
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
@@ -58321,6 +59036,7 @@ export declare enum JiraBoardType {
|
|
|
58321
59036
|
}
|
|
58322
59037
|
export declare type JiraBoardView = {
|
|
58323
59038
|
__typename?: 'JiraBoardView';
|
|
59039
|
+
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
58324
59040
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58325
59041
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
58326
59042
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -58332,6 +59048,7 @@ export declare type JiraBoardView = {
|
|
|
58332
59048
|
id: Scalars['ID']['output'];
|
|
58333
59049
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58334
59050
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
59051
|
+
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58335
59052
|
};
|
|
58336
59053
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
58337
59054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58355,8 +59072,13 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
58355
59072
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
58356
59073
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
58357
59074
|
};
|
|
59075
|
+
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
59076
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59078
|
+
};
|
|
58358
59079
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
58359
59080
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
59081
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58360
59082
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58361
59083
|
id: Scalars['ID']['output'];
|
|
58362
59084
|
user?: Maybe<User>;
|
|
@@ -58379,11 +59101,13 @@ export declare type JiraBoardViewCardOptionEdge = {
|
|
|
58379
59101
|
};
|
|
58380
59102
|
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
58381
59103
|
__typename?: 'JiraBoardViewCategoryColumn';
|
|
59104
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58382
59105
|
category?: Maybe<JiraOption>;
|
|
58383
59106
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58384
59107
|
id: Scalars['ID']['output'];
|
|
58385
59108
|
};
|
|
58386
59109
|
export declare type JiraBoardViewColumn = {
|
|
59110
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58387
59111
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58388
59112
|
id: Scalars['ID']['output'];
|
|
58389
59113
|
};
|
|
@@ -58412,6 +59136,7 @@ export declare type JiraBoardViewInput = {
|
|
|
58412
59136
|
};
|
|
58413
59137
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
58414
59138
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
59139
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58415
59140
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58416
59141
|
id: Scalars['ID']['output'];
|
|
58417
59142
|
priority?: Maybe<JiraPriority>;
|
|
@@ -58429,18 +59154,45 @@ export declare type JiraBoardViewSettings = {
|
|
|
58429
59154
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
58430
59155
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58431
59156
|
};
|
|
59157
|
+
export declare type JiraBoardViewStatus = {
|
|
59158
|
+
__typename?: 'JiraBoardViewStatus';
|
|
59159
|
+
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
59160
|
+
id: Scalars['ID']['output'];
|
|
59161
|
+
status?: Maybe<JiraStatus>;
|
|
59162
|
+
};
|
|
59163
|
+
export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
59164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59166
|
+
};
|
|
58432
59167
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
58433
59168
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
59169
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58434
59170
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58435
59171
|
id: Scalars['ID']['output'];
|
|
59172
|
+
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58436
59173
|
name?: Maybe<Scalars['String']['output']>;
|
|
58437
59174
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
58438
59175
|
};
|
|
59176
|
+
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
59177
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59178
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59179
|
+
};
|
|
58439
59180
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
58440
59181
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
58441
59182
|
name: Scalars['String']['input'];
|
|
58442
59183
|
statusIds: Array<Scalars['ID']['input']>;
|
|
58443
59184
|
};
|
|
59185
|
+
export declare type JiraBoardViewStatusConnection = {
|
|
59186
|
+
__typename?: 'JiraBoardViewStatusConnection';
|
|
59187
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewStatusEdge>>>;
|
|
59188
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59189
|
+
pageInfo?: Maybe<PageInfo>;
|
|
59190
|
+
};
|
|
59191
|
+
export declare type JiraBoardViewStatusEdge = {
|
|
59192
|
+
__typename?: 'JiraBoardViewStatusEdge';
|
|
59193
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59194
|
+
node?: Maybe<JiraBoardViewStatus>;
|
|
59195
|
+
};
|
|
58444
59196
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
58445
59197
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
58446
59198
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60105,6 +60857,10 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
60105
60857
|
journeyVersion: Scalars['Long']['input'];
|
|
60106
60858
|
name: Scalars['String']['input'];
|
|
60107
60859
|
};
|
|
60860
|
+
export declare type JiraCreateFieldSchemeInput = {
|
|
60861
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
60862
|
+
name: Scalars['String']['input'];
|
|
60863
|
+
};
|
|
60108
60864
|
export declare type JiraCreateFormattingRuleInput = {
|
|
60109
60865
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
60110
60866
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60595,6 +61351,15 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
60595
61351
|
errors?: Maybe<Array<MutationError>>;
|
|
60596
61352
|
success: Scalars['Boolean']['output'];
|
|
60597
61353
|
};
|
|
61354
|
+
export declare type JiraDeleteFieldSchemeInput = {
|
|
61355
|
+
schemeId: Scalars['ID']['input'];
|
|
61356
|
+
};
|
|
61357
|
+
export declare type JiraDeleteFieldSchemePayload = Payload & {
|
|
61358
|
+
__typename?: 'JiraDeleteFieldSchemePayload';
|
|
61359
|
+
affectedSchemeId?: Maybe<Scalars['ID']['output']>;
|
|
61360
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61361
|
+
success: Scalars['Boolean']['output'];
|
|
61362
|
+
};
|
|
60598
61363
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
60599
61364
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
60600
61365
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -60667,6 +61432,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
60667
61432
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60668
61433
|
issues?: Maybe<JiraIssueConnection>;
|
|
60669
61434
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
61435
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60670
61436
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60671
61437
|
};
|
|
60672
61438
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -60677,6 +61443,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
60677
61443
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60678
61444
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60679
61445
|
};
|
|
61446
|
+
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61447
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61448
|
+
};
|
|
60680
61449
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
60681
61450
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60682
61451
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61102,6 +61871,11 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
61102
61871
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
61103
61872
|
success: Scalars['Boolean']['output'];
|
|
61104
61873
|
};
|
|
61874
|
+
export declare type JiraEditFieldSchemeInput = {
|
|
61875
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
61876
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
61877
|
+
schemeId: Scalars['ID']['input'];
|
|
61878
|
+
};
|
|
61105
61879
|
export declare enum JiraEmailMimeType {
|
|
61106
61880
|
Html = "HTML",
|
|
61107
61881
|
Text = "TEXT"
|
|
@@ -61476,6 +62250,35 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
61476
62250
|
Allow = "ALLOW",
|
|
61477
62251
|
Exclude = "EXCLUDE"
|
|
61478
62252
|
}
|
|
62253
|
+
export declare type JiraFieldSchemeAssociatedField = {
|
|
62254
|
+
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
62255
|
+
field?: Maybe<JiraField>;
|
|
62256
|
+
id: Scalars['ID']['output'];
|
|
62257
|
+
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
62258
|
+
};
|
|
62259
|
+
export declare type JiraFieldSchemeAssociatedFieldsConnection = {
|
|
62260
|
+
__typename?: 'JiraFieldSchemeAssociatedFieldsConnection';
|
|
62261
|
+
edges?: Maybe<Array<Maybe<JiraFieldSchemeAssociatedFieldsEdge>>>;
|
|
62262
|
+
pageInfo: PageInfo;
|
|
62263
|
+
};
|
|
62264
|
+
export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
62265
|
+
__typename?: 'JiraFieldSchemeAssociatedFieldsEdge';
|
|
62266
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62267
|
+
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
62268
|
+
};
|
|
62269
|
+
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
62270
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62271
|
+
schemeId: Scalars['ID']['input'];
|
|
62272
|
+
};
|
|
62273
|
+
export declare type JiraFieldSchemePayload = Payload & {
|
|
62274
|
+
__typename?: 'JiraFieldSchemePayload';
|
|
62275
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62276
|
+
fieldScheme?: Maybe<JiraFieldConfigScheme>;
|
|
62277
|
+
success: Scalars['Boolean']['output'];
|
|
62278
|
+
};
|
|
62279
|
+
export declare type JiraFieldSchemesInput = {
|
|
62280
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
62281
|
+
};
|
|
61479
62282
|
export declare type JiraFieldSearcherTemplate = {
|
|
61480
62283
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
61481
62284
|
displayName: Scalars['String']['output'];
|
|
@@ -61496,6 +62299,10 @@ export declare type JiraFieldSetPreferences = {
|
|
|
61496
62299
|
__typename?: 'JiraFieldSetPreferences';
|
|
61497
62300
|
width?: Maybe<Scalars['Int']['output']>;
|
|
61498
62301
|
};
|
|
62302
|
+
export declare type JiraFieldSetPreferencesInput = {
|
|
62303
|
+
fieldSetId: Scalars['String']['input'];
|
|
62304
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
62305
|
+
};
|
|
61499
62306
|
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
61500
62307
|
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
61501
62308
|
};
|
|
@@ -61518,10 +62325,14 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
61518
62325
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61519
62326
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61520
62327
|
};
|
|
62328
|
+
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62329
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62330
|
+
};
|
|
61521
62331
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
61522
62332
|
export declare type JiraFieldSetsMutationInput = {
|
|
61523
62333
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
61524
62334
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62335
|
+
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
61525
62336
|
};
|
|
61526
62337
|
export declare type JiraFieldSetsViewMetadata = {
|
|
61527
62338
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -61536,6 +62347,9 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
61536
62347
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61537
62348
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61538
62349
|
};
|
|
62350
|
+
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62351
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62352
|
+
};
|
|
61539
62353
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
61540
62354
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
61541
62355
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -62350,7 +63164,7 @@ export declare type JiraGroup = Node & {
|
|
|
62350
63164
|
name: Scalars['String']['output'];
|
|
62351
63165
|
};
|
|
62352
63166
|
export declare type JiraGroupByDropdownFilter = {
|
|
62353
|
-
projectId?: InputMaybe<Scalars['
|
|
63167
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
62354
63168
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
62355
63169
|
};
|
|
62356
63170
|
export declare type JiraGroupConnection = {
|
|
@@ -62384,6 +63198,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
62384
63198
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62385
63199
|
jql?: Maybe<Scalars['String']['output']>;
|
|
62386
63200
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
63201
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
62387
63202
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
62388
63203
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
62389
63204
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -62407,6 +63222,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
62407
63222
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62408
63223
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62409
63224
|
};
|
|
63225
|
+
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
63226
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63227
|
+
};
|
|
62410
63228
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
62411
63229
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
62412
63230
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -63945,6 +64763,9 @@ export declare type JiraIssueSearchScope = {
|
|
|
63945
64763
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
63946
64764
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
63947
64765
|
};
|
|
64766
|
+
export declare type JiraIssueSearchSettings = {
|
|
64767
|
+
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64768
|
+
};
|
|
63948
64769
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
63949
64770
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63950
64771
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63973,6 +64794,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
63973
64794
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63974
64795
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
63975
64796
|
};
|
|
64797
|
+
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64798
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64799
|
+
};
|
|
63976
64800
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
63977
64801
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
63978
64802
|
};
|
|
@@ -64060,6 +64884,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64060
64884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64061
64885
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64062
64886
|
};
|
|
64887
|
+
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64888
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64889
|
+
};
|
|
64063
64890
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64064
64891
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64065
64892
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65296,6 +66123,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
65296
66123
|
issues?: Maybe<JiraIssueConnection>;
|
|
65297
66124
|
jql?: Maybe<Scalars['String']['output']>;
|
|
65298
66125
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
66126
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
65299
66127
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
65300
66128
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
65301
66129
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -65308,6 +66136,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
65308
66136
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65309
66137
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65310
66138
|
};
|
|
66139
|
+
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
66140
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
66141
|
+
};
|
|
65311
66142
|
export declare type JiraListViewIssuesArgs = {
|
|
65312
66143
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65313
66144
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65323,6 +66154,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
65323
66154
|
export declare type JiraListViewViewSettingsArgs = {
|
|
65324
66155
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
65325
66156
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
66157
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
65326
66158
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65327
66159
|
};
|
|
65328
66160
|
export declare type JiraLongRunningTaskProgress = {
|
|
@@ -67589,6 +68421,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
67589
68421
|
__typename?: 'JiraPlaybook';
|
|
67590
68422
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
67591
68423
|
id: Scalars['ID']['output'];
|
|
68424
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
67592
68425
|
name?: Maybe<Scalars['String']['output']>;
|
|
67593
68426
|
owner?: Maybe<User>;
|
|
67594
68427
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67609,6 +68442,13 @@ export declare type JiraPlaybookEdge = {
|
|
|
67609
68442
|
cursor: Scalars['String']['output'];
|
|
67610
68443
|
node?: Maybe<JiraPlaybook>;
|
|
67611
68444
|
};
|
|
68445
|
+
export declare type JiraPlaybookExecutionFilter = {
|
|
68446
|
+
contextId?: InputMaybe<Scalars['String']['input']>;
|
|
68447
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68448
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68449
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68450
|
+
status?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68451
|
+
};
|
|
67612
68452
|
export declare type JiraPlaybookFilter = {
|
|
67613
68453
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67614
68454
|
};
|
|
@@ -67739,6 +68579,46 @@ export declare enum JiraPlaybookStepType {
|
|
|
67739
68579
|
AutomationRule = "AUTOMATION_RULE",
|
|
67740
68580
|
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
67741
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
|
+
};
|
|
67742
68622
|
export declare enum JiraPlaybooksSortBy {
|
|
67743
68623
|
Name = "NAME"
|
|
67744
68624
|
}
|
|
@@ -68616,6 +69496,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
68616
69496
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
68617
69497
|
mostRecent?: Maybe<JiraProject>;
|
|
68618
69498
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69499
|
+
otherItems?: Maybe<JiraProjectConnection>;
|
|
68619
69500
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
68620
69501
|
recents?: Maybe<JiraProjectConnection>;
|
|
68621
69502
|
};
|
|
@@ -68633,6 +69514,10 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
68633
69514
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68634
69515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68635
69516
|
};
|
|
69517
|
+
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69518
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69520
|
+
};
|
|
68636
69521
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
68637
69522
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68638
69523
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68811,6 +69696,7 @@ export declare type JiraQuery = {
|
|
|
68811
69696
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
68812
69697
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
68813
69698
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
69699
|
+
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
68814
69700
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
68815
69701
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
68816
69702
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -69537,6 +70423,9 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
69537
70423
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
69538
70424
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
69539
70425
|
};
|
|
70426
|
+
export declare type JiraQueryLabelsInBoardArgs = {
|
|
70427
|
+
boardId: Scalars['ID']['input'];
|
|
70428
|
+
};
|
|
69540
70429
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
69541
70430
|
cloudId: Scalars['ID']['input'];
|
|
69542
70431
|
};
|
|
@@ -70743,6 +71632,10 @@ export declare type JiraScmRepository = {
|
|
|
70743
71632
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
70744
71633
|
name?: Maybe<Scalars['String']['output']>;
|
|
70745
71634
|
};
|
|
71635
|
+
export declare type JiraScopedResetFieldsetsInput = {
|
|
71636
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71637
|
+
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71638
|
+
};
|
|
70746
71639
|
export declare type JiraScreen = Node & {
|
|
70747
71640
|
__typename?: 'JiraScreen';
|
|
70748
71641
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72118,6 +73011,15 @@ export declare type JiraSetFieldAssociationWithIssueTypesPayload = Payload & {
|
|
|
72118
73011
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
72119
73012
|
success: Scalars['Boolean']['output'];
|
|
72120
73013
|
};
|
|
73014
|
+
export declare type JiraSetFieldSetsPreferencesInput = {
|
|
73015
|
+
fieldSetsPreferences?: InputMaybe<Array<JiraFieldSetPreferencesInput>>;
|
|
73016
|
+
viewId: Scalars['ID']['input'];
|
|
73017
|
+
};
|
|
73018
|
+
export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
73019
|
+
__typename?: 'JiraSetFieldSetsPreferencesPayload';
|
|
73020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73021
|
+
success: Scalars['Boolean']['output'];
|
|
73022
|
+
};
|
|
72121
73023
|
export declare type JiraSetIsFavouriteInput = {
|
|
72122
73024
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
72123
73025
|
entityId: Scalars['ID']['input'];
|
|
@@ -72613,6 +73515,7 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
72613
73515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72614
73516
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
72615
73517
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73518
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72616
73519
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
72617
73520
|
};
|
|
72618
73521
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
@@ -72682,6 +73585,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
72682
73585
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
72683
73586
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
72684
73587
|
};
|
|
73588
|
+
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73589
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73590
|
+
};
|
|
72685
73591
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
72686
73592
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
72687
73593
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -74760,7 +75666,8 @@ export declare type JiraViewScopeInput = {
|
|
|
74760
75666
|
};
|
|
74761
75667
|
export declare enum JiraVisibilityControlMechanism {
|
|
74762
75668
|
AppAccessRules = "AppAccessRules",
|
|
74763
|
-
DisplayConditions = "DisplayConditions"
|
|
75669
|
+
DisplayConditions = "DisplayConditions",
|
|
75670
|
+
UnlicensedAccess = "UnlicensedAccess"
|
|
74764
75671
|
}
|
|
74765
75672
|
export declare type JiraVote = {
|
|
74766
75673
|
__typename?: 'JiraVote';
|
|
@@ -75358,6 +76265,63 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
75358
76265
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
75359
76266
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
75360
76267
|
};
|
|
76268
|
+
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
76269
|
+
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
76270
|
+
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
76271
|
+
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
76272
|
+
channel?: Maybe<JsmChannelsOrchestratorConversationChannel>;
|
|
76273
|
+
csat?: Maybe<Scalars['Int']['output']>;
|
|
76274
|
+
firstMessageContent?: Maybe<Scalars['String']['output']>;
|
|
76275
|
+
id: Scalars['ID']['output'];
|
|
76276
|
+
intentProjectionId?: Maybe<Scalars['ID']['output']>;
|
|
76277
|
+
linkToSource?: Maybe<Scalars['String']['output']>;
|
|
76278
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
76279
|
+
state?: Maybe<JsmChannelsOrchestratorConversationState>;
|
|
76280
|
+
};
|
|
76281
|
+
export declare enum JsmChannelsOrchestratorConversationActionType {
|
|
76282
|
+
AiAnswered = "AI_ANSWERED",
|
|
76283
|
+
Matched = "MATCHED",
|
|
76284
|
+
Unhandled = "UNHANDLED"
|
|
76285
|
+
}
|
|
76286
|
+
export declare enum JsmChannelsOrchestratorConversationChannel {
|
|
76287
|
+
HelpCenter = "HELP_CENTER",
|
|
76288
|
+
JsmPortal = "JSM_PORTAL",
|
|
76289
|
+
JsmWidget = "JSM_WIDGET",
|
|
76290
|
+
MsTeams = "MS_TEAMS",
|
|
76291
|
+
Slack = "SLACK"
|
|
76292
|
+
}
|
|
76293
|
+
export declare enum JsmChannelsOrchestratorConversationCsatOptionType {
|
|
76294
|
+
CsatOption_1 = "CSAT_OPTION_1",
|
|
76295
|
+
CsatOption_2 = "CSAT_OPTION_2",
|
|
76296
|
+
CsatOption_3 = "CSAT_OPTION_3",
|
|
76297
|
+
CsatOption_4 = "CSAT_OPTION_4",
|
|
76298
|
+
CsatOption_5 = "CSAT_OPTION_5"
|
|
76299
|
+
}
|
|
76300
|
+
export declare type JsmChannelsOrchestratorConversationEdge = {
|
|
76301
|
+
__typename?: 'JsmChannelsOrchestratorConversationEdge';
|
|
76302
|
+
cursor: Scalars['String']['output'];
|
|
76303
|
+
node?: Maybe<JsmChannelsOrchestratorConversation>;
|
|
76304
|
+
};
|
|
76305
|
+
export declare enum JsmChannelsOrchestratorConversationState {
|
|
76306
|
+
Closed = "CLOSED",
|
|
76307
|
+
Escalated = "ESCALATED",
|
|
76308
|
+
Open = "OPEN",
|
|
76309
|
+
Resolved = "RESOLVED"
|
|
76310
|
+
}
|
|
76311
|
+
export declare type JsmChannelsOrchestratorConversationsConnection = {
|
|
76312
|
+
__typename?: 'JsmChannelsOrchestratorConversationsConnection';
|
|
76313
|
+
edges?: Maybe<Array<JsmChannelsOrchestratorConversationEdge>>;
|
|
76314
|
+
nodes?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
76315
|
+
pageInfo: PageInfo;
|
|
76316
|
+
};
|
|
76317
|
+
export declare type JsmChannelsOrchestratorConversationsFilter = {
|
|
76318
|
+
actions?: InputMaybe<Array<JsmChannelsOrchestratorConversationActionType>>;
|
|
76319
|
+
channels?: InputMaybe<Array<JsmChannelsOrchestratorConversationChannel>>;
|
|
76320
|
+
csatOptions?: InputMaybe<Array<JsmChannelsOrchestratorConversationCsatOptionType>>;
|
|
76321
|
+
endDate: Scalars['DateTime']['input'];
|
|
76322
|
+
startDate: Scalars['DateTime']['input'];
|
|
76323
|
+
states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
|
|
76324
|
+
};
|
|
75361
76325
|
export declare type JsmChatAppendixActionItem = {
|
|
75362
76326
|
__typename?: 'JsmChatAppendixActionItem';
|
|
75363
76327
|
id: Scalars['String']['output'];
|
|
@@ -76683,6 +77647,15 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
76683
77647
|
Plain = "PLAIN"
|
|
76684
77648
|
}
|
|
76685
77649
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
77650
|
+
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
|
|
77651
|
+
cloudId: Scalars['String']['input'];
|
|
77652
|
+
query: Scalars['String']['input'];
|
|
77653
|
+
};
|
|
77654
|
+
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedPayload = Payload & {
|
|
77655
|
+
__typename?: 'KnowledgeDiscoveryMarkZeroQueryInteractedPayload';
|
|
77656
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77657
|
+
success: Scalars['Boolean']['output'];
|
|
77658
|
+
};
|
|
76686
77659
|
export declare type KnowledgeDiscoveryMetadata = {
|
|
76687
77660
|
numberOfRecentDocuments?: InputMaybe<Scalars['Int']['input']>;
|
|
76688
77661
|
};
|
|
@@ -76694,6 +77667,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
76694
77667
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
76695
77668
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
76696
77669
|
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
77670
|
+
markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
76697
77671
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
76698
77672
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
76699
77673
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -76716,6 +77690,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
|
76716
77690
|
export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
|
|
76717
77691
|
input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
|
|
76718
77692
|
};
|
|
77693
|
+
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
|
|
77694
|
+
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
77695
|
+
};
|
|
76719
77696
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
76720
77697
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
76721
77698
|
};
|
|
@@ -76755,6 +77732,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
76755
77732
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
76756
77733
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
76757
77734
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
77735
|
+
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
76758
77736
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
76759
77737
|
};
|
|
76760
77738
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
@@ -76855,6 +77833,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
76855
77833
|
id: Scalars['String']['input'];
|
|
76856
77834
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
76857
77835
|
};
|
|
77836
|
+
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
77837
|
+
ids: Array<Scalars['ID']['input']>;
|
|
77838
|
+
};
|
|
76858
77839
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
76859
77840
|
cloudId: Scalars['String']['input'];
|
|
76860
77841
|
};
|
|
@@ -76938,6 +77919,20 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
|
76938
77919
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
76939
77920
|
updatedAt: Scalars['String']['output'];
|
|
76940
77921
|
};
|
|
77922
|
+
export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
77923
|
+
__typename?: 'KnowledgeDiscoveryTopicByAri';
|
|
77924
|
+
description: Scalars['String']['output'];
|
|
77925
|
+
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77926
|
+
id: Scalars['ID']['output'];
|
|
77927
|
+
name: Scalars['String']['output'];
|
|
77928
|
+
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77929
|
+
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77930
|
+
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77931
|
+
updatedAt: Scalars['String']['output'];
|
|
77932
|
+
};
|
|
77933
|
+
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77934
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77935
|
+
};
|
|
76941
77936
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
76942
77937
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
76943
77938
|
Area = "AREA",
|
|
@@ -76997,9 +77992,19 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
76997
77992
|
};
|
|
76998
77993
|
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
76999
77994
|
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
77000
|
-
zeroQueries?: Maybe<Array<
|
|
77995
|
+
zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
|
|
77001
77996
|
};
|
|
77002
77997
|
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
77998
|
+
export declare type KnowledgeDiscoveryZeroQuery = {
|
|
77999
|
+
__typename?: 'KnowledgeDiscoveryZeroQuery';
|
|
78000
|
+
query: Scalars['String']['output'];
|
|
78001
|
+
type: KnowledgeDiscoveryZeroQueryType;
|
|
78002
|
+
};
|
|
78003
|
+
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
78004
|
+
RecentWork = "RECENT_WORK",
|
|
78005
|
+
RelatedQuestion = "RELATED_QUESTION",
|
|
78006
|
+
WhoIs = "WHO_IS"
|
|
78007
|
+
}
|
|
77003
78008
|
export declare enum KnowledgeGraphContentType {
|
|
77004
78009
|
Blogpost = "BLOGPOST",
|
|
77005
78010
|
Page = "PAGE"
|
|
@@ -77309,6 +78314,12 @@ export declare type LoomComment = Node & {
|
|
|
77309
78314
|
video?: Maybe<LoomVideo>;
|
|
77310
78315
|
videoId: Scalars['ID']['output'];
|
|
77311
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
|
+
};
|
|
77312
78323
|
export declare type LoomMeeting = Node & {
|
|
77313
78324
|
__typename?: 'LoomMeeting';
|
|
77314
78325
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -77912,6 +78923,7 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
77912
78923
|
};
|
|
77913
78924
|
export declare type MarketplaceAppVersionFilter = {
|
|
77914
78925
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78926
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
77915
78927
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
77916
78928
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
77917
78929
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -78155,6 +79167,10 @@ export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
|
78155
79167
|
userKey?: InputMaybe<Scalars['ID']['input']>;
|
|
78156
79168
|
versionNumber: Scalars['ID']['input'];
|
|
78157
79169
|
};
|
|
79170
|
+
export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
79171
|
+
Commercial = "COMMERCIAL",
|
|
79172
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
79173
|
+
}
|
|
78158
79174
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
78159
79175
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
78160
79176
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -78638,6 +79654,7 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
78638
79654
|
};
|
|
78639
79655
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
78640
79656
|
appKey: Scalars['ID']['input'];
|
|
79657
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
78641
79658
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
78642
79659
|
};
|
|
78643
79660
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -79320,6 +80337,10 @@ export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
|
79320
80337
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
79321
80338
|
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
79322
80339
|
};
|
|
80340
|
+
export declare type MarketplaceStoreApprovalDetails = {
|
|
80341
|
+
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
80342
|
+
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
80343
|
+
};
|
|
79323
80344
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
79324
80345
|
Cloud = "CLOUD",
|
|
79325
80346
|
Datacenter = "DATACENTER",
|
|
@@ -79495,6 +80516,7 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
79495
80516
|
}
|
|
79496
80517
|
export declare type MarketplaceStoreEdition = {
|
|
79497
80518
|
__typename?: 'MarketplaceStoreEdition';
|
|
80519
|
+
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
79498
80520
|
features: Array<MarketplaceStoreEditionFeature>;
|
|
79499
80521
|
id: Scalars['ID']['output'];
|
|
79500
80522
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -80746,6 +81768,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
80746
81768
|
ari: Scalars['String']['output'];
|
|
80747
81769
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
80748
81770
|
createdDate: Scalars['String']['output'];
|
|
81771
|
+
draft: Scalars['Boolean']['output'];
|
|
80749
81772
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
80750
81773
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
80751
81774
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
@@ -80835,7 +81858,7 @@ export declare type MercuryFocusAreaChangeRequirements = {
|
|
|
80835
81858
|
};
|
|
80836
81859
|
export declare type MercuryFocusAreaChangeSummary = {
|
|
80837
81860
|
__typename?: 'MercuryFocusAreaChangeSummary';
|
|
80838
|
-
focusAreaId
|
|
81861
|
+
focusAreaId?: Maybe<Scalars['ID']['output']>;
|
|
80839
81862
|
fundChangeSummary?: Maybe<MercuryFocusAreaFundChangeSummary>;
|
|
80840
81863
|
positionChangeSummary?: Maybe<MercuryFocusAreaPositionChangeSummary>;
|
|
80841
81864
|
strategicEventId: Scalars['ID']['output'];
|
|
@@ -80855,6 +81878,7 @@ export declare type MercuryFocusAreaFundChangeSummary = {
|
|
|
80855
81878
|
__typename?: 'MercuryFocusAreaFundChangeSummary';
|
|
80856
81879
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80857
81880
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
81881
|
+
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80858
81882
|
};
|
|
80859
81883
|
export declare type MercuryFocusAreaGoalLink = Node & {
|
|
80860
81884
|
__typename?: 'MercuryFocusAreaGoalLink';
|
|
@@ -80930,7 +81954,9 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
|
80930
81954
|
movedInCount?: Maybe<Scalars['Int']['output']>;
|
|
80931
81955
|
movedOutCount?: Maybe<Scalars['Int']['output']>;
|
|
80932
81956
|
movedWithinCount?: Maybe<Scalars['Int']['output']>;
|
|
81957
|
+
netCount?: Maybe<Scalars['Int']['output']>;
|
|
80933
81958
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
81959
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80934
81960
|
};
|
|
80935
81961
|
export declare type MercuryFocusAreaSort = {
|
|
80936
81962
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
@@ -82177,6 +83203,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
82177
83203
|
changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
|
|
82178
83204
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
82179
83205
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
83206
|
+
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
82180
83207
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
82181
83208
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
82182
83209
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -82220,6 +83247,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
|
|
|
82220
83247
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
|
|
82221
83248
|
changeProposalId: Scalars['ID']['input'];
|
|
82222
83249
|
};
|
|
83250
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
|
|
83251
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
83252
|
+
};
|
|
82223
83253
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
82224
83254
|
inputs: Array<MercuryChangeSummaryInput>;
|
|
82225
83255
|
};
|
|
@@ -82804,6 +83834,8 @@ export declare type Mutation = {
|
|
|
82804
83834
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
82805
83835
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
82806
83836
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
83837
|
+
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
83838
|
+
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
82807
83839
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
82808
83840
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
82809
83841
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
@@ -82817,12 +83849,30 @@ export declare type Mutation = {
|
|
|
82817
83849
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
82818
83850
|
appStorage?: Maybe<AppStorageMutation>;
|
|
82819
83851
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
83852
|
+
appStorage_admin?: Maybe<AppStorageAdminMutation>;
|
|
82820
83853
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
82821
83854
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
82822
83855
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
82823
83856
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
82824
83857
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
82825
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>;
|
|
82826
83876
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
82827
83877
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
82828
83878
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -82837,10 +83887,10 @@ export declare type Mutation = {
|
|
|
82837
83887
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
82838
83888
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
82839
83889
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
83890
|
+
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
82840
83891
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
82841
83892
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
82842
83893
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
82843
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
82844
83894
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
82845
83895
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
82846
83896
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -83095,6 +84145,7 @@ export declare type Mutation = {
|
|
|
83095
84145
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
83096
84146
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
83097
84147
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
84148
|
+
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
83098
84149
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
83099
84150
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
83100
84151
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -83181,10 +84232,13 @@ export declare type Mutation = {
|
|
|
83181
84232
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
83182
84233
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
83183
84234
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
84235
|
+
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83184
84236
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83185
84237
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
84238
|
+
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
83186
84239
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
83187
84240
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
84241
|
+
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83188
84242
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
83189
84243
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
83190
84244
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
@@ -83200,6 +84254,7 @@ export declare type Mutation = {
|
|
|
83200
84254
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
83201
84255
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
83202
84256
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
84257
|
+
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
83203
84258
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
83204
84259
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
83205
84260
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
@@ -83217,6 +84272,7 @@ export declare type Mutation = {
|
|
|
83217
84272
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
83218
84273
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
83219
84274
|
likeContent?: Maybe<LikeContentPayload>;
|
|
84275
|
+
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
83220
84276
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
83221
84277
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
83222
84278
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
@@ -83252,6 +84308,7 @@ export declare type Mutation = {
|
|
|
83252
84308
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
83253
84309
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
83254
84310
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
84311
|
+
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
83255
84312
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
83256
84313
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
83257
84314
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
@@ -83323,10 +84380,25 @@ export declare type Mutation = {
|
|
|
83323
84380
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
83324
84381
|
shepherd?: Maybe<ShepherdMutation>;
|
|
83325
84382
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
84383
|
+
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
83326
84384
|
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
84385
|
+
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
84386
|
+
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
83327
84387
|
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
83328
84388
|
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
84389
|
+
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
84390
|
+
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
83329
84391
|
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
84392
|
+
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
84393
|
+
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
84394
|
+
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
84395
|
+
spf_updateAskJustification?: Maybe<SpfUpdateAskPayload>;
|
|
84396
|
+
spf_updateAskName?: Maybe<SpfUpdateAskPayload>;
|
|
84397
|
+
spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
|
|
84398
|
+
spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
|
|
84399
|
+
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
84400
|
+
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
84401
|
+
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
83330
84402
|
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
83331
84403
|
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
83332
84404
|
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -83452,6 +84524,12 @@ export declare type MutationAddReactionArgs = {
|
|
|
83452
84524
|
contentType: GraphQlReactionContentType;
|
|
83453
84525
|
emojiId: Scalars['String']['input'];
|
|
83454
84526
|
};
|
|
84527
|
+
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
84528
|
+
resourceAri: Scalars['ID']['input'];
|
|
84529
|
+
};
|
|
84530
|
+
export declare type MutationAdmin_DeleteAccessUrlArgs = {
|
|
84531
|
+
id: Scalars['ID']['input'];
|
|
84532
|
+
};
|
|
83455
84533
|
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
83456
84534
|
cloudId: Scalars['String']['input'];
|
|
83457
84535
|
input: AgentStudioCreateAgentInput;
|
|
@@ -83492,6 +84570,9 @@ export declare type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs =
|
|
|
83492
84570
|
containerId: Scalars['String']['input'];
|
|
83493
84571
|
scenarioIds: Array<Scalars['ID']['input']>;
|
|
83494
84572
|
};
|
|
84573
|
+
export declare type MutationAppStorage_AdminArgs = {
|
|
84574
|
+
appId: Scalars['ID']['input'];
|
|
84575
|
+
};
|
|
83495
84576
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
83496
84577
|
input: ApplyPolarisProjectTemplateInput;
|
|
83497
84578
|
};
|
|
@@ -83511,6 +84592,57 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
83511
84592
|
export declare type MutationAttachDanglingCommentArgs = {
|
|
83512
84593
|
input: ReattachInlineCommentInput;
|
|
83513
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
|
+
};
|
|
83514
84646
|
export declare type MutationBoardCardMoveArgs = {
|
|
83515
84647
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
83516
84648
|
};
|
|
@@ -83546,11 +84678,10 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
83546
84678
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83547
84679
|
};
|
|
83548
84680
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
83549
|
-
|
|
84681
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83550
84682
|
};
|
|
83551
84683
|
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
83552
84684
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
83553
|
-
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
83554
84685
|
};
|
|
83555
84686
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
83556
84687
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83562,15 +84693,15 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
83562
84693
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
83563
84694
|
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
83564
84695
|
};
|
|
84696
|
+
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
84697
|
+
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
84698
|
+
};
|
|
83565
84699
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
83566
84700
|
contentId: Scalars['ID']['input'];
|
|
83567
84701
|
};
|
|
83568
84702
|
export declare type MutationCompleteSprintArgs = {
|
|
83569
84703
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83570
84704
|
};
|
|
83571
|
-
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
83572
|
-
input: ConfigurePolarisRefreshInput;
|
|
83573
|
-
};
|
|
83574
84705
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
83575
84706
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
83576
84707
|
};
|
|
@@ -84412,6 +85543,11 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
84412
85543
|
helpCenterAri: Scalars['ID']['input'];
|
|
84413
85544
|
input: CsmAiUpdateHandoffConfigInput;
|
|
84414
85545
|
};
|
|
85546
|
+
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85547
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
85548
|
+
input: CsmAiWidgetUpdateInput;
|
|
85549
|
+
widgetId: Scalars['ID']['input'];
|
|
85550
|
+
};
|
|
84415
85551
|
export declare type MutationCustomerServiceArgs = {
|
|
84416
85552
|
cloudId: Scalars['ID']['input'];
|
|
84417
85553
|
};
|
|
@@ -84609,6 +85745,7 @@ export declare type MutationEnablePublicLinkForPageArgs = {
|
|
|
84609
85745
|
pageId: Scalars['ID']['input'];
|
|
84610
85746
|
};
|
|
84611
85747
|
export declare type MutationFavouritePageArgs = {
|
|
85748
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84612
85749
|
favouritePageInput: FavouritePageInput;
|
|
84613
85750
|
};
|
|
84614
85751
|
export declare type MutationFavouriteSpaceArgs = {
|
|
@@ -84663,6 +85800,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
84663
85800
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
84664
85801
|
input: JiraCreateCustomBackgroundInput;
|
|
84665
85802
|
};
|
|
85803
|
+
export declare type MutationJira_CreateFieldSchemeArgs = {
|
|
85804
|
+
cloudId: Scalars['ID']['input'];
|
|
85805
|
+
input: JiraCreateFieldSchemeInput;
|
|
85806
|
+
};
|
|
84666
85807
|
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
84667
85808
|
cloudId: Scalars['ID']['input'];
|
|
84668
85809
|
input: JiraCreateGlobalCustomFieldInput;
|
|
@@ -84670,12 +85811,20 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
84670
85811
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
84671
85812
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
84672
85813
|
};
|
|
85814
|
+
export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
85815
|
+
cloudId: Scalars['ID']['input'];
|
|
85816
|
+
input: JiraDeleteFieldSchemeInput;
|
|
85817
|
+
};
|
|
84673
85818
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
84674
85819
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
84675
85820
|
};
|
|
84676
85821
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
84677
85822
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
84678
85823
|
};
|
|
85824
|
+
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
85825
|
+
cloudId: Scalars['ID']['input'];
|
|
85826
|
+
input: JiraEditFieldSchemeInput;
|
|
85827
|
+
};
|
|
84679
85828
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
84680
85829
|
input: JiraPublishBoardViewConfigInput;
|
|
84681
85830
|
};
|
|
@@ -84722,6 +85871,9 @@ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
|
84722
85871
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
84723
85872
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
84724
85873
|
};
|
|
85874
|
+
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
85875
|
+
input: JiraSetFieldSetsPreferencesInput;
|
|
85876
|
+
};
|
|
84725
85877
|
export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
84726
85878
|
input: JiraSetIssueSearchGroupByInput;
|
|
84727
85879
|
};
|
|
@@ -84768,6 +85920,12 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
84768
85920
|
export declare type MutationLikeContentArgs = {
|
|
84769
85921
|
input: LikeContentInput;
|
|
84770
85922
|
};
|
|
85923
|
+
export declare type MutationLoom_SpaceCreateArgs = {
|
|
85924
|
+
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
85925
|
+
name: Scalars['String']['input'];
|
|
85926
|
+
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
85927
|
+
siteId: Scalars['ID']['input'];
|
|
85928
|
+
};
|
|
84771
85929
|
export declare type MutationMarkCommentsAsReadArgs = {
|
|
84772
85930
|
input: MarkCommentsAsReadInput;
|
|
84773
85931
|
};
|
|
@@ -84853,6 +86011,10 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
84853
86011
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
84854
86012
|
id: Scalars['String']['input'];
|
|
84855
86013
|
};
|
|
86014
|
+
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
86015
|
+
cloudId: Scalars['ID']['input'];
|
|
86016
|
+
input: Array<RadarClearFocusAreaProposalInput>;
|
|
86017
|
+
};
|
|
84856
86018
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
84857
86019
|
cloudId: Scalars['ID']['input'];
|
|
84858
86020
|
input: RadarCustomFieldInput;
|
|
@@ -85082,18 +86244,63 @@ export declare type MutationShareResourceArgs = {
|
|
|
85082
86244
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
85083
86245
|
spaceKey: Scalars['String']['input'];
|
|
85084
86246
|
};
|
|
86247
|
+
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
86248
|
+
input: SpfAttachAskLinkInput;
|
|
86249
|
+
};
|
|
85085
86250
|
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
85086
86251
|
input: SpfAttachRelatedContentInput;
|
|
85087
86252
|
};
|
|
86253
|
+
export declare type MutationSpf_CreateAskArgs = {
|
|
86254
|
+
input: SpfCreateAskInput;
|
|
86255
|
+
};
|
|
86256
|
+
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
86257
|
+
input: SpfCreateAskCommentInput;
|
|
86258
|
+
};
|
|
85088
86259
|
export declare type MutationSpf_CreateCommentArgs = {
|
|
85089
86260
|
input: SpfCreateCommentInput;
|
|
85090
86261
|
};
|
|
85091
86262
|
export declare type MutationSpf_CreateDependencyArgs = {
|
|
85092
86263
|
input: SpfCreateDependencyInput;
|
|
85093
86264
|
};
|
|
86265
|
+
export declare type MutationSpf_DeleteAskArgs = {
|
|
86266
|
+
input: SpfDeleteAskInput;
|
|
86267
|
+
};
|
|
86268
|
+
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
86269
|
+
input: SpfDeleteAskLinkInput;
|
|
86270
|
+
};
|
|
85094
86271
|
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
85095
86272
|
input: SpfDeleteDependencyInput;
|
|
85096
86273
|
};
|
|
86274
|
+
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
86275
|
+
input: SpfUpdateAskCommentDataInput;
|
|
86276
|
+
};
|
|
86277
|
+
export declare type MutationSpf_UpdateAskDescriptionArgs = {
|
|
86278
|
+
input: SpfUpdateAskDescriptionInput;
|
|
86279
|
+
};
|
|
86280
|
+
export declare type MutationSpf_UpdateAskImpactedWorkArgs = {
|
|
86281
|
+
input: SpfUpdateAskImpactedWorkInput;
|
|
86282
|
+
};
|
|
86283
|
+
export declare type MutationSpf_UpdateAskJustificationArgs = {
|
|
86284
|
+
input: SpfUpdateAskJustificationInput;
|
|
86285
|
+
};
|
|
86286
|
+
export declare type MutationSpf_UpdateAskNameArgs = {
|
|
86287
|
+
input: SpfUpdateAskNameInput;
|
|
86288
|
+
};
|
|
86289
|
+
export declare type MutationSpf_UpdateAskOwnerArgs = {
|
|
86290
|
+
input: SpfUpdateAskOwnerInput;
|
|
86291
|
+
};
|
|
86292
|
+
export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
86293
|
+
input: SpfUpdateAskPriorityInput;
|
|
86294
|
+
};
|
|
86295
|
+
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
86296
|
+
input: SpfUpdateAskReceivingTeamInput;
|
|
86297
|
+
};
|
|
86298
|
+
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
86299
|
+
input: SpfUpdateAskSubmitterInput;
|
|
86300
|
+
};
|
|
86301
|
+
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
86302
|
+
input: SpfUpdateAskSubmittingTeamInput;
|
|
86303
|
+
};
|
|
85097
86304
|
export declare type MutationSpf_UpdateCommentArgs = {
|
|
85098
86305
|
input: SpfUpdateCommentDataInput;
|
|
85099
86306
|
};
|
|
@@ -85168,6 +86375,7 @@ export declare type MutationUnassignIssueParentArgs = {
|
|
|
85168
86375
|
input?: InputMaybe<UnassignIssueParentInput>;
|
|
85169
86376
|
};
|
|
85170
86377
|
export declare type MutationUnfavouritePageArgs = {
|
|
86378
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85171
86379
|
favouritePageInput: FavouritePageInput;
|
|
85172
86380
|
};
|
|
85173
86381
|
export declare type MutationUnfavouriteSpaceArgs = {
|
|
@@ -85189,6 +86397,7 @@ export declare type MutationUnwatchBlogsArgs = {
|
|
|
85189
86397
|
watchSpaceInput: WatchSpaceInput;
|
|
85190
86398
|
};
|
|
85191
86399
|
export declare type MutationUnwatchContentArgs = {
|
|
86400
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85192
86401
|
watchContentInput: WatchContentInput;
|
|
85193
86402
|
};
|
|
85194
86403
|
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
@@ -85401,6 +86610,7 @@ export declare type MutationWatchBlogsArgs = {
|
|
|
85401
86610
|
watchSpaceInput: WatchSpaceInput;
|
|
85402
86611
|
};
|
|
85403
86612
|
export declare type MutationWatchContentArgs = {
|
|
86613
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85404
86614
|
watchContentInput: WatchContentInput;
|
|
85405
86615
|
};
|
|
85406
86616
|
export declare type MutationWatchMarketplaceAppArgs = {
|
|
@@ -85499,9 +86709,6 @@ export declare type MyVisitedSpacesItems = {
|
|
|
85499
86709
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
85500
86710
|
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
85501
86711
|
};
|
|
85502
|
-
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
85503
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85504
|
-
};
|
|
85505
86712
|
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
85506
86713
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85507
86714
|
};
|
|
@@ -85736,6 +86943,7 @@ export declare type OAuthClientsAccountGrant = {
|
|
|
85736
86943
|
clientInfo?: Maybe<OAuthClientsClientInfo>;
|
|
85737
86944
|
scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
|
|
85738
86945
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
86946
|
+
scopesInfo?: Maybe<Array<OAuthClientsScopeInfo>>;
|
|
85739
86947
|
};
|
|
85740
86948
|
export declare type OAuthClientsAccountGrantConnection = {
|
|
85741
86949
|
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
@@ -85757,6 +86965,11 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
85757
86965
|
};
|
|
85758
86966
|
export declare type OAuthClientsClientInfo = {
|
|
85759
86967
|
__typename?: 'OAuthClientsClientInfo';
|
|
86968
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
86969
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
86970
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
86971
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
86972
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
85760
86973
|
clientId: Scalars['String']['output'];
|
|
85761
86974
|
clientName?: Maybe<Scalars['String']['output']>;
|
|
85762
86975
|
customerName?: Maybe<Scalars['String']['output']>;
|
|
@@ -85775,6 +86988,11 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
85775
86988
|
description?: Maybe<Scalars['String']['output']>;
|
|
85776
86989
|
key: Scalars['String']['output'];
|
|
85777
86990
|
};
|
|
86991
|
+
export declare type OAuthClientsScopeInfo = {
|
|
86992
|
+
__typename?: 'OAuthClientsScopeInfo';
|
|
86993
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
86994
|
+
key: Scalars['String']['output'];
|
|
86995
|
+
};
|
|
85778
86996
|
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
85779
86997
|
contextIds: Array<Scalars['ID']['input']>;
|
|
85780
86998
|
extensionId: Scalars['ID']['input'];
|
|
@@ -87775,6 +88993,7 @@ export declare type PolarisWhiteboardConfig = {
|
|
|
87775
88993
|
export declare type PopularFeedItem = {
|
|
87776
88994
|
__typename?: 'PopularFeedItem';
|
|
87777
88995
|
content?: Maybe<Content>;
|
|
88996
|
+
id: Scalars['ID']['output'];
|
|
87778
88997
|
};
|
|
87779
88998
|
export declare type PopularFeedItemEdge = {
|
|
87780
88999
|
__typename?: 'PopularFeedItemEdge';
|
|
@@ -88161,6 +89380,7 @@ export declare type Query = {
|
|
|
88161
89380
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
88162
89381
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
88163
89382
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
89383
|
+
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
88164
89384
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
88165
89385
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
88166
89386
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
@@ -88201,8 +89421,13 @@ export declare type Query = {
|
|
|
88201
89421
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
88202
89422
|
apps?: Maybe<AppConnection>;
|
|
88203
89423
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
89424
|
+
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89425
|
+
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89426
|
+
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88204
89427
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
88205
89428
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
89429
|
+
avp_getChart?: Maybe<AvpChart>;
|
|
89430
|
+
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
88206
89431
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
88207
89432
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
88208
89433
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -88221,6 +89446,7 @@ export declare type Query = {
|
|
|
88221
89446
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
88222
89447
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
88223
89448
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
89449
|
+
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
88224
89450
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
88225
89451
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
88226
89452
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
@@ -88491,6 +89717,7 @@ export declare type Query = {
|
|
|
88491
89717
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
88492
89718
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
88493
89719
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89720
|
+
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88494
89721
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
88495
89722
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
88496
89723
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -88648,11 +89875,15 @@ export declare type Query = {
|
|
|
88648
89875
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
88649
89876
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
88650
89877
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89878
|
+
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
89879
|
+
jira_fieldSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
88651
89880
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
88652
89881
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
88653
89882
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
88654
89883
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
88655
89884
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
89885
|
+
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
89886
|
+
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
88656
89887
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
88657
89888
|
jsw?: Maybe<JswQuery>;
|
|
88658
89889
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -88670,6 +89901,7 @@ export declare type Query = {
|
|
|
88670
89901
|
loom_comment?: Maybe<LoomComment>;
|
|
88671
89902
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
88672
89903
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
89904
|
+
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
88673
89905
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
88674
89906
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
88675
89907
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -88735,6 +89967,7 @@ export declare type Query = {
|
|
|
88735
89967
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
88736
89968
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
88737
89969
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
89970
|
+
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
88738
89971
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
88739
89972
|
pokemon?: Maybe<PokemonQuery>;
|
|
88740
89973
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -88758,6 +89991,8 @@ export declare type Query = {
|
|
|
88758
89991
|
pricings: ContentPlatformPricingSearchConnection;
|
|
88759
89992
|
productListing?: Maybe<ProductListingResult>;
|
|
88760
89993
|
productListings: Array<ProductListingResult>;
|
|
89994
|
+
projects_byAri?: Maybe<TownsquareProject>;
|
|
89995
|
+
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
88761
89996
|
ptpage?: Maybe<PtPage>;
|
|
88762
89997
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
88763
89998
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -88830,6 +90065,9 @@ export declare type Query = {
|
|
|
88830
90065
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
88831
90066
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
88832
90067
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
90068
|
+
spf_ask?: Maybe<SpfAskResult>;
|
|
90069
|
+
spf_asks?: Maybe<SpfAskConnection>;
|
|
90070
|
+
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
88833
90071
|
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
88834
90072
|
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
88835
90073
|
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
@@ -88902,6 +90140,13 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
|
|
|
88902
90140
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88903
90141
|
orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
|
|
88904
90142
|
};
|
|
90143
|
+
export declare type QueryAdmin_AccessUrlsArgs = {
|
|
90144
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90145
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
90146
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90147
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
90148
|
+
orgId: Scalars['ID']['input'];
|
|
90149
|
+
};
|
|
88905
90150
|
export declare type QueryAgentAi_ContextPanelArgs = {
|
|
88906
90151
|
cloudId: Scalars['ID']['input'];
|
|
88907
90152
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89083,12 +90328,27 @@ export declare type QueryAppsArgs = {
|
|
|
89083
90328
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
89084
90329
|
cloudId: Scalars['ID']['input'];
|
|
89085
90330
|
};
|
|
90331
|
+
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
90332
|
+
issueId: Scalars['ID']['input'];
|
|
90333
|
+
};
|
|
90334
|
+
export declare type QueryAtlasProjectsLinkedToAtlasGoalArgs = {
|
|
90335
|
+
goalId: Scalars['ID']['input'];
|
|
90336
|
+
};
|
|
90337
|
+
export declare type QueryAtlasProjectsLinkedToJiraIssueArgs = {
|
|
90338
|
+
issueId: Scalars['ID']['input'];
|
|
90339
|
+
};
|
|
89086
90340
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
89087
90341
|
cloudId: Scalars['ID']['input'];
|
|
89088
90342
|
};
|
|
89089
90343
|
export declare type QueryAvailableContentStatesArgs = {
|
|
89090
90344
|
contentId: Scalars['ID']['input'];
|
|
89091
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
|
+
};
|
|
89092
90352
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
89093
90353
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89094
90354
|
cloudId: Scalars['ID']['input'];
|
|
@@ -89161,6 +90421,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
89161
90421
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
89162
90422
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
89163
90423
|
};
|
|
90424
|
+
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90425
|
+
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
90426
|
+
};
|
|
89164
90427
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
89165
90428
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
89166
90429
|
};
|
|
@@ -90386,6 +91649,11 @@ export declare type QueryContentWatchersArgs = {
|
|
|
90386
91649
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90387
91650
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
90388
91651
|
};
|
|
91652
|
+
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91654
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91655
|
+
projectId: Scalars['ID']['input'];
|
|
91656
|
+
};
|
|
90389
91657
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
90390
91658
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90391
91659
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -90948,6 +92216,18 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
90948
92216
|
cloudId: Scalars['ID']['input'];
|
|
90949
92217
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90950
92218
|
};
|
|
92219
|
+
export declare type QueryJira_FieldSchemeAssociatedFieldsArgs = {
|
|
92220
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92221
|
+
cloudId: Scalars['ID']['input'];
|
|
92222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92223
|
+
input?: InputMaybe<JiraFieldSchemeAssociatedFieldsInput>;
|
|
92224
|
+
};
|
|
92225
|
+
export declare type QueryJira_FieldSchemesArgs = {
|
|
92226
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92227
|
+
cloudId: Scalars['ID']['input'];
|
|
92228
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92229
|
+
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
92230
|
+
};
|
|
90951
92231
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
90952
92232
|
cloudId: Scalars['ID']['input'];
|
|
90953
92233
|
};
|
|
@@ -90965,6 +92245,15 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
90965
92245
|
cloudId: Scalars['ID']['input'];
|
|
90966
92246
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
90967
92247
|
};
|
|
92248
|
+
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
92249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92250
|
+
containerAri: Scalars['ID']['input'];
|
|
92251
|
+
filter: JsmChannelsOrchestratorConversationsFilter;
|
|
92252
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92253
|
+
};
|
|
92254
|
+
export declare type QueryJsmChannels_ConversationsByIdsArgs = {
|
|
92255
|
+
ids: Array<Scalars['ID']['input']>;
|
|
92256
|
+
};
|
|
90968
92257
|
export declare type QueryKnowledgeBaseArgs = {
|
|
90969
92258
|
cloudId: Scalars['ID']['input'];
|
|
90970
92259
|
};
|
|
@@ -91007,6 +92296,12 @@ export declare type QueryLoom_CreateSpaceArgs = {
|
|
|
91007
92296
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
91008
92297
|
siteId: Scalars['ID']['input'];
|
|
91009
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
|
+
};
|
|
91010
92305
|
export declare type QueryLoom_MeetingArgs = {
|
|
91011
92306
|
id: Scalars['ID']['input'];
|
|
91012
92307
|
};
|
|
@@ -91200,6 +92495,14 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
91200
92495
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91201
92496
|
cloudId: Scalars['ID']['input'];
|
|
91202
92497
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
92498
|
+
filters?: InputMaybe<JiraPlaybookExecutionFilter>;
|
|
92499
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92500
|
+
projectKey: Scalars['String']['input'];
|
|
92501
|
+
};
|
|
92502
|
+
export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
|
|
92503
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92504
|
+
cloudId: Scalars['ID']['input'];
|
|
92505
|
+
filters?: InputMaybe<JiraPlaybookStepUsageFilter>;
|
|
91203
92506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91204
92507
|
projectKey: Scalars['String']['input'];
|
|
91205
92508
|
};
|
|
@@ -91278,6 +92581,12 @@ export declare type QueryProductListingsArgs = {
|
|
|
91278
92581
|
ids: Array<Scalars['ID']['input']>;
|
|
91279
92582
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
91280
92583
|
};
|
|
92584
|
+
export declare type QueryProjects_ByAriArgs = {
|
|
92585
|
+
ari: Scalars['String']['input'];
|
|
92586
|
+
};
|
|
92587
|
+
export declare type QueryProjects_ByArisArgs = {
|
|
92588
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
92589
|
+
};
|
|
91281
92590
|
export declare type QueryPtpageArgs = {
|
|
91282
92591
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91283
92592
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91358,8 +92667,9 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
91358
92667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91359
92668
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
91360
92669
|
cloudId: Scalars['ID']['input'];
|
|
91361
|
-
entity
|
|
92670
|
+
entity?: InputMaybe<RadarPositionsByEntityType>;
|
|
91362
92671
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92672
|
+
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
91363
92673
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
91364
92674
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
91365
92675
|
};
|
|
@@ -91596,6 +92906,18 @@ export declare type QuerySpacesArgs = {
|
|
|
91596
92906
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
91597
92907
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
91598
92908
|
};
|
|
92909
|
+
export declare type QuerySpf_AskArgs = {
|
|
92910
|
+
id: Scalars['ID']['input'];
|
|
92911
|
+
};
|
|
92912
|
+
export declare type QuerySpf_AsksArgs = {
|
|
92913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92914
|
+
cloudId: Scalars['ID']['input'];
|
|
92915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92916
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
92917
|
+
};
|
|
92918
|
+
export declare type QuerySpf_AsksByIdsArgs = {
|
|
92919
|
+
ids: Array<Scalars['ID']['input']>;
|
|
92920
|
+
};
|
|
91599
92921
|
export declare type QuerySpf_DependenciesArgs = {
|
|
91600
92922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91601
92923
|
cloudId: Scalars['ID']['input'];
|
|
@@ -91751,6 +93073,9 @@ export declare type QueryUserGroupSearchArgs = {
|
|
|
91751
93073
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
91752
93074
|
sitePermissionTypeFilter?: InputMaybe<SitePermissionTypeFilter>;
|
|
91753
93075
|
};
|
|
93076
|
+
export declare type QueryUserPreferencesArgs = {
|
|
93077
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
93078
|
+
};
|
|
91754
93079
|
export declare type QueryUserWithContentRestrictionsArgs = {
|
|
91755
93080
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
91756
93081
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -91910,6 +93235,9 @@ export declare type RadarBooleanFieldValue = {
|
|
|
91910
93235
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
91911
93236
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
91912
93237
|
};
|
|
93238
|
+
export declare type RadarClearFocusAreaProposalInput = {
|
|
93239
|
+
proposalAri: Scalars['ID']['input'];
|
|
93240
|
+
};
|
|
91913
93241
|
export declare type RadarConnection = {
|
|
91914
93242
|
pageInfo: PageInfo;
|
|
91915
93243
|
totalCount: Scalars['Int']['output'];
|
|
@@ -92022,6 +93350,7 @@ export declare enum RadarFieldType {
|
|
|
92022
93350
|
Ari = "ARI",
|
|
92023
93351
|
Boolean = "BOOLEAN",
|
|
92024
93352
|
Datetime = "DATETIME",
|
|
93353
|
+
Keyword = "KEYWORD",
|
|
92025
93354
|
Number = "NUMBER",
|
|
92026
93355
|
Status = "STATUS",
|
|
92027
93356
|
String = "STRING",
|
|
@@ -92236,8 +93565,13 @@ export declare type RadarPositionsByEntityEdge = RadarEdge & {
|
|
|
92236
93565
|
cursor: Scalars['String']['output'];
|
|
92237
93566
|
node: RadarPositionsByEntity;
|
|
92238
93567
|
};
|
|
93568
|
+
export declare type RadarPositionsByEntityInput = {
|
|
93569
|
+
entity: RadarPositionsByEntityType;
|
|
93570
|
+
fieldValue?: InputMaybe<Scalars['ID']['input']>;
|
|
93571
|
+
};
|
|
92239
93572
|
export declare enum RadarPositionsByEntityType {
|
|
92240
|
-
FocusArea = "focusArea"
|
|
93573
|
+
FocusArea = "focusArea",
|
|
93574
|
+
Position = "position"
|
|
92241
93575
|
}
|
|
92242
93576
|
export declare type RadarPrincipalByResourceRole = {
|
|
92243
93577
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
@@ -92381,6 +93715,8 @@ export declare enum RateLimitingCurrency {
|
|
|
92381
93715
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
92382
93716
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
92383
93717
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
93718
|
+
DevConsoleMutationCurrency = "DEV_CONSOLE_MUTATION_CURRENCY",
|
|
93719
|
+
DevConsoleQueryCurrency = "DEV_CONSOLE_QUERY_CURRENCY",
|
|
92384
93720
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
92385
93721
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
92386
93722
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -94066,6 +95402,7 @@ export declare type SearchAnalyticsInput = {
|
|
|
94066
95402
|
queryVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
94067
95403
|
searchReferrerId?: InputMaybe<Scalars['String']['input']>;
|
|
94068
95404
|
searchSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
95405
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
94069
95406
|
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
94070
95407
|
};
|
|
94071
95408
|
export declare type SearchBoardFilter = {
|
|
@@ -96421,8 +97758,12 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
96421
97758
|
};
|
|
96422
97759
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
96423
97760
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
97761
|
+
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
96424
97762
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
96425
97763
|
};
|
|
97764
|
+
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
97765
|
+
ids: Array<Scalars['ID']['input']>;
|
|
97766
|
+
};
|
|
96426
97767
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
96427
97768
|
ids: Array<Scalars['ID']['input']>;
|
|
96428
97769
|
};
|
|
@@ -97704,6 +99045,144 @@ export declare type SpaceWithExemption = {
|
|
|
97704
99045
|
status?: Maybe<Scalars['String']['output']>;
|
|
97705
99046
|
type?: Maybe<Scalars['String']['output']>;
|
|
97706
99047
|
};
|
|
99048
|
+
export declare type SpfAsk = Node & {
|
|
99049
|
+
__typename?: 'SpfAsk';
|
|
99050
|
+
comments?: Maybe<SpfAskCommentConnection>;
|
|
99051
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99052
|
+
createdBy?: Maybe<User>;
|
|
99053
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
99054
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
99055
|
+
id: Scalars['ID']['output'];
|
|
99056
|
+
impactedWork?: Maybe<SpfImpactedWork>;
|
|
99057
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
99058
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
99059
|
+
links?: Maybe<SpfAskLinkConnection>;
|
|
99060
|
+
name: Scalars['String']['output'];
|
|
99061
|
+
owner?: Maybe<User>;
|
|
99062
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
99063
|
+
priority: SpfAskPriority;
|
|
99064
|
+
receivingTeam?: Maybe<TeamV2>;
|
|
99065
|
+
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
99066
|
+
status: SpfAskStatus;
|
|
99067
|
+
submitter?: Maybe<User>;
|
|
99068
|
+
submitterId: Scalars['String']['output'];
|
|
99069
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
99070
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
99071
|
+
targetDate?: Maybe<SpfAskTargetDate>;
|
|
99072
|
+
transitions?: Maybe<Array<Maybe<SpfAskTransition>>>;
|
|
99073
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99074
|
+
updatedBy?: Maybe<User>;
|
|
99075
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
99076
|
+
};
|
|
99077
|
+
export declare type SpfAskCommentsArgs = {
|
|
99078
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99079
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99080
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
99081
|
+
};
|
|
99082
|
+
export declare type SpfAskLinksArgs = {
|
|
99083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99085
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
99086
|
+
};
|
|
99087
|
+
export declare type SpfAskComment = {
|
|
99088
|
+
__typename?: 'SpfAskComment';
|
|
99089
|
+
askId: Scalars['String']['output'];
|
|
99090
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99091
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
99092
|
+
data: Scalars['String']['output'];
|
|
99093
|
+
id: Scalars['ID']['output'];
|
|
99094
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
99095
|
+
};
|
|
99096
|
+
export declare type SpfAskCommentConnection = {
|
|
99097
|
+
__typename?: 'SpfAskCommentConnection';
|
|
99098
|
+
edges?: Maybe<Array<Maybe<SpfAskCommentEdge>>>;
|
|
99099
|
+
pageInfo: PageInfo;
|
|
99100
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
99101
|
+
};
|
|
99102
|
+
export declare type SpfAskCommentEdge = {
|
|
99103
|
+
__typename?: 'SpfAskCommentEdge';
|
|
99104
|
+
cursor: Scalars['String']['output'];
|
|
99105
|
+
node?: Maybe<SpfAskCommentResult>;
|
|
99106
|
+
};
|
|
99107
|
+
export declare type SpfAskCommentResult = QueryError | SpfAskComment;
|
|
99108
|
+
export declare type SpfAskConnection = {
|
|
99109
|
+
__typename?: 'SpfAskConnection';
|
|
99110
|
+
edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
|
|
99111
|
+
pageInfo: PageInfo;
|
|
99112
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
99113
|
+
};
|
|
99114
|
+
export declare type SpfAskEdge = {
|
|
99115
|
+
__typename?: 'SpfAskEdge';
|
|
99116
|
+
cursor: Scalars['String']['output'];
|
|
99117
|
+
node?: Maybe<SpfAskResult>;
|
|
99118
|
+
};
|
|
99119
|
+
export declare type SpfAskLink = {
|
|
99120
|
+
__typename?: 'SpfAskLink';
|
|
99121
|
+
askId: Scalars['String']['output'];
|
|
99122
|
+
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
99123
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
99124
|
+
id: Scalars['ID']['output'];
|
|
99125
|
+
url: Scalars['URL']['output'];
|
|
99126
|
+
};
|
|
99127
|
+
export declare type SpfAskLinkConnection = {
|
|
99128
|
+
__typename?: 'SpfAskLinkConnection';
|
|
99129
|
+
edges?: Maybe<Array<Maybe<SpfAskLinkEdge>>>;
|
|
99130
|
+
pageInfo: PageInfo;
|
|
99131
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
99132
|
+
};
|
|
99133
|
+
export declare type SpfAskLinkEdge = {
|
|
99134
|
+
__typename?: 'SpfAskLinkEdge';
|
|
99135
|
+
cursor: Scalars['String']['output'];
|
|
99136
|
+
node?: Maybe<SpfAskLinkResult>;
|
|
99137
|
+
};
|
|
99138
|
+
export declare type SpfAskLinkResult = QueryError | SpfAskLink;
|
|
99139
|
+
export declare enum SpfAskPriority {
|
|
99140
|
+
Critical = "CRITICAL",
|
|
99141
|
+
High = "HIGH",
|
|
99142
|
+
Highest = "HIGHEST",
|
|
99143
|
+
Low = "LOW",
|
|
99144
|
+
Medium = "MEDIUM"
|
|
99145
|
+
}
|
|
99146
|
+
export declare type SpfAskResult = QueryError | SpfAsk;
|
|
99147
|
+
export declare enum SpfAskStatus {
|
|
99148
|
+
Accepted = "ACCEPTED",
|
|
99149
|
+
Canceled = "CANCELED",
|
|
99150
|
+
Denied = "DENIED",
|
|
99151
|
+
Draft = "DRAFT",
|
|
99152
|
+
InReview = "IN_REVIEW",
|
|
99153
|
+
Revising = "REVISING",
|
|
99154
|
+
Submitted = "SUBMITTED"
|
|
99155
|
+
}
|
|
99156
|
+
export declare type SpfAskTargetDate = {
|
|
99157
|
+
__typename?: 'SpfAskTargetDate';
|
|
99158
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
99159
|
+
targetDateType?: Maybe<SpfAskTargetDateType>;
|
|
99160
|
+
};
|
|
99161
|
+
export declare type SpfAskTargetDateInput = {
|
|
99162
|
+
targetDate: Scalars['String']['input'];
|
|
99163
|
+
targetDateType: SpfAskTargetDateType;
|
|
99164
|
+
};
|
|
99165
|
+
export declare enum SpfAskTargetDateType {
|
|
99166
|
+
Day = "DAY",
|
|
99167
|
+
Month = "MONTH",
|
|
99168
|
+
Quarter = "QUARTER"
|
|
99169
|
+
}
|
|
99170
|
+
export declare type SpfAskTransition = {
|
|
99171
|
+
__typename?: 'SpfAskTransition';
|
|
99172
|
+
askId: Scalars['String']['output'];
|
|
99173
|
+
status?: Maybe<SpfAskStatus>;
|
|
99174
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99175
|
+
};
|
|
99176
|
+
export declare type SpfAttachAskLinkInput = {
|
|
99177
|
+
askId: Scalars['ID']['input'];
|
|
99178
|
+
url: Scalars['URL']['input'];
|
|
99179
|
+
};
|
|
99180
|
+
export declare type SpfAttachAskLinkPayload = Payload & {
|
|
99181
|
+
__typename?: 'SpfAttachAskLinkPayload';
|
|
99182
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99183
|
+
link?: Maybe<SpfAskLink>;
|
|
99184
|
+
success: Scalars['Boolean']['output'];
|
|
99185
|
+
};
|
|
97707
99186
|
export declare type SpfAttachRelatedContentInput = {
|
|
97708
99187
|
dependencyId: Scalars['ID']['input'];
|
|
97709
99188
|
url: Scalars['URL']['input'];
|
|
@@ -97735,6 +99214,36 @@ export declare type SpfCommentEdge = {
|
|
|
97735
99214
|
node?: Maybe<SpfCommentResult>;
|
|
97736
99215
|
};
|
|
97737
99216
|
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
99217
|
+
export declare type SpfCreateAskCommentInput = {
|
|
99218
|
+
askId: Scalars['ID']['input'];
|
|
99219
|
+
data: Scalars['String']['input'];
|
|
99220
|
+
};
|
|
99221
|
+
export declare type SpfCreateAskCommentPayload = Payload & {
|
|
99222
|
+
__typename?: 'SpfCreateAskCommentPayload';
|
|
99223
|
+
comment?: Maybe<SpfAskComment>;
|
|
99224
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99225
|
+
success: Scalars['Boolean']['output'];
|
|
99226
|
+
};
|
|
99227
|
+
export declare type SpfCreateAskInput = {
|
|
99228
|
+
cloudId: Scalars['ID']['input'];
|
|
99229
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
99230
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
99231
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
99232
|
+
name: Scalars['String']['input'];
|
|
99233
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
99234
|
+
priority: SpfAskPriority;
|
|
99235
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99236
|
+
status: SpfAskStatus;
|
|
99237
|
+
submitterId: Scalars['String']['input'];
|
|
99238
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99239
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
99240
|
+
};
|
|
99241
|
+
export declare type SpfCreateAskPayload = Payload & {
|
|
99242
|
+
__typename?: 'SpfCreateAskPayload';
|
|
99243
|
+
ask?: Maybe<SpfAsk>;
|
|
99244
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99245
|
+
success: Scalars['Boolean']['output'];
|
|
99246
|
+
};
|
|
97738
99247
|
export declare type SpfCreateCommentInput = {
|
|
97739
99248
|
data: Scalars['String']['input'];
|
|
97740
99249
|
dependencyId: Scalars['ID']['input'];
|
|
@@ -97765,6 +99274,24 @@ export declare type SpfCreateDependencyPayload = Payload & {
|
|
|
97765
99274
|
errors?: Maybe<Array<MutationError>>;
|
|
97766
99275
|
success: Scalars['Boolean']['output'];
|
|
97767
99276
|
};
|
|
99277
|
+
export declare type SpfDeleteAskInput = {
|
|
99278
|
+
id: Scalars['ID']['input'];
|
|
99279
|
+
};
|
|
99280
|
+
export declare type SpfDeleteAskLinkInput = {
|
|
99281
|
+
id: Scalars['ID']['input'];
|
|
99282
|
+
};
|
|
99283
|
+
export declare type SpfDeleteAskLinkPayload = Payload & {
|
|
99284
|
+
__typename?: 'SpfDeleteAskLinkPayload';
|
|
99285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99286
|
+
id: Scalars['ID']['output'];
|
|
99287
|
+
success: Scalars['Boolean']['output'];
|
|
99288
|
+
};
|
|
99289
|
+
export declare type SpfDeleteAskPayload = Payload & {
|
|
99290
|
+
__typename?: 'SpfDeleteAskPayload';
|
|
99291
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99292
|
+
id: Scalars['ID']['output'];
|
|
99293
|
+
success: Scalars['Boolean']['output'];
|
|
99294
|
+
};
|
|
97768
99295
|
export declare type SpfDeleteDependencyInput = {
|
|
97769
99296
|
id: Scalars['ID']['input'];
|
|
97770
99297
|
};
|
|
@@ -97874,6 +99401,58 @@ export declare enum SpfTargetDateType {
|
|
|
97874
99401
|
Month = "MONTH",
|
|
97875
99402
|
Quarter = "QUARTER"
|
|
97876
99403
|
}
|
|
99404
|
+
export declare type SpfUpdateAskCommentDataInput = {
|
|
99405
|
+
data: Scalars['String']['input'];
|
|
99406
|
+
id: Scalars['ID']['input'];
|
|
99407
|
+
};
|
|
99408
|
+
export declare type SpfUpdateAskCommentPayload = Payload & {
|
|
99409
|
+
__typename?: 'SpfUpdateAskCommentPayload';
|
|
99410
|
+
comment?: Maybe<SpfAskComment>;
|
|
99411
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99412
|
+
success: Scalars['Boolean']['output'];
|
|
99413
|
+
};
|
|
99414
|
+
export declare type SpfUpdateAskDescriptionInput = {
|
|
99415
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
99416
|
+
id: Scalars['ID']['input'];
|
|
99417
|
+
};
|
|
99418
|
+
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
99419
|
+
id: Scalars['ID']['input'];
|
|
99420
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
99421
|
+
};
|
|
99422
|
+
export declare type SpfUpdateAskJustificationInput = {
|
|
99423
|
+
id: Scalars['ID']['input'];
|
|
99424
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
99425
|
+
};
|
|
99426
|
+
export declare type SpfUpdateAskNameInput = {
|
|
99427
|
+
id: Scalars['ID']['input'];
|
|
99428
|
+
name: Scalars['String']['input'];
|
|
99429
|
+
};
|
|
99430
|
+
export declare type SpfUpdateAskOwnerInput = {
|
|
99431
|
+
id: Scalars['ID']['input'];
|
|
99432
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
99433
|
+
};
|
|
99434
|
+
export declare type SpfUpdateAskPayload = Payload & {
|
|
99435
|
+
__typename?: 'SpfUpdateAskPayload';
|
|
99436
|
+
ask?: Maybe<SpfAsk>;
|
|
99437
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99438
|
+
success: Scalars['Boolean']['output'];
|
|
99439
|
+
};
|
|
99440
|
+
export declare type SpfUpdateAskPriorityInput = {
|
|
99441
|
+
id: Scalars['ID']['input'];
|
|
99442
|
+
priority: SpfAskPriority;
|
|
99443
|
+
};
|
|
99444
|
+
export declare type SpfUpdateAskReceivingTeamInput = {
|
|
99445
|
+
id: Scalars['ID']['input'];
|
|
99446
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99447
|
+
};
|
|
99448
|
+
export declare type SpfUpdateAskSubmitterInput = {
|
|
99449
|
+
id: Scalars['ID']['input'];
|
|
99450
|
+
submitterId: Scalars['String']['input'];
|
|
99451
|
+
};
|
|
99452
|
+
export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
99453
|
+
id: Scalars['ID']['input'];
|
|
99454
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
99455
|
+
};
|
|
97877
99456
|
export declare type SpfUpdateCommentDataInput = {
|
|
97878
99457
|
data: Scalars['String']['input'];
|
|
97879
99458
|
id: Scalars['ID']['input'];
|
|
@@ -99201,6 +100780,7 @@ export declare type TenantContext = {
|
|
|
99201
100780
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
99202
100781
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
99203
100782
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100783
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
99204
100784
|
};
|
|
99205
100785
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
99206
100786
|
product: Scalars['String']['input'];
|
|
@@ -101385,6 +102965,10 @@ export declare type TrelloCardActionConnection = {
|
|
|
101385
102965
|
nodes?: Maybe<Array<TrelloCardActions>>;
|
|
101386
102966
|
pageInfo: PageInfo;
|
|
101387
102967
|
};
|
|
102968
|
+
export declare type TrelloCardActionConnectionUpdated = {
|
|
102969
|
+
__typename?: 'TrelloCardActionConnectionUpdated';
|
|
102970
|
+
edges?: Maybe<Array<TrelloCardActionEdgeUpdated>>;
|
|
102971
|
+
};
|
|
101388
102972
|
export declare type TrelloCardActionData = {
|
|
101389
102973
|
board?: Maybe<TrelloBoard>;
|
|
101390
102974
|
card?: Maybe<TrelloCard>;
|
|
@@ -101394,6 +102978,10 @@ export declare type TrelloCardActionEdge = {
|
|
|
101394
102978
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
101395
102979
|
node?: Maybe<TrelloCardActions>;
|
|
101396
102980
|
};
|
|
102981
|
+
export declare type TrelloCardActionEdgeUpdated = {
|
|
102982
|
+
__typename?: 'TrelloCardActionEdgeUpdated';
|
|
102983
|
+
node: TrelloCardActions;
|
|
102984
|
+
};
|
|
101397
102985
|
export declare enum TrelloCardActionType {
|
|
101398
102986
|
AddAttachment = "ADD_ATTACHMENT",
|
|
101399
102987
|
AddChecklist = "ADD_CHECKLIST",
|
|
@@ -101453,10 +103041,10 @@ export declare type TrelloCardBadges = {
|
|
|
101453
103041
|
};
|
|
101454
103042
|
export declare type TrelloCardBatch = {
|
|
101455
103043
|
__typename?: 'TrelloCardBatch';
|
|
103044
|
+
expected?: Maybe<Array<Scalars['ID']['output']>>;
|
|
101456
103045
|
objectId: Scalars['ID']['output'];
|
|
101457
|
-
processed?: Maybe<Scalars['
|
|
103046
|
+
processed?: Maybe<Array<Scalars['ID']['output']>>;
|
|
101458
103047
|
status?: Maybe<TrelloCardBatchStatus>;
|
|
101459
|
-
total?: Maybe<Scalars['Int']['output']>;
|
|
101460
103048
|
};
|
|
101461
103049
|
export declare type TrelloCardBatchJobPayload = Payload & {
|
|
101462
103050
|
__typename?: 'TrelloCardBatchJobPayload';
|
|
@@ -101484,6 +103072,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
101484
103072
|
export declare type TrelloCardClause = {
|
|
101485
103073
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
101486
103074
|
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
103075
|
+
ids?: InputMaybe<TrelloCardIdsClause>;
|
|
101487
103076
|
list?: InputMaybe<TrelloCardListClause>;
|
|
101488
103077
|
};
|
|
101489
103078
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -101592,6 +103181,9 @@ export declare enum TrelloCardExternalSource {
|
|
|
101592
103181
|
Siri = "SIRI",
|
|
101593
103182
|
Slack = "SLACK"
|
|
101594
103183
|
}
|
|
103184
|
+
export declare type TrelloCardIdsClause = {
|
|
103185
|
+
cards?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103186
|
+
};
|
|
101595
103187
|
export declare type TrelloCardLabelEdgeUpdated = {
|
|
101596
103188
|
__typename?: 'TrelloCardLabelEdgeUpdated';
|
|
101597
103189
|
node: TrelloLabelId;
|
|
@@ -101628,6 +103220,7 @@ export declare enum TrelloCardRole {
|
|
|
101628
103220
|
}
|
|
101629
103221
|
export declare type TrelloCardUpdated = {
|
|
101630
103222
|
__typename?: 'TrelloCardUpdated';
|
|
103223
|
+
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
101631
103224
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
101632
103225
|
badges?: Maybe<TrelloCardBadges>;
|
|
101633
103226
|
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
@@ -101676,6 +103269,7 @@ export declare type TrelloCardViewer = {
|
|
|
101676
103269
|
export declare type TrelloCheckItem = {
|
|
101677
103270
|
__typename?: 'TrelloCheckItem';
|
|
101678
103271
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
103272
|
+
id: Scalars['ID']['output'];
|
|
101679
103273
|
member?: Maybe<TrelloMember>;
|
|
101680
103274
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
101681
103275
|
objectId: Scalars['ID']['output'];
|
|
@@ -101736,6 +103330,7 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
101736
103330
|
};
|
|
101737
103331
|
export declare type TrelloChecklistDeleted = {
|
|
101738
103332
|
__typename?: 'TrelloChecklistDeleted';
|
|
103333
|
+
id: Scalars['ID']['output'];
|
|
101739
103334
|
objectId: Scalars['ID']['output'];
|
|
101740
103335
|
};
|
|
101741
103336
|
export declare type TrelloChecklistEdge = {
|
|
@@ -102493,6 +104088,7 @@ export declare type TrelloMutationApi = {
|
|
|
102493
104088
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
102494
104089
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
102495
104090
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
104091
|
+
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
102496
104092
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
102497
104093
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
102498
104094
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -102540,6 +104136,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
102540
104136
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
102541
104137
|
input: TrelloPinCardInput;
|
|
102542
104138
|
};
|
|
104139
|
+
export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
104140
|
+
input: TrelloRemoveBoardStarInput;
|
|
104141
|
+
};
|
|
102543
104142
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
102544
104143
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
102545
104144
|
};
|
|
@@ -103172,6 +104771,15 @@ export declare type TrelloReactionLimits = {
|
|
|
103172
104771
|
perAction?: Maybe<TrelloLimitProps>;
|
|
103173
104772
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
103174
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
|
+
};
|
|
103175
104783
|
export declare type TrelloRemoveCardFromPlannerCalendarEventInput = {
|
|
103176
104784
|
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
103177
104785
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -104699,6 +106307,7 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
104699
106307
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
104700
106308
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104701
106309
|
id: Scalars['ID']['input'];
|
|
106310
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
104702
106311
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104703
106312
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
104704
106313
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104707,6 +106316,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
104707
106316
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104708
106317
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
104709
106318
|
id: Scalars['ID']['input'];
|
|
106319
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
104710
106320
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104711
106321
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
104712
106322
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104715,6 +106325,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
104715
106325
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104716
106326
|
id: Scalars['ID']['input'];
|
|
104717
106327
|
linkType?: InputMaybe<CompassLinkType>;
|
|
106328
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
104718
106329
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104719
106330
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
104720
106331
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
@@ -104728,6 +106339,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
104728
106339
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104729
106340
|
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
104730
106341
|
id: Scalars['ID']['input'];
|
|
106342
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
104731
106343
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
104732
106344
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104733
106345
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -104736,6 +106348,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
104736
106348
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
104737
106349
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
104738
106350
|
id: Scalars['ID']['input'];
|
|
106351
|
+
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
104739
106352
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104740
106353
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
104741
106354
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -105007,6 +106620,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
105007
106620
|
export declare type UpdateJiraPlaybookInput = {
|
|
105008
106621
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
105009
106622
|
id: Scalars['ID']['input'];
|
|
106623
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
105010
106624
|
name: Scalars['String']['input'];
|
|
105011
106625
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
105012
106626
|
scopeType: JiraPlaybookScopeType;
|