@forge/cli-shared 8.7.0-next.3 → 8.7.0-next.3-experimental-3ed5db1
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 +17 -0
- package/out/graphql/graphql-types.d.ts +908 -62
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -16
- package/package.json +2 -2
|
@@ -398,6 +398,22 @@ export declare type AvpCreateChartPayload = Payload & {
|
|
|
398
398
|
errors?: Maybe<Array<MutationError>>;
|
|
399
399
|
success: Scalars['Boolean']['output'];
|
|
400
400
|
};
|
|
401
|
+
export declare type AvpCreateDashboardFilterInput = {
|
|
402
|
+
dashboardAri: Scalars['ID']['input'];
|
|
403
|
+
filter: AvpDashboardFilter;
|
|
404
|
+
};
|
|
405
|
+
export declare type AvpCreateDashboardFilterPayload = Payload & {
|
|
406
|
+
__typename?: 'AVPCreateDashboardFilterPayload';
|
|
407
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
408
|
+
errors?: Maybe<Array<MutationError>>;
|
|
409
|
+
filter?: Maybe<AvpCreateDashboardFilterResponse>;
|
|
410
|
+
success: Scalars['Boolean']['output'];
|
|
411
|
+
};
|
|
412
|
+
export declare type AvpCreateDashboardFilterResponse = {
|
|
413
|
+
__typename?: 'AVPCreateDashboardFilterResponse';
|
|
414
|
+
chart?: Maybe<AvpChart>;
|
|
415
|
+
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
416
|
+
};
|
|
401
417
|
export declare type AvpCreateDashboardInput = {
|
|
402
418
|
cloudId: Scalars['ID']['input'];
|
|
403
419
|
dashboard: AvpDashboardInput;
|
|
@@ -451,6 +467,12 @@ export declare type AvpDashboardCanvasLayoutRow = {
|
|
|
451
467
|
height?: Maybe<AvpCanvasRowHeight>;
|
|
452
468
|
id?: Maybe<Scalars['ID']['output']>;
|
|
453
469
|
};
|
|
470
|
+
export declare type AvpDashboardFilter = {
|
|
471
|
+
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
472
|
+
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
473
|
+
hotTierFilterConfig?: InputMaybe<AvpHotTierFilterConfigInput>;
|
|
474
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
475
|
+
};
|
|
454
476
|
export declare type AvpDashboardInput = {
|
|
455
477
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
456
478
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -518,6 +540,7 @@ export declare type AvpEnvVar = {
|
|
|
518
540
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
519
541
|
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
520
542
|
id?: Maybe<Scalars['ID']['output']>;
|
|
543
|
+
metadata?: Maybe<AvpEnvVarMetadata>;
|
|
521
544
|
name?: Maybe<Scalars['String']['output']>;
|
|
522
545
|
operator?: Maybe<Scalars['String']['output']>;
|
|
523
546
|
};
|
|
@@ -530,6 +553,21 @@ export declare enum AvpEnvVarDataType {
|
|
|
530
553
|
NumberRange = "NUMBER_RANGE",
|
|
531
554
|
Text = "TEXT"
|
|
532
555
|
}
|
|
556
|
+
export declare type AvpEnvVarMetadata = {
|
|
557
|
+
__typename?: 'AVPEnvVarMetadata';
|
|
558
|
+
jsonValue?: Maybe<Scalars['String']['output']>;
|
|
559
|
+
};
|
|
560
|
+
export declare type AvpEnvVarWithChart = {
|
|
561
|
+
__typename?: 'AVPEnvVarWithChart';
|
|
562
|
+
chart?: Maybe<AvpChart>;
|
|
563
|
+
dataType?: Maybe<AvpEnvVarDataType>;
|
|
564
|
+
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
565
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
566
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
567
|
+
metadata?: Maybe<AvpEnvVarMetadata>;
|
|
568
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
569
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
570
|
+
};
|
|
533
571
|
export declare type AvpHotTierFilterConfig = {
|
|
534
572
|
__typename?: 'AVPHotTierFilterConfig';
|
|
535
573
|
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
@@ -537,6 +575,12 @@ export declare type AvpHotTierFilterConfig = {
|
|
|
537
575
|
product?: Maybe<Scalars['String']['output']>;
|
|
538
576
|
semanticModel?: Maybe<Scalars['String']['output']>;
|
|
539
577
|
};
|
|
578
|
+
export declare type AvpHotTierFilterConfigInput = {
|
|
579
|
+
datasourceLocator?: InputMaybe<AvpDatasourceLocatorInput>;
|
|
580
|
+
dimension?: InputMaybe<Scalars['String']['input']>;
|
|
581
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
582
|
+
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
583
|
+
};
|
|
540
584
|
export declare type AvpMetricsConfiguration = {
|
|
541
585
|
__typename?: 'AVPMetricsConfiguration';
|
|
542
586
|
dimensions?: Maybe<Array<AvpMetricsDimension>>;
|
|
@@ -1881,15 +1925,16 @@ export declare type AdminSearchGroupInput = {
|
|
|
1881
1925
|
export declare type AdminSearchUserInput = {
|
|
1882
1926
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1883
1927
|
accountStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1884
|
-
claimStatus?: InputMaybe<
|
|
1928
|
+
claimStatus?: InputMaybe<Scalars['String']['input']>;
|
|
1885
1929
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1930
|
+
emailDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1886
1931
|
groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1887
1932
|
membershipStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1888
|
-
orgId: Scalars['String']['input'];
|
|
1889
1933
|
resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1890
1934
|
roleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1891
1935
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
1892
1936
|
sortBy?: InputMaybe<Array<AdminSortBy>>;
|
|
1937
|
+
status?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1893
1938
|
};
|
|
1894
1939
|
export declare type AdminSearchWorkspacesInput = {
|
|
1895
1940
|
attributes?: InputMaybe<AdminSearchWorkspacesInputAttributes>;
|
|
@@ -2032,6 +2077,7 @@ export declare type AdminUsageInfo = {
|
|
|
2032
2077
|
};
|
|
2033
2078
|
export declare type AdminUser = {
|
|
2034
2079
|
__typename?: 'AdminUser';
|
|
2080
|
+
accountStatus: Scalars['String']['output'];
|
|
2035
2081
|
addedAt?: Maybe<Scalars['String']['output']>;
|
|
2036
2082
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
2037
2083
|
claimStatus: Scalars['String']['output'];
|
|
@@ -2043,7 +2089,9 @@ export declare type AdminUser = {
|
|
|
2043
2089
|
location?: Maybe<Scalars['String']['output']>;
|
|
2044
2090
|
membershipStatus?: Maybe<Scalars['String']['output']>;
|
|
2045
2091
|
name: Scalars['String']['output'];
|
|
2092
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
2046
2093
|
resourceCounts?: Maybe<AdminResourceCounts>;
|
|
2094
|
+
roles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2047
2095
|
status: Scalars['String']['output'];
|
|
2048
2096
|
title?: Maybe<Scalars['String']['output']>;
|
|
2049
2097
|
verified: Scalars['Boolean']['output'];
|
|
@@ -2335,7 +2383,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2335
2383
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2336
2384
|
};
|
|
2337
2385
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
2338
|
-
|
|
2386
|
+
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
2339
2387
|
};
|
|
2340
2388
|
export declare type AgentStudioChannel = {
|
|
2341
2389
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2792,6 +2840,14 @@ export declare type AgentStudioWidget = {
|
|
|
2792
2840
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2793
2841
|
};
|
|
2794
2842
|
export declare type AgentStudioWidgetByContainerAriResult = AgentStudioWidget | QueryError;
|
|
2843
|
+
export declare type AgentStudioWidgetContainer = JiraProject;
|
|
2844
|
+
export declare type AgentStudioWidgetContainers = {
|
|
2845
|
+
__typename?: 'AgentStudioWidgetContainers';
|
|
2846
|
+
containerAris: Array<Scalars['ID']['output']>;
|
|
2847
|
+
containers?: Maybe<Array<Maybe<AgentStudioWidgetContainer>>>;
|
|
2848
|
+
totalCount: Scalars['Int']['output'];
|
|
2849
|
+
};
|
|
2850
|
+
export declare type AgentStudioWidgetContainersByAgentIdResult = AgentStudioWidgetContainers | QueryError;
|
|
2795
2851
|
export declare enum AiCoreApiQuestionType {
|
|
2796
2852
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
2797
2853
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -3160,6 +3216,28 @@ export declare enum AppContributorRole {
|
|
|
3160
3216
|
Viewer = "VIEWER",
|
|
3161
3217
|
ViewerAdvanced = "VIEWER_ADVANCED"
|
|
3162
3218
|
}
|
|
3219
|
+
export declare type AppCustomScope = {
|
|
3220
|
+
__typename?: 'AppCustomScope';
|
|
3221
|
+
description: Scalars['String']['output'];
|
|
3222
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
3223
|
+
name: Scalars['String']['output'];
|
|
3224
|
+
};
|
|
3225
|
+
export declare type AppCustomScopeConnection = {
|
|
3226
|
+
__typename?: 'AppCustomScopeConnection';
|
|
3227
|
+
edges?: Maybe<Array<AppCustomScopeEdge>>;
|
|
3228
|
+
nodes?: Maybe<Array<AppCustomScope>>;
|
|
3229
|
+
pageInfo: PageInfo;
|
|
3230
|
+
};
|
|
3231
|
+
export declare type AppCustomScopeEdge = {
|
|
3232
|
+
__typename?: 'AppCustomScopeEdge';
|
|
3233
|
+
cursor: Scalars['String']['output'];
|
|
3234
|
+
node: AppCustomScope;
|
|
3235
|
+
};
|
|
3236
|
+
export declare type AppCustomScopeSpec = {
|
|
3237
|
+
description: Scalars['String']['input'];
|
|
3238
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
3239
|
+
name: Scalars['String']['input'];
|
|
3240
|
+
};
|
|
3163
3241
|
export declare type AppDeployment = {
|
|
3164
3242
|
__typename?: 'AppDeployment';
|
|
3165
3243
|
appId: Scalars['ID']['output'];
|
|
@@ -4498,6 +4576,73 @@ export declare type AssetsDmDataSource = {
|
|
|
4498
4576
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
4499
4577
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
4500
4578
|
};
|
|
4579
|
+
export declare type AssetsDmDataSourceCleansingCleansingExecutive = {
|
|
4580
|
+
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutive';
|
|
4581
|
+
cleansingExecutiveId: Scalars['ID']['output'];
|
|
4582
|
+
data: Array<AssetsDmDataSourceCleansingCleansingExecutiveData>;
|
|
4583
|
+
dataSourceId: Scalars['ID']['output'];
|
|
4584
|
+
endTime: Scalars['String']['output'];
|
|
4585
|
+
excluded: Scalars['Int']['output'];
|
|
4586
|
+
filtered: Scalars['Int']['output'];
|
|
4587
|
+
hasError: Scalars['Boolean']['output'];
|
|
4588
|
+
importable: Scalars['Int']['output'];
|
|
4589
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
4590
|
+
message: Scalars['String']['output'];
|
|
4591
|
+
objectId: Scalars['ID']['output'];
|
|
4592
|
+
startTime: Scalars['String']['output'];
|
|
4593
|
+
step: Scalars['Int']['output'];
|
|
4594
|
+
tenantId: Scalars['ID']['output'];
|
|
4595
|
+
totalRecords: Scalars['Int']['output'];
|
|
4596
|
+
};
|
|
4597
|
+
export declare type AssetsDmDataSourceCleansingCleansingExecutiveData = {
|
|
4598
|
+
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutiveData';
|
|
4599
|
+
affectedRecordCount?: Maybe<Scalars['Int']['output']>;
|
|
4600
|
+
cleansingExecutiveId: Scalars['ID']['output'];
|
|
4601
|
+
dataSourceId: Scalars['ID']['output'];
|
|
4602
|
+
endTime?: Maybe<Scalars['String']['output']>;
|
|
4603
|
+
excluded: Scalars['Int']['output'];
|
|
4604
|
+
filtered: Scalars['Int']['output'];
|
|
4605
|
+
hasError: Scalars['Boolean']['output'];
|
|
4606
|
+
importable: Scalars['Int']['output'];
|
|
4607
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
4608
|
+
message: Scalars['String']['output'];
|
|
4609
|
+
objectId: Scalars['ID']['output'];
|
|
4610
|
+
preRecordCount?: Maybe<Scalars['Int']['output']>;
|
|
4611
|
+
processedFunctionId?: Maybe<Scalars['ID']['output']>;
|
|
4612
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
4613
|
+
step: Scalars['Int']['output'];
|
|
4614
|
+
stepDuration: Scalars['String']['output'];
|
|
4615
|
+
tenantId: Scalars['ID']['output'];
|
|
4616
|
+
totalRecords: Scalars['Int']['output'];
|
|
4617
|
+
};
|
|
4618
|
+
export declare type AssetsDmDataSourceCleansingDataSourceTypeInfo = {
|
|
4619
|
+
__typename?: 'AssetsDMDataSourceCleansingDataSourceTypeInfo';
|
|
4620
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
4621
|
+
defaultGap: Scalars['Int']['output'];
|
|
4622
|
+
name: Scalars['String']['output'];
|
|
4623
|
+
tenantId: Scalars['ID']['output'];
|
|
4624
|
+
};
|
|
4625
|
+
export declare type AssetsDmDataSourceCleansingObjectAttributeMappingFunction = {
|
|
4626
|
+
__typename?: 'AssetsDMDataSourceCleansingObjectAttributeMappingFunction';
|
|
4627
|
+
dataSourceId: Scalars['ID']['output'];
|
|
4628
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunction;
|
|
4629
|
+
defFunctionId: Scalars['ID']['output'];
|
|
4630
|
+
enabled: Scalars['Boolean']['output'];
|
|
4631
|
+
functionId: Scalars['ID']['output'];
|
|
4632
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameter>;
|
|
4633
|
+
priority: Scalars['Int']['output'];
|
|
4634
|
+
reason?: Maybe<AssetsDmDataSourceCleansingReason>;
|
|
4635
|
+
reasonId: Scalars['ID']['output'];
|
|
4636
|
+
};
|
|
4637
|
+
export declare type AssetsDmDataSourceCleansingObjectInfo = {
|
|
4638
|
+
__typename?: 'AssetsDMDataSourceCleansingObjectInfo';
|
|
4639
|
+
allowDuplicates: Scalars['Boolean']['output'];
|
|
4640
|
+
computedIssuesCount: Scalars['Int']['output'];
|
|
4641
|
+
name: Scalars['String']['output'];
|
|
4642
|
+
objectId: Scalars['ID']['output'];
|
|
4643
|
+
tenantId: Scalars['ID']['output'];
|
|
4644
|
+
uniqueRecordsCount: Scalars['Int']['output'];
|
|
4645
|
+
};
|
|
4501
4646
|
export declare type AssetsDmDataSourceCleansingReason = {
|
|
4502
4647
|
__typename?: 'AssetsDMDataSourceCleansingReason';
|
|
4503
4648
|
reason: Scalars['String']['output'];
|
|
@@ -4603,6 +4748,11 @@ export declare type AssetsDmDataSourceCleansingRulesResponse = {
|
|
|
4603
4748
|
defaultCleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRuleDefFunction>>;
|
|
4604
4749
|
reasons?: Maybe<Array<AssetsDmDataSourceCleansingReason>>;
|
|
4605
4750
|
};
|
|
4751
|
+
export declare type AssetsDmDataSourceCleansingRulesRunCleanseResponse = {
|
|
4752
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesRunCleanseResponse';
|
|
4753
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4754
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4755
|
+
};
|
|
4606
4756
|
export declare type AssetsDmDataSourceConfig = {
|
|
4607
4757
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
4608
4758
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
@@ -4851,6 +5001,32 @@ export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
|
4851
5001
|
success: Scalars['Boolean']['output'];
|
|
4852
5002
|
token?: Maybe<Scalars['String']['output']>;
|
|
4853
5003
|
};
|
|
5004
|
+
export declare type AssetsDmGetDataSourceForCleansingResponse = {
|
|
5005
|
+
__typename?: 'AssetsDMGetDataSourceForCleansingResponse';
|
|
5006
|
+
cleansingExecutives?: Maybe<Array<AssetsDmDataSourceCleansingCleansingExecutive>>;
|
|
5007
|
+
dataSourceId: Scalars['ID']['output'];
|
|
5008
|
+
dataSourceType: AssetsDmDataSourceCleansingDataSourceTypeInfo;
|
|
5009
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
5010
|
+
enabled: Scalars['Boolean']['output'];
|
|
5011
|
+
functions: Array<AssetsDmDataSourceCleansingObjectAttributeMappingFunction>;
|
|
5012
|
+
lastCleansedDate: Scalars['String']['output'];
|
|
5013
|
+
lastFunctionsChangedDate: Scalars['String']['output'];
|
|
5014
|
+
lastImportedDated: Scalars['String']['output'];
|
|
5015
|
+
lastMappingsChangedDate: Scalars['String']['output'];
|
|
5016
|
+
lastSuccessfulCleansedDate: Scalars['String']['output'];
|
|
5017
|
+
lastSuccessfulImportedDate: Scalars['String']['output'];
|
|
5018
|
+
name: Scalars['String']['output'];
|
|
5019
|
+
object: AssetsDmDataSourceCleansingObjectInfo;
|
|
5020
|
+
objectId: Scalars['ID']['output'];
|
|
5021
|
+
postCleansingCount: Scalars['Int']['output'];
|
|
5022
|
+
preCleansingCount: Scalars['Int']['output'];
|
|
5023
|
+
priority: Scalars['Int']['output'];
|
|
5024
|
+
refreshGap: Scalars['Int']['output'];
|
|
5025
|
+
status: Scalars['Int']['output'];
|
|
5026
|
+
tableId: Scalars['ID']['output'];
|
|
5027
|
+
tableName: Scalars['String']['output'];
|
|
5028
|
+
tenantId: Scalars['ID']['output'];
|
|
5029
|
+
};
|
|
4854
5030
|
export declare type AssetsDmMappedColumn = {
|
|
4855
5031
|
__typename?: 'AssetsDMMappedColumn';
|
|
4856
5032
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -4900,6 +5076,15 @@ export declare type AssetsDmObjectTag = {
|
|
|
4900
5076
|
tagCode: Scalars['Int']['output'];
|
|
4901
5077
|
tagId: Scalars['ID']['output'];
|
|
4902
5078
|
};
|
|
5079
|
+
export declare type AssetsDmObjectTagAssociateInput = {
|
|
5080
|
+
objectItemId: Scalars['ID']['input'];
|
|
5081
|
+
tagId: Scalars['ID']['input'];
|
|
5082
|
+
};
|
|
5083
|
+
export declare type AssetsDmObjectTagAssociateResponse = {
|
|
5084
|
+
__typename?: 'AssetsDMObjectTagAssociateResponse';
|
|
5085
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5086
|
+
message: Scalars['String']['output'];
|
|
5087
|
+
};
|
|
4903
5088
|
export declare type AssetsDmObjectTagCreateInput = {
|
|
4904
5089
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4905
5090
|
name: Scalars['String']['input'];
|
|
@@ -4915,6 +5100,15 @@ export declare type AssetsDmObjectTagDeleteResponse = {
|
|
|
4915
5100
|
isSuccessful: Scalars['Boolean']['output'];
|
|
4916
5101
|
message: Scalars['String']['output'];
|
|
4917
5102
|
};
|
|
5103
|
+
export declare type AssetsDmObjectTagDissociateInput = {
|
|
5104
|
+
primaryKeyValue: Scalars['String']['input'];
|
|
5105
|
+
tagId: Scalars['ID']['input'];
|
|
5106
|
+
};
|
|
5107
|
+
export declare type AssetsDmObjectTagDissociateResponse = {
|
|
5108
|
+
__typename?: 'AssetsDMObjectTagDissociateResponse';
|
|
5109
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5110
|
+
message: Scalars['String']['output'];
|
|
5111
|
+
};
|
|
4918
5112
|
export declare type AssetsDmObjectTagEditInput = {
|
|
4919
5113
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4920
5114
|
name: Scalars['String']['input'];
|
|
@@ -6879,6 +7073,7 @@ export declare type CcpLicenseError = {
|
|
|
6879
7073
|
message?: Maybe<Scalars['String']['output']>;
|
|
6880
7074
|
};
|
|
6881
7075
|
export declare enum CcpLicenseErrorCode {
|
|
7076
|
+
ActiveLicenseNotFound = "ACTIVE_LICENSE_NOT_FOUND",
|
|
6882
7077
|
InternalError = "INTERNAL_ERROR",
|
|
6883
7078
|
LicenseNotFound = "LICENSE_NOT_FOUND",
|
|
6884
7079
|
ServerIdMissing = "SERVER_ID_MISSING"
|
|
@@ -14549,6 +14744,12 @@ export declare type ConfluenceCalendarEventTypeReminder = {
|
|
|
14549
14744
|
isCustomEventType: Scalars['Boolean']['output'];
|
|
14550
14745
|
periodInMins: Scalars['Int']['output'];
|
|
14551
14746
|
};
|
|
14747
|
+
export declare type ConfluenceCalendarFieldMutationErrorExtension = MutationErrorExtension & {
|
|
14748
|
+
__typename?: 'ConfluenceCalendarFieldMutationErrorExtension';
|
|
14749
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
14750
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
14751
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14752
|
+
};
|
|
14552
14753
|
export declare type ConfluenceCalendarJiraDateField = {
|
|
14553
14754
|
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
14554
14755
|
isCustomField: Scalars['Boolean']['output'];
|
|
@@ -15043,6 +15244,21 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
15043
15244
|
errors?: Maybe<Array<MutationError>>;
|
|
15044
15245
|
success: Scalars['Boolean']['output'];
|
|
15045
15246
|
};
|
|
15247
|
+
export declare type ConfluenceCreateCalendarInput = {
|
|
15248
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
15249
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15250
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
15251
|
+
name: Scalars['String']['input'];
|
|
15252
|
+
spaceKey: Scalars['String']['input'];
|
|
15253
|
+
timeZoneId: Scalars['String']['input'];
|
|
15254
|
+
type: Scalars['String']['input'];
|
|
15255
|
+
};
|
|
15256
|
+
export declare type ConfluenceCreateCalendarPayload = Payload & {
|
|
15257
|
+
__typename?: 'ConfluenceCreateCalendarPayload';
|
|
15258
|
+
calendar?: Maybe<ConfluenceCalendar>;
|
|
15259
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15260
|
+
success: Scalars['Boolean']['output'];
|
|
15261
|
+
};
|
|
15046
15262
|
export declare type ConfluenceCreateCommentOnAnswerInput = {
|
|
15047
15263
|
answerId: Scalars['ID']['input'];
|
|
15048
15264
|
body: ConfluenceContentBodyInput;
|
|
@@ -15248,7 +15464,7 @@ export declare type ConfluenceCustomContentPermissionGroupPrincipal = Confluence
|
|
|
15248
15464
|
__typename?: 'ConfluenceCustomContentPermissionGroupPrincipal';
|
|
15249
15465
|
displayName: Scalars['String']['output'];
|
|
15250
15466
|
principalId: Scalars['ID']['output'];
|
|
15251
|
-
usageType
|
|
15467
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
15252
15468
|
};
|
|
15253
15469
|
export declare type ConfluenceCustomContentPermissionGuestPrincipal = ConfluenceCustomContentPermissionPrincipal & {
|
|
15254
15470
|
__typename?: 'ConfluenceCustomContentPermissionGuestPrincipal';
|
|
@@ -15793,6 +16009,7 @@ export declare type ConfluenceForgeExtensionDataSpace = {
|
|
|
15793
16009
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
15794
16010
|
};
|
|
15795
16011
|
export declare type ConfluenceForgePayloadContext = {
|
|
16012
|
+
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
15796
16013
|
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
15797
16014
|
environmentType?: InputMaybe<Scalars['String']['input']>;
|
|
15798
16015
|
extension: ConfluenceForgeExtensionData;
|
|
@@ -16165,6 +16382,21 @@ export declare type ConfluenceMacro = {
|
|
|
16165
16382
|
count?: Maybe<Scalars['Int']['output']>;
|
|
16166
16383
|
key?: Maybe<Scalars['String']['output']>;
|
|
16167
16384
|
};
|
|
16385
|
+
export declare type ConfluenceMacroDefinitionInput = {
|
|
16386
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
16387
|
+
defaultParameterValue?: InputMaybe<Scalars['String']['input']>;
|
|
16388
|
+
name: Scalars['String']['input'];
|
|
16389
|
+
params?: InputMaybe<Array<InputMaybe<ConfluenceMacroParameterInput>>>;
|
|
16390
|
+
schemaVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
16391
|
+
};
|
|
16392
|
+
export declare type ConfluenceMacroParameterInput = {
|
|
16393
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
16394
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
16395
|
+
};
|
|
16396
|
+
export declare type ConfluenceMacroPlaceholderAdf = {
|
|
16397
|
+
__typename?: 'ConfluenceMacroPlaceholderAdf';
|
|
16398
|
+
adf?: Maybe<Scalars['String']['output']>;
|
|
16399
|
+
};
|
|
16168
16400
|
export declare type ConfluenceMacroUsage = {
|
|
16169
16401
|
__typename?: 'ConfluenceMacroUsage';
|
|
16170
16402
|
unusedPluginMacros?: Maybe<Array<Maybe<ConfluenceUnusedPluginMacro>>>;
|
|
@@ -16790,6 +17022,23 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
16790
17022
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16791
17023
|
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
16792
17024
|
};
|
|
17025
|
+
export declare type ConfluencePatchCalendarInput = {
|
|
17026
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
17027
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
17028
|
+
id: Scalars['ID']['input'];
|
|
17029
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
17030
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
17031
|
+
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
17032
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
17033
|
+
timeZoneId?: InputMaybe<Scalars['String']['input']>;
|
|
17034
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
17035
|
+
};
|
|
17036
|
+
export declare type ConfluencePatchCalendarPayload = Payload & {
|
|
17037
|
+
__typename?: 'ConfluencePatchCalendarPayload';
|
|
17038
|
+
calendar?: Maybe<ConfluenceCalendar>;
|
|
17039
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17040
|
+
success: Scalars['Boolean']['output'];
|
|
17041
|
+
};
|
|
16793
17042
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
16794
17043
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
16795
17044
|
link?: Maybe<Scalars['String']['output']>;
|
|
@@ -17278,6 +17527,19 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
17278
17527
|
errors?: Maybe<Array<MutationError>>;
|
|
17279
17528
|
success: Scalars['Boolean']['output'];
|
|
17280
17529
|
};
|
|
17530
|
+
export declare type ConfluenceRestoreContentVersionInput = {
|
|
17531
|
+
contentId: Scalars['ID']['input'];
|
|
17532
|
+
expand?: InputMaybe<Scalars['String']['input']>;
|
|
17533
|
+
restoreTitle?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17534
|
+
versionMessage?: InputMaybe<Scalars['String']['input']>;
|
|
17535
|
+
versionNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
17536
|
+
};
|
|
17537
|
+
export declare type ConfluenceRestoreContentVersionPayload = {
|
|
17538
|
+
__typename?: 'ConfluenceRestoreContentVersionPayload';
|
|
17539
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17540
|
+
success: Scalars['Boolean']['output'];
|
|
17541
|
+
version: Version;
|
|
17542
|
+
};
|
|
17281
17543
|
export declare enum ConfluenceRoleAssignabilityCode {
|
|
17282
17544
|
Assignable = "ASSIGNABLE",
|
|
17283
17545
|
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
@@ -20963,6 +21225,16 @@ export declare type CreateAppContainerPayload = Payload & {
|
|
|
20963
21225
|
errors?: Maybe<Array<MutationError>>;
|
|
20964
21226
|
success: Scalars['Boolean']['output'];
|
|
20965
21227
|
};
|
|
21228
|
+
export declare type CreateAppCustomScopesInput = {
|
|
21229
|
+
appId: Scalars['ID']['input'];
|
|
21230
|
+
environmentId: Scalars['ID']['input'];
|
|
21231
|
+
scopes: Array<AppCustomScopeSpec>;
|
|
21232
|
+
};
|
|
21233
|
+
export declare type CreateAppCustomScopesPayload = Payload & {
|
|
21234
|
+
__typename?: 'CreateAppCustomScopesPayload';
|
|
21235
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21236
|
+
success: Scalars['Boolean']['output'];
|
|
21237
|
+
};
|
|
20966
21238
|
export declare type CreateAppDeploymentInput = {
|
|
20967
21239
|
appId: Scalars['ID']['input'];
|
|
20968
21240
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -26707,13 +26979,15 @@ export declare type EcosystemGlobalInstallationOverrideInput = {
|
|
|
26707
26979
|
};
|
|
26708
26980
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
26709
26981
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
26710
|
-
AllowLogsAccess = "ALLOW_LOGS_ACCESS"
|
|
26982
|
+
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
26983
|
+
AllowRestApis = "ALLOW_REST_APIS"
|
|
26711
26984
|
}
|
|
26712
26985
|
export declare type EcosystemInstallationConfigInput = {
|
|
26713
26986
|
overrides: Array<EcosystemInstallationOverrides>;
|
|
26714
26987
|
};
|
|
26715
26988
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
26716
|
-
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
26989
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
26990
|
+
AllowRestApis = "ALLOW_REST_APIS"
|
|
26717
26991
|
}
|
|
26718
26992
|
export declare type EcosystemInstallationOverrides = {
|
|
26719
26993
|
key: EcosystemInstallationOverrideKeys;
|
|
@@ -31104,7 +31378,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
|
31104
31378
|
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
31105
31379
|
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
31106
31380
|
errors?: Maybe<Array<MutationError>>;
|
|
31107
|
-
id
|
|
31381
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
31108
31382
|
success: Scalars['Boolean']['output'];
|
|
31109
31383
|
};
|
|
31110
31384
|
export declare type GraphIntegrationConsentInput = {
|
|
@@ -34761,6 +35035,8 @@ export declare type GraphStore = {
|
|
|
34761
35035
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
34762
35036
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
34763
35037
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
35038
|
+
userReactedToIssueComment?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentConnection>;
|
|
35039
|
+
userReactedToIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection>;
|
|
34764
35040
|
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
34765
35041
|
userReactionVideoInverse?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseConnection>;
|
|
34766
35042
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
@@ -39512,6 +39788,20 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
39512
39788
|
id: Scalars['ID']['input'];
|
|
39513
39789
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
39514
39790
|
};
|
|
39791
|
+
export declare type GraphStoreUserReactedToIssueCommentArgs = {
|
|
39792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39793
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39795
|
+
id: Scalars['ID']['input'];
|
|
39796
|
+
sort?: InputMaybe<GraphStoreUserReactedToIssueCommentSortInput>;
|
|
39797
|
+
};
|
|
39798
|
+
export declare type GraphStoreUserReactedToIssueCommentInverseArgs = {
|
|
39799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39800
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39802
|
+
id: Scalars['ID']['input'];
|
|
39803
|
+
sort?: InputMaybe<GraphStoreUserReactedToIssueCommentSortInput>;
|
|
39804
|
+
};
|
|
39515
39805
|
export declare type GraphStoreUserReactionVideoArgs = {
|
|
39516
39806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39517
39807
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54646,6 +54936,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
54646
54936
|
};
|
|
54647
54937
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54648
54938
|
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
54939
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentConnection = HasPageInfo & {
|
|
54940
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentConnection';
|
|
54941
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactedToIssueCommentEdge>>>;
|
|
54942
|
+
pageInfo: PageInfo;
|
|
54943
|
+
};
|
|
54944
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentEdge = {
|
|
54945
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentEdge';
|
|
54946
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54947
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54948
|
+
id: Scalars['ID']['output'];
|
|
54949
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54950
|
+
node?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentUnion>;
|
|
54951
|
+
};
|
|
54952
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection = HasPageInfo & {
|
|
54953
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection';
|
|
54954
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseEdge>>>;
|
|
54955
|
+
pageInfo: PageInfo;
|
|
54956
|
+
};
|
|
54957
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentInverseEdge = {
|
|
54958
|
+
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentInverseEdge';
|
|
54959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54960
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54961
|
+
id: Scalars['ID']['output'];
|
|
54962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54963
|
+
node?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseUnion>;
|
|
54964
|
+
};
|
|
54965
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54966
|
+
export declare type GraphStoreSimplifiedUserReactedToIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
54649
54967
|
export declare type GraphStoreSimplifiedUserReactionVideoConnection = HasPageInfo & {
|
|
54650
54968
|
__typename?: 'GraphStoreSimplifiedUserReactionVideoConnection';
|
|
54651
54969
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoEdge>>>;
|
|
@@ -56561,6 +56879,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
56561
56879
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
56562
56880
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56563
56881
|
};
|
|
56882
|
+
export declare type GraphStoreUserReactedToIssueCommentSortInput = {
|
|
56883
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56884
|
+
};
|
|
56564
56885
|
export declare type GraphStoreUserReactionVideoSortInput = {
|
|
56565
56886
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56566
56887
|
};
|
|
@@ -57066,10 +57387,14 @@ export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
|
57066
57387
|
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
57067
57388
|
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
57068
57389
|
paidFeatureUsage: Array<GrowthUnifiedProfilePaidFeatureUsageResult>;
|
|
57390
|
+
trialHistory: Array<GrowthUnifiedProfileTrialHistoryResult>;
|
|
57069
57391
|
};
|
|
57070
57392
|
export declare type GrowthUnifiedProfileEntitlementProfileResultPaidFeatureUsageArgs = {
|
|
57071
57393
|
filter?: InputMaybe<GrowthUnifiedProfilePaidFeatureUsageFilterInput>;
|
|
57072
57394
|
};
|
|
57395
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResultTrialHistoryArgs = {
|
|
57396
|
+
filter?: InputMaybe<GrowthUnifiedProfileTrialHistoryFilterInput>;
|
|
57397
|
+
};
|
|
57073
57398
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
57074
57399
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
57075
57400
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -57081,7 +57406,6 @@ export declare enum GrowthUnifiedProfileEntryType {
|
|
|
57081
57406
|
New = "NEW"
|
|
57082
57407
|
}
|
|
57083
57408
|
export declare enum GrowthUnifiedProfileFeatureType {
|
|
57084
|
-
Stateful = "STATEFUL",
|
|
57085
57409
|
Stateless = "STATELESS"
|
|
57086
57410
|
}
|
|
57087
57411
|
export declare type GrowthUnifiedProfileFunctionalOnboardingResult = {
|
|
@@ -57293,6 +57617,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
57293
57617
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
57294
57618
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
57295
57619
|
productName?: Maybe<Scalars['String']['output']>;
|
|
57620
|
+
productUrl?: Maybe<Scalars['String']['output']>;
|
|
57296
57621
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
57297
57622
|
trialContext?: Maybe<GrowthUnifiedProfileTrialContext>;
|
|
57298
57623
|
};
|
|
@@ -57432,6 +57757,15 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
57432
57757
|
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
57433
57758
|
trialType: GrowthUnifiedProfileTrialType;
|
|
57434
57759
|
};
|
|
57760
|
+
export declare type GrowthUnifiedProfileTrialHistoryFilterInput = {
|
|
57761
|
+
trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
|
|
57762
|
+
};
|
|
57763
|
+
export declare type GrowthUnifiedProfileTrialHistoryResult = {
|
|
57764
|
+
__typename?: 'GrowthUnifiedProfileTrialHistoryResult';
|
|
57765
|
+
trialEndTimeStamp: Scalars['String']['output'];
|
|
57766
|
+
trialStartTimeStamp: Scalars['String']['output'];
|
|
57767
|
+
trialType: GrowthUnifiedProfileTrialType;
|
|
57768
|
+
};
|
|
57435
57769
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
57436
57770
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
57437
57771
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
@@ -57512,6 +57846,7 @@ export declare type GrowthUnifiedProfileUserProfile = {
|
|
|
57512
57846
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
57513
57847
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
57514
57848
|
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
57849
|
+
smbUserVisitedPricingPages?: Maybe<Scalars['Boolean']['output']>;
|
|
57515
57850
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
57516
57851
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
57517
57852
|
};
|
|
@@ -60677,7 +61012,7 @@ export declare type JiraAddCommentInput = {
|
|
|
60677
61012
|
};
|
|
60678
61013
|
export declare type JiraAddCommentPayload = {
|
|
60679
61014
|
__typename?: 'JiraAddCommentPayload';
|
|
60680
|
-
comment
|
|
61015
|
+
comment?: Maybe<JiraComment>;
|
|
60681
61016
|
errors?: Maybe<Array<MutationError>>;
|
|
60682
61017
|
success: Scalars['Boolean']['output'];
|
|
60683
61018
|
};
|
|
@@ -60880,6 +61215,7 @@ export declare type JiraAffectedServicesInput = {
|
|
|
60880
61215
|
};
|
|
60881
61216
|
export declare type JiraAiAgentSession = {
|
|
60882
61217
|
__typename?: 'JiraAiAgentSession';
|
|
61218
|
+
agent?: Maybe<User>;
|
|
60883
61219
|
conversationId: Scalars['ID']['output'];
|
|
60884
61220
|
};
|
|
60885
61221
|
export declare type JiraAiAgentSessionConnection = {
|
|
@@ -61826,6 +62162,10 @@ export declare type JiraBacklogBoardConfig = {
|
|
|
61826
62162
|
swimlaneStrategy?: Maybe<Scalars['String']['output']>;
|
|
61827
62163
|
trackingStatisticConfig?: Maybe<JiraBacklogTrackingConfig>;
|
|
61828
62164
|
};
|
|
62165
|
+
export declare enum JiraBacklogCardDensity {
|
|
62166
|
+
Compact = "COMPACT",
|
|
62167
|
+
Default = "DEFAULT"
|
|
62168
|
+
}
|
|
61829
62169
|
export declare type JiraBacklogColorConfig = {
|
|
61830
62170
|
__typename?: 'JiraBacklogColorConfig';
|
|
61831
62171
|
canEditCardColorStrategy?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62128,8 +62468,69 @@ export declare type JiraBacklogVersionData = {
|
|
|
62128
62468
|
};
|
|
62129
62469
|
export declare type JiraBacklogView = {
|
|
62130
62470
|
__typename?: 'JiraBacklogView';
|
|
62471
|
+
assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62472
|
+
cardDensity?: Maybe<JiraBacklogCardDensity>;
|
|
62473
|
+
cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
|
|
62474
|
+
emptySprintsToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62475
|
+
epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62131
62476
|
epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62132
62477
|
id: Scalars['ID']['output'];
|
|
62478
|
+
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62479
|
+
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62480
|
+
quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62481
|
+
quickFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62482
|
+
searchText?: Maybe<Scalars['String']['output']>;
|
|
62483
|
+
sprintCommitmentToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62484
|
+
versionFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
62485
|
+
versionPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62486
|
+
};
|
|
62487
|
+
export declare type JiraBacklogViewAssigneeFiltersArgs = {
|
|
62488
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62490
|
+
};
|
|
62491
|
+
export declare type JiraBacklogViewCardFieldsArgs = {
|
|
62492
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62493
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62494
|
+
};
|
|
62495
|
+
export declare type JiraBacklogViewEpicFiltersArgs = {
|
|
62496
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62497
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62498
|
+
};
|
|
62499
|
+
export declare type JiraBacklogViewIssueTypeFiltersArgs = {
|
|
62500
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62501
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62502
|
+
};
|
|
62503
|
+
export declare type JiraBacklogViewLabelFiltersArgs = {
|
|
62504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62505
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62506
|
+
};
|
|
62507
|
+
export declare type JiraBacklogViewQuickFiltersArgs = {
|
|
62508
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62510
|
+
};
|
|
62511
|
+
export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
62512
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62514
|
+
};
|
|
62515
|
+
export declare type JiraBacklogViewCardField = {
|
|
62516
|
+
__typename?: 'JiraBacklogViewCardField';
|
|
62517
|
+
enabled: Scalars['Boolean']['output'];
|
|
62518
|
+
id: Scalars['ID']['output'];
|
|
62519
|
+
};
|
|
62520
|
+
export declare type JiraBacklogViewCardFieldConnection = {
|
|
62521
|
+
__typename?: 'JiraBacklogViewCardFieldConnection';
|
|
62522
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewCardFieldEdge>>>;
|
|
62523
|
+
errors?: Maybe<Array<QueryError>>;
|
|
62524
|
+
pageInfo?: Maybe<PageInfo>;
|
|
62525
|
+
};
|
|
62526
|
+
export declare type JiraBacklogViewCardFieldEdge = {
|
|
62527
|
+
__typename?: 'JiraBacklogViewCardFieldEdge';
|
|
62528
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62529
|
+
node?: Maybe<JiraBacklogViewCardField>;
|
|
62530
|
+
};
|
|
62531
|
+
export declare type JiraBacklogViewCardFieldInput = {
|
|
62532
|
+
enabled: Scalars['Boolean']['input'];
|
|
62533
|
+
id: Scalars['ID']['input'];
|
|
62133
62534
|
};
|
|
62134
62535
|
export declare type JiraBacklogViewInput = {
|
|
62135
62536
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
@@ -62137,6 +62538,22 @@ export declare type JiraBacklogViewInput = {
|
|
|
62137
62538
|
export declare type JiraBacklogViewQueryInput = {
|
|
62138
62539
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
62139
62540
|
};
|
|
62541
|
+
export declare type JiraBacklogViewStringFilter = {
|
|
62542
|
+
__typename?: 'JiraBacklogViewStringFilter';
|
|
62543
|
+
id: Scalars['ID']['output'];
|
|
62544
|
+
value: Scalars['String']['output'];
|
|
62545
|
+
};
|
|
62546
|
+
export declare type JiraBacklogViewStringFilterConnection = {
|
|
62547
|
+
__typename?: 'JiraBacklogViewStringFilterConnection';
|
|
62548
|
+
edges?: Maybe<Array<Maybe<JiraBacklogViewStringFilterEdge>>>;
|
|
62549
|
+
errors?: Maybe<Array<QueryError>>;
|
|
62550
|
+
pageInfo?: Maybe<PageInfo>;
|
|
62551
|
+
};
|
|
62552
|
+
export declare type JiraBacklogViewStringFilterEdge = {
|
|
62553
|
+
__typename?: 'JiraBacklogViewStringFilterEdge';
|
|
62554
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62555
|
+
node?: Maybe<JiraBacklogViewStringFilter>;
|
|
62556
|
+
};
|
|
62140
62557
|
export declare enum JiraBatchWindowPreference {
|
|
62141
62558
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
62142
62559
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -65602,6 +66019,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
65602
66019
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65603
66020
|
cloudId: Scalars['ID']['input'];
|
|
65604
66021
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
66022
|
+
fieldScope?: InputMaybe<JiraFieldScopeType>;
|
|
65605
66023
|
fieldStatus?: InputMaybe<JiraFieldStatusType>;
|
|
65606
66024
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
65607
66025
|
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
@@ -65718,6 +66136,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
65718
66136
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
65719
66137
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
65720
66138
|
field?: Maybe<JiraField>;
|
|
66139
|
+
fieldConfig?: Maybe<JiraIssueFieldConfig>;
|
|
65721
66140
|
id: Scalars['ID']['output'];
|
|
65722
66141
|
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
65723
66142
|
};
|
|
@@ -65739,6 +66158,12 @@ export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
|
65739
66158
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65740
66159
|
schemeId: Scalars['ID']['input'];
|
|
65741
66160
|
};
|
|
66161
|
+
export declare type JiraFieldSchemeOperations = {
|
|
66162
|
+
__typename?: 'JiraFieldSchemeOperations';
|
|
66163
|
+
canChangeDescription?: Maybe<Scalars['Boolean']['output']>;
|
|
66164
|
+
canChangeRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
66165
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
66166
|
+
};
|
|
65742
66167
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
65743
66168
|
__typename?: 'JiraFieldSchemePayload';
|
|
65744
66169
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65759,6 +66184,7 @@ export declare type JiraFieldSchemesInput = {
|
|
|
65759
66184
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65760
66185
|
};
|
|
65761
66186
|
export declare enum JiraFieldScopeType {
|
|
66187
|
+
All = "ALL",
|
|
65762
66188
|
Global = "GLOBAL",
|
|
65763
66189
|
Project = "PROJECT"
|
|
65764
66190
|
}
|
|
@@ -66895,6 +67321,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
66895
67321
|
archivedBy?: Maybe<User>;
|
|
66896
67322
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66897
67323
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
67324
|
+
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
66898
67325
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
66899
67326
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
66900
67327
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -67031,7 +67458,9 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
67031
67458
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
67032
67459
|
};
|
|
67033
67460
|
export declare type JiraIssueAttachmentsWithFiltersArgs = {
|
|
67461
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67034
67462
|
input?: InputMaybe<JiraAttachmentWithFiltersInput>;
|
|
67463
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
67035
67464
|
};
|
|
67036
67465
|
export declare type JiraIssueCanHaveChildIssuesArgs = {
|
|
67037
67466
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67666,6 +68095,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
67666
68095
|
description?: Maybe<Scalars['String']['output']>;
|
|
67667
68096
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
67668
68097
|
fieldId: Scalars['String']['output'];
|
|
68098
|
+
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
67669
68099
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
67670
68100
|
id: Scalars['ID']['output'];
|
|
67671
68101
|
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
@@ -68732,6 +69162,18 @@ export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
|
68732
69162
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
68733
69163
|
id: Scalars['Int']['output'];
|
|
68734
69164
|
};
|
|
69165
|
+
export declare type JiraIssueTownsquareProjectLink = {
|
|
69166
|
+
__typename?: 'JiraIssueTownsquareProjectLink';
|
|
69167
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
69168
|
+
issue?: Maybe<JiraIssue>;
|
|
69169
|
+
linkType?: Maybe<JiraIssueTownsquareProjectLinkType>;
|
|
69170
|
+
project?: Maybe<JiraTownsquareProject>;
|
|
69171
|
+
};
|
|
69172
|
+
export declare enum JiraIssueTownsquareProjectLinkType {
|
|
69173
|
+
Explicit = "EXPLICIT",
|
|
69174
|
+
Implicit = "IMPLICIT",
|
|
69175
|
+
None = "NONE"
|
|
69176
|
+
}
|
|
68735
69177
|
export declare type JiraIssueTransitionComment = {
|
|
68736
69178
|
__typename?: 'JiraIssueTransitionComment';
|
|
68737
69179
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -69137,6 +69579,7 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
69137
69579
|
};
|
|
69138
69580
|
export declare type JiraJourneyParentIssue = {
|
|
69139
69581
|
__typename?: 'JiraJourneyParentIssue';
|
|
69582
|
+
jiraStatuses?: Maybe<Array<JiraStatus>>;
|
|
69140
69583
|
project?: Maybe<JiraProject>;
|
|
69141
69584
|
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
69142
69585
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
@@ -69237,6 +69680,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
69237
69680
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
69238
69681
|
id: Scalars['ID']['output'];
|
|
69239
69682
|
issueType?: Maybe<JiraIssueType>;
|
|
69683
|
+
jiraStatuses?: Maybe<Array<JiraStatus>>;
|
|
69240
69684
|
name?: Maybe<Scalars['String']['output']>;
|
|
69241
69685
|
project?: Maybe<JiraProject>;
|
|
69242
69686
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
@@ -73936,6 +74380,7 @@ export declare type JiraQuery = {
|
|
|
73936
74380
|
getOutgoingEmailSettings?: Maybe<JiraOutgoingEmailSettings>;
|
|
73937
74381
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
73938
74382
|
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
74383
|
+
getProjectLinkInheritanceSources?: Maybe<Array<Maybe<JiraIssueTownsquareProjectLink>>>;
|
|
73939
74384
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
73940
74385
|
globalAppNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
73941
74386
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
@@ -74373,6 +74818,9 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
74373
74818
|
permissionKey: Scalars['String']['input'];
|
|
74374
74819
|
schemeId: Scalars['ID']['input'];
|
|
74375
74820
|
};
|
|
74821
|
+
export declare type JiraQueryGetProjectLinkInheritanceSourcesArgs = {
|
|
74822
|
+
issueId: Scalars['ID']['input'];
|
|
74823
|
+
};
|
|
74376
74824
|
export declare type JiraQueryGetProjectsByPermissionSchemeArgs = {
|
|
74377
74825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74378
74826
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77309,6 +77757,28 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
77309
77757
|
key: Scalars['String']['input'];
|
|
77310
77758
|
value: Scalars['String']['input'];
|
|
77311
77759
|
};
|
|
77760
|
+
export declare type JiraSetBacklogViewCardDensityInput = {
|
|
77761
|
+
cardDensity: JiraBacklogCardDensity;
|
|
77762
|
+
viewId: Scalars['ID']['input'];
|
|
77763
|
+
};
|
|
77764
|
+
export declare type JiraSetBacklogViewCardFieldsInput = {
|
|
77765
|
+
cardFields: Array<JiraBacklogViewCardFieldInput>;
|
|
77766
|
+
viewId: Scalars['ID']['input'];
|
|
77767
|
+
};
|
|
77768
|
+
export declare type JiraSetBacklogViewPayload = Payload & {
|
|
77769
|
+
__typename?: 'JiraSetBacklogViewPayload';
|
|
77770
|
+
backlogView?: Maybe<JiraBacklogView>;
|
|
77771
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77772
|
+
success: Scalars['Boolean']['output'];
|
|
77773
|
+
};
|
|
77774
|
+
export declare type JiraSetBacklogViewStringFiltersInput = {
|
|
77775
|
+
values: Array<Scalars['String']['input']>;
|
|
77776
|
+
viewId: Scalars['ID']['input'];
|
|
77777
|
+
};
|
|
77778
|
+
export declare type JiraSetBacklogViewTextInput = {
|
|
77779
|
+
text: Scalars['String']['input'];
|
|
77780
|
+
viewId: Scalars['ID']['input'];
|
|
77781
|
+
};
|
|
77312
77782
|
export declare type JiraSetBoardIssueCardCoverInput = {
|
|
77313
77783
|
coverType: JiraBackgroundType;
|
|
77314
77784
|
coverValue: Scalars['String']['input'];
|
|
@@ -77371,7 +77841,7 @@ export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
|
77371
77841
|
success: Scalars['Boolean']['output'];
|
|
77372
77842
|
};
|
|
77373
77843
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
77374
|
-
completedIssueSearchCutOffInDays
|
|
77844
|
+
completedIssueSearchCutOffInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
77375
77845
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
77376
77846
|
viewId: Scalars['ID']['input'];
|
|
77377
77847
|
};
|
|
@@ -77578,6 +78048,10 @@ export declare type JiraSetViewGroupByPayload = Payload & {
|
|
|
77578
78048
|
success: Scalars['Boolean']['output'];
|
|
77579
78049
|
view?: Maybe<JiraView>;
|
|
77580
78050
|
};
|
|
78051
|
+
export declare type JiraSetViewSettingToggleInput = {
|
|
78052
|
+
toggleValue: Scalars['Boolean']['input'];
|
|
78053
|
+
viewId: Scalars['ID']['input'];
|
|
78054
|
+
};
|
|
77581
78055
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
77582
78056
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
77583
78057
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -78507,6 +78981,7 @@ export declare type JiraSubtaskSummary = {
|
|
|
78507
78981
|
__typename?: 'JiraSubtaskSummary';
|
|
78508
78982
|
totalCompletedCount?: Maybe<Scalars['Int']['output']>;
|
|
78509
78983
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
78984
|
+
totalInProgressCount?: Maybe<Scalars['Int']['output']>;
|
|
78510
78985
|
};
|
|
78511
78986
|
export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
78512
78987
|
__typename?: 'JiraSubtaskSummaryField';
|
|
@@ -78613,9 +79088,14 @@ export declare type JiraSuggestionAction = {
|
|
|
78613
79088
|
__typename?: 'JiraSuggestionAction';
|
|
78614
79089
|
default?: Maybe<Scalars['Boolean']['output']>;
|
|
78615
79090
|
id?: Maybe<Scalars['String']['output']>;
|
|
78616
|
-
inputSchema?: Maybe<
|
|
79091
|
+
inputSchema?: Maybe<JiraSuggestionActionInputSchema>;
|
|
78617
79092
|
type?: Maybe<JiraSuggestionActionType>;
|
|
78618
79093
|
};
|
|
79094
|
+
export declare type JiraSuggestionActionInputSchema = {
|
|
79095
|
+
__typename?: 'JiraSuggestionActionInputSchema';
|
|
79096
|
+
properties?: Maybe<Scalars['JSON']['output']>;
|
|
79097
|
+
required?: Maybe<Array<Scalars['String']['output']>>;
|
|
79098
|
+
};
|
|
78619
79099
|
export declare enum JiraSuggestionActionType {
|
|
78620
79100
|
ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
|
|
78621
79101
|
ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
|
|
@@ -78888,6 +79368,39 @@ export declare type JiraToolchain = {
|
|
|
78888
79368
|
export declare type JiraToolchainHasViewDevToolsPermissionArgs = {
|
|
78889
79369
|
projectKey: Scalars['String']['input'];
|
|
78890
79370
|
};
|
|
79371
|
+
export declare type JiraTownsquareProject = {
|
|
79372
|
+
__typename?: 'JiraTownsquareProject';
|
|
79373
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
79374
|
+
dueDateConfidence?: Maybe<Scalars['String']['output']>;
|
|
79375
|
+
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
79376
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
79377
|
+
id: Scalars['ID']['output'];
|
|
79378
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
79379
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
79380
|
+
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
79381
|
+
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
79382
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
79383
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
79384
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
79385
|
+
};
|
|
79386
|
+
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
79387
|
+
__typename?: 'JiraTownsquareProjectField';
|
|
79388
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
79389
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
79390
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
79391
|
+
fieldId: Scalars['String']['output'];
|
|
79392
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
79393
|
+
id: Scalars['ID']['output'];
|
|
79394
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
79395
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
79396
|
+
isLinkEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
79397
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
79398
|
+
issue?: Maybe<JiraIssue>;
|
|
79399
|
+
name: Scalars['String']['output'];
|
|
79400
|
+
project?: Maybe<JiraTownsquareProject>;
|
|
79401
|
+
type: Scalars['String']['output'];
|
|
79402
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
79403
|
+
};
|
|
78891
79404
|
export declare type JiraTransition = Node & {
|
|
78892
79405
|
__typename?: 'JiraTransition';
|
|
78893
79406
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -79068,7 +79581,7 @@ export declare type JiraUpdateCommentInput = {
|
|
|
79068
79581
|
};
|
|
79069
79582
|
export declare type JiraUpdateCommentPayload = {
|
|
79070
79583
|
__typename?: 'JiraUpdateCommentPayload';
|
|
79071
|
-
comment
|
|
79584
|
+
comment?: Maybe<JiraComment>;
|
|
79072
79585
|
errors?: Maybe<Array<MutationError>>;
|
|
79073
79586
|
success: Scalars['Boolean']['output'];
|
|
79074
79587
|
};
|
|
@@ -81052,15 +81565,6 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
81052
81565
|
export declare type JiraWorklogSortInput = {
|
|
81053
81566
|
order: SortDirection;
|
|
81054
81567
|
};
|
|
81055
|
-
export declare type JpdInsightCreatedEvent = {
|
|
81056
|
-
__typename?: 'JpdInsightCreatedEvent';
|
|
81057
|
-
actorUserId: Scalars['ID']['output'];
|
|
81058
|
-
insight: PolarisInsight;
|
|
81059
|
-
insightAri: Scalars['ID']['output'];
|
|
81060
|
-
issueAri: Scalars['ID']['output'];
|
|
81061
|
-
performedAt: Scalars['String']['output'];
|
|
81062
|
-
projectAri: Scalars['ID']['output'];
|
|
81063
|
-
};
|
|
81064
81568
|
export declare type JpdInsightDeletedEvent = {
|
|
81065
81569
|
__typename?: 'JpdInsightDeletedEvent';
|
|
81066
81570
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -81069,33 +81573,8 @@ export declare type JpdInsightDeletedEvent = {
|
|
|
81069
81573
|
performedAt: Scalars['String']['output'];
|
|
81070
81574
|
projectAri: Scalars['ID']['output'];
|
|
81071
81575
|
};
|
|
81072
|
-
export declare type JpdInsightUpdatedEvent = {
|
|
81073
|
-
__typename?: 'JpdInsightUpdatedEvent';
|
|
81074
|
-
actorUserId: Scalars['ID']['output'];
|
|
81075
|
-
insight: PolarisInsight;
|
|
81076
|
-
insightAri: Scalars['ID']['output'];
|
|
81077
|
-
issueAri: Scalars['ID']['output'];
|
|
81078
|
-
performedAt: Scalars['String']['output'];
|
|
81079
|
-
projectAri: Scalars['ID']['output'];
|
|
81080
|
-
};
|
|
81081
|
-
export declare type JpdPlayContributionCreatedEvent = {
|
|
81082
|
-
__typename?: 'JpdPlayContributionCreatedEvent';
|
|
81083
|
-
contributionAri: Scalars['ID']['output'];
|
|
81084
|
-
contributionId: Scalars['Int']['output'];
|
|
81085
|
-
projectAri: Scalars['ID']['output'];
|
|
81086
|
-
subjectAri: Scalars['ID']['output'];
|
|
81087
|
-
updatedByUserId: Scalars['ID']['output'];
|
|
81088
|
-
updatedTime: Scalars['String']['output'];
|
|
81089
|
-
};
|
|
81090
81576
|
export declare type JpdPlayContributionDeletedEvent = {
|
|
81091
81577
|
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
81092
|
-
projectAri: Scalars['ID']['output'];
|
|
81093
|
-
subjectAri: Scalars['ID']['output'];
|
|
81094
|
-
updatedByUserId: Scalars['ID']['output'];
|
|
81095
|
-
updatedTime: Scalars['String']['output'];
|
|
81096
|
-
};
|
|
81097
|
-
export declare type JpdPlayContributionUpdatedEvent = {
|
|
81098
|
-
__typename?: 'JpdPlayContributionUpdatedEvent';
|
|
81099
81578
|
contributionAri: Scalars['ID']['output'];
|
|
81100
81579
|
contributionId: Scalars['Int']['output'];
|
|
81101
81580
|
projectAri: Scalars['ID']['output'];
|
|
@@ -81106,6 +81585,8 @@ export declare type JpdPlayContributionUpdatedEvent = {
|
|
|
81106
81585
|
export declare type JpdPlayEvent = {
|
|
81107
81586
|
__typename?: 'JpdPlayEvent';
|
|
81108
81587
|
parameters: JpdPlayParameters;
|
|
81588
|
+
playAri: Scalars['ID']['output'];
|
|
81589
|
+
playId: Scalars['Int']['output'];
|
|
81109
81590
|
projectAri: Scalars['ID']['output'];
|
|
81110
81591
|
updatedByUserId: Scalars['ID']['output'];
|
|
81111
81592
|
updatedTime: Scalars['String']['output'];
|
|
@@ -81116,15 +81597,15 @@ export declare type JpdPlayParameters = {
|
|
|
81116
81597
|
};
|
|
81117
81598
|
export declare type JpdSubscriptions = {
|
|
81118
81599
|
__typename?: 'JpdSubscriptions';
|
|
81119
|
-
onInsightCreated?: Maybe<
|
|
81600
|
+
onInsightCreated?: Maybe<PolarisInsight>;
|
|
81120
81601
|
onInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
81121
|
-
onInsightUpdated?: Maybe<
|
|
81122
|
-
onIssueInsightCreated?: Maybe<
|
|
81602
|
+
onInsightUpdated?: Maybe<PolarisInsight>;
|
|
81603
|
+
onIssueInsightCreated?: Maybe<PolarisInsight>;
|
|
81123
81604
|
onIssueInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
81124
|
-
onIssueInsightUpdated?: Maybe<
|
|
81125
|
-
onPlayContributionCreated?: Maybe<
|
|
81605
|
+
onIssueInsightUpdated?: Maybe<PolarisInsight>;
|
|
81606
|
+
onPlayContributionCreated?: Maybe<PolarisPlayContribution>;
|
|
81126
81607
|
onPlayContributionDeleted?: Maybe<JpdPlayContributionDeletedEvent>;
|
|
81127
|
-
onPlayContributionUpdated?: Maybe<
|
|
81608
|
+
onPlayContributionUpdated?: Maybe<PolarisPlayContribution>;
|
|
81128
81609
|
onPlayUpdated?: Maybe<JpdPlayEvent>;
|
|
81129
81610
|
onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
|
|
81130
81611
|
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
@@ -81232,14 +81713,12 @@ export declare type JpdViewSetCreatedEvent = {
|
|
|
81232
81713
|
__typename?: 'JpdViewSetCreatedEvent';
|
|
81233
81714
|
projectAri: Scalars['ID']['output'];
|
|
81234
81715
|
viewSetAri: Scalars['ID']['output'];
|
|
81235
|
-
viewSetId: Scalars['Int']['output'];
|
|
81236
81716
|
viewSetUuid: Scalars['ID']['output'];
|
|
81237
81717
|
};
|
|
81238
81718
|
export declare type JpdViewSetDeletedEvent = {
|
|
81239
81719
|
__typename?: 'JpdViewSetDeletedEvent';
|
|
81240
81720
|
projectAri: Scalars['ID']['output'];
|
|
81241
81721
|
viewSetAri: Scalars['ID']['output'];
|
|
81242
|
-
viewSetId: Scalars['Int']['output'];
|
|
81243
81722
|
viewSetUuid: Scalars['ID']['output'];
|
|
81244
81723
|
};
|
|
81245
81724
|
export declare type JpdViewSetUpdatedEvent = {
|
|
@@ -81247,7 +81726,6 @@ export declare type JpdViewSetUpdatedEvent = {
|
|
|
81247
81726
|
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
81248
81727
|
projectAri: Scalars['ID']['output'];
|
|
81249
81728
|
viewSetAri: Scalars['ID']['output'];
|
|
81250
|
-
viewSetId: Scalars['Int']['output'];
|
|
81251
81729
|
viewSetUuid: Scalars['ID']['output'];
|
|
81252
81730
|
};
|
|
81253
81731
|
export declare type JpdViewUpdatedEvent = {
|
|
@@ -83560,6 +84038,11 @@ export declare enum LoomTranscriptLanguage {
|
|
|
83560
84038
|
Yo = "yo",
|
|
83561
84039
|
Zh = "zh"
|
|
83562
84040
|
}
|
|
84041
|
+
export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
84042
|
+
__typename?: 'LoomUnauthenticatedUserPrimaryAuthType';
|
|
84043
|
+
authType: Scalars['String']['output'];
|
|
84044
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84045
|
+
};
|
|
83563
84046
|
export declare type LoomUserPrimaryAuthType = {
|
|
83564
84047
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
83565
84048
|
authType: Scalars['String']['output'];
|
|
@@ -87055,11 +87538,13 @@ export declare type MercuryDeleteStrategicEventCommentPayload = Payload & {
|
|
|
87055
87538
|
success: Scalars['Boolean']['output'];
|
|
87056
87539
|
};
|
|
87057
87540
|
export declare enum MercuryEntityType {
|
|
87541
|
+
ChangeProposal = "CHANGE_PROPOSAL",
|
|
87058
87542
|
Comment = "COMMENT",
|
|
87059
87543
|
FocusArea = "FOCUS_AREA",
|
|
87060
87544
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
87061
87545
|
Program = "PROGRAM",
|
|
87062
|
-
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE"
|
|
87546
|
+
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
87547
|
+
StrategicEvent = "STRATEGIC_EVENT"
|
|
87063
87548
|
}
|
|
87064
87549
|
export declare enum MercuryEventType {
|
|
87065
87550
|
Archive = "ARCHIVE",
|
|
@@ -88759,6 +89244,7 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
88759
89244
|
__typename?: 'MercuryUnrankChangeProposalInViewPayload';
|
|
88760
89245
|
errors?: Maybe<Array<MutationError>>;
|
|
88761
89246
|
success: Scalars['Boolean']['output'];
|
|
89247
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88762
89248
|
};
|
|
88763
89249
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
88764
89250
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88821,6 +89307,7 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
|
88821
89307
|
__typename?: 'MercuryUpdateChangeProposalRankInViewPayload';
|
|
88822
89308
|
errors?: Maybe<Array<MutationError>>;
|
|
88823
89309
|
success: Scalars['Boolean']['output'];
|
|
89310
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88824
89311
|
};
|
|
88825
89312
|
export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
88826
89313
|
id: Scalars['ID']['input'];
|
|
@@ -88828,9 +89315,9 @@ export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
|
88828
89315
|
};
|
|
88829
89316
|
export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
88830
89317
|
__typename?: 'MercuryUpdateChangeProposalsViewNamePayload';
|
|
88831
|
-
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88832
89318
|
errors?: Maybe<Array<MutationError>>;
|
|
88833
89319
|
success: Scalars['Boolean']['output'];
|
|
89320
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88834
89321
|
};
|
|
88835
89322
|
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
88836
89323
|
id: Scalars['ID']['input'];
|
|
@@ -88838,9 +89325,9 @@ export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
|
88838
89325
|
};
|
|
88839
89326
|
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
88840
89327
|
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
88841
|
-
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88842
89328
|
errors?: Maybe<Array<MutationError>>;
|
|
88843
89329
|
success: Scalars['Boolean']['output'];
|
|
89330
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88844
89331
|
};
|
|
88845
89332
|
export declare type MercuryUpdateChangeQuantityInput = {
|
|
88846
89333
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -89309,6 +89796,7 @@ export declare type Mutation = {
|
|
|
89309
89796
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
89310
89797
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
89311
89798
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
89799
|
+
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
89312
89800
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
89313
89801
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
89314
89802
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
@@ -89316,10 +89804,12 @@ export declare type Mutation = {
|
|
|
89316
89804
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
89317
89805
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
89318
89806
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
89807
|
+
assetsDM_dataSourceCleansingRulesRunCleanse?: Maybe<AssetsDmDataSourceCleansingRulesRunCleanseResponse>;
|
|
89319
89808
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
89320
89809
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
89321
89810
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
89322
89811
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
89812
|
+
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
89323
89813
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
89324
89814
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
89325
89815
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -89331,6 +89821,7 @@ export declare type Mutation = {
|
|
|
89331
89821
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
89332
89822
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
89333
89823
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
89824
|
+
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
89334
89825
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
89335
89826
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
89336
89827
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
@@ -89371,6 +89862,7 @@ export declare type Mutation = {
|
|
|
89371
89862
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
89372
89863
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
89373
89864
|
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
89865
|
+
confluence_createCalendar?: Maybe<ConfluenceCreateCalendarPayload>;
|
|
89374
89866
|
confluence_createCommentOnAnswer?: Maybe<ConfluenceCreateCommentOnAnswerPayload>;
|
|
89375
89867
|
confluence_createCommentOnQuestion?: Maybe<ConfluenceCreateCommentOnQuestionPayload>;
|
|
89376
89868
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
@@ -89402,9 +89894,11 @@ export declare type Mutation = {
|
|
|
89402
89894
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
89403
89895
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
89404
89896
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
89897
|
+
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
89405
89898
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
89406
89899
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
89407
89900
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
89901
|
+
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
89408
89902
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
89409
89903
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
89410
89904
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
@@ -89448,6 +89942,7 @@ export declare type Mutation = {
|
|
|
89448
89942
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
89449
89943
|
createApp?: Maybe<CreateAppResponse>;
|
|
89450
89944
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
89945
|
+
createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
|
|
89451
89946
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
89452
89947
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
89453
89948
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
@@ -89661,6 +90156,20 @@ export declare type Mutation = {
|
|
|
89661
90156
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
89662
90157
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
89663
90158
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
90159
|
+
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90160
|
+
jira_setBacklogViewCardDensity?: Maybe<JiraSetBacklogViewPayload>;
|
|
90161
|
+
jira_setBacklogViewCardFields?: Maybe<JiraSetBacklogViewPayload>;
|
|
90162
|
+
jira_setBacklogViewEmptySprintsToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90163
|
+
jira_setBacklogViewEpicFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90164
|
+
jira_setBacklogViewEpicPanelToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90165
|
+
jira_setBacklogViewIssueTypeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90166
|
+
jira_setBacklogViewLabelFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90167
|
+
jira_setBacklogViewQuickFilterToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90168
|
+
jira_setBacklogViewQuickFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90169
|
+
jira_setBacklogViewSearchText?: Maybe<JiraSetBacklogViewPayload>;
|
|
90170
|
+
jira_setBacklogViewSprintCommitmentToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
90171
|
+
jira_setBacklogViewVersionFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
90172
|
+
jira_setBacklogViewVersionPanelToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
89664
90173
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
89665
90174
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
89666
90175
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -90128,6 +90637,11 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
90128
90637
|
export declare type MutationArchiveSpaceArgs = {
|
|
90129
90638
|
input: ArchiveSpaceInput;
|
|
90130
90639
|
};
|
|
90640
|
+
export declare type MutationAssetsDm_AssociateObjectTagArgs = {
|
|
90641
|
+
cloudId: Scalars['ID']['input'];
|
|
90642
|
+
input: AssetsDmObjectTagAssociateInput;
|
|
90643
|
+
workspaceId: Scalars['ID']['input'];
|
|
90644
|
+
};
|
|
90131
90645
|
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
90132
90646
|
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
90133
90647
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90174,6 +90688,11 @@ export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
|
90174
90688
|
dataSourceId: Scalars['ID']['input'];
|
|
90175
90689
|
workspaceId: Scalars['ID']['input'];
|
|
90176
90690
|
};
|
|
90691
|
+
export declare type MutationAssetsDm_DataSourceCleansingRulesRunCleanseArgs = {
|
|
90692
|
+
cloudId: Scalars['ID']['input'];
|
|
90693
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90694
|
+
workspaceId: Scalars['ID']['input'];
|
|
90695
|
+
};
|
|
90177
90696
|
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
90178
90697
|
cloudId: Scalars['ID']['input'];
|
|
90179
90698
|
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
@@ -90194,6 +90713,11 @@ export declare type MutationAssetsDm_DeleteSavedSearchArgs = {
|
|
|
90194
90713
|
savedSearchId: Scalars['ID']['input'];
|
|
90195
90714
|
workspaceId: Scalars['ID']['input'];
|
|
90196
90715
|
};
|
|
90716
|
+
export declare type MutationAssetsDm_DissociateObjectTagArgs = {
|
|
90717
|
+
cloudId: Scalars['ID']['input'];
|
|
90718
|
+
input: AssetsDmObjectTagDissociateInput;
|
|
90719
|
+
workspaceId: Scalars['ID']['input'];
|
|
90720
|
+
};
|
|
90197
90721
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
90198
90722
|
cloudId: Scalars['ID']['input'];
|
|
90199
90723
|
input: AssetsDmObjectTagEditInput;
|
|
@@ -90231,6 +90755,9 @@ export declare type MutationAvp_CreateChartArgs = {
|
|
|
90231
90755
|
export declare type MutationAvp_CreateDashboardArgs = {
|
|
90232
90756
|
input: AvpCreateDashboardInput;
|
|
90233
90757
|
};
|
|
90758
|
+
export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
90759
|
+
input: AvpCreateDashboardFilterInput;
|
|
90760
|
+
};
|
|
90234
90761
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
90235
90762
|
input: AvpDeleteChartInput;
|
|
90236
90763
|
};
|
|
@@ -90358,6 +90885,10 @@ export declare type MutationConfluence_CreateAnswerArgs = {
|
|
|
90358
90885
|
cloudId: Scalars['ID']['input'];
|
|
90359
90886
|
input: ConfluenceCreateAnswerInput;
|
|
90360
90887
|
};
|
|
90888
|
+
export declare type MutationConfluence_CreateCalendarArgs = {
|
|
90889
|
+
cloudId: Scalars['ID']['input'];
|
|
90890
|
+
input: ConfluenceCreateCalendarInput;
|
|
90891
|
+
};
|
|
90361
90892
|
export declare type MutationConfluence_CreateCommentOnAnswerArgs = {
|
|
90362
90893
|
cloudId: Scalars['ID']['input'];
|
|
90363
90894
|
input: ConfluenceCreateCommentOnAnswerInput;
|
|
@@ -90478,6 +91009,10 @@ export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
|
90478
91009
|
cloudId: Scalars['ID']['input'];
|
|
90479
91010
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
90480
91011
|
};
|
|
91012
|
+
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
91013
|
+
cloudId: Scalars['ID']['input'];
|
|
91014
|
+
input: ConfluencePatchCalendarInput;
|
|
91015
|
+
};
|
|
90481
91016
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
90482
91017
|
cloudId: Scalars['ID']['input'];
|
|
90483
91018
|
commentId: Scalars['ID']['input'];
|
|
@@ -90491,6 +91026,10 @@ export declare type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
|
90491
91026
|
contentId: Scalars['ID']['input'];
|
|
90492
91027
|
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
90493
91028
|
};
|
|
91029
|
+
export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
91030
|
+
cloudId: Scalars['ID']['input'];
|
|
91031
|
+
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
91032
|
+
};
|
|
90494
91033
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
90495
91034
|
cloudId: Scalars['ID']['input'];
|
|
90496
91035
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -90649,6 +91188,9 @@ export declare type MutationCreateAppArgs = {
|
|
|
90649
91188
|
export declare type MutationCreateAppContainerArgs = {
|
|
90650
91189
|
input: AppContainerInput;
|
|
90651
91190
|
};
|
|
91191
|
+
export declare type MutationCreateAppCustomScopesArgs = {
|
|
91192
|
+
input: CreateAppCustomScopesInput;
|
|
91193
|
+
};
|
|
90652
91194
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
90653
91195
|
input: CreateAppDeploymentInput;
|
|
90654
91196
|
};
|
|
@@ -91354,6 +91896,48 @@ export declare type MutationJira_ScheduleTimelineItemArgs = {
|
|
|
91354
91896
|
cloudId: Scalars['ID']['input'];
|
|
91355
91897
|
input: JiraScheduleTimelineItemInput;
|
|
91356
91898
|
};
|
|
91899
|
+
export declare type MutationJira_SetBacklogViewAssigneeFiltersArgs = {
|
|
91900
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
91901
|
+
};
|
|
91902
|
+
export declare type MutationJira_SetBacklogViewCardDensityArgs = {
|
|
91903
|
+
input: JiraSetBacklogViewCardDensityInput;
|
|
91904
|
+
};
|
|
91905
|
+
export declare type MutationJira_SetBacklogViewCardFieldsArgs = {
|
|
91906
|
+
input: JiraSetBacklogViewCardFieldsInput;
|
|
91907
|
+
};
|
|
91908
|
+
export declare type MutationJira_SetBacklogViewEmptySprintsToggleArgs = {
|
|
91909
|
+
input: JiraSetViewSettingToggleInput;
|
|
91910
|
+
};
|
|
91911
|
+
export declare type MutationJira_SetBacklogViewEpicFiltersArgs = {
|
|
91912
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
91913
|
+
};
|
|
91914
|
+
export declare type MutationJira_SetBacklogViewEpicPanelToggleArgs = {
|
|
91915
|
+
input: JiraSetViewSettingToggleInput;
|
|
91916
|
+
};
|
|
91917
|
+
export declare type MutationJira_SetBacklogViewIssueTypeFiltersArgs = {
|
|
91918
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
91919
|
+
};
|
|
91920
|
+
export declare type MutationJira_SetBacklogViewLabelFiltersArgs = {
|
|
91921
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
91922
|
+
};
|
|
91923
|
+
export declare type MutationJira_SetBacklogViewQuickFilterToggleArgs = {
|
|
91924
|
+
input: JiraSetViewSettingToggleInput;
|
|
91925
|
+
};
|
|
91926
|
+
export declare type MutationJira_SetBacklogViewQuickFiltersArgs = {
|
|
91927
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
91928
|
+
};
|
|
91929
|
+
export declare type MutationJira_SetBacklogViewSearchTextArgs = {
|
|
91930
|
+
input: JiraSetBacklogViewTextInput;
|
|
91931
|
+
};
|
|
91932
|
+
export declare type MutationJira_SetBacklogViewSprintCommitmentToggleArgs = {
|
|
91933
|
+
input: JiraSetViewSettingToggleInput;
|
|
91934
|
+
};
|
|
91935
|
+
export declare type MutationJira_SetBacklogViewVersionFiltersArgs = {
|
|
91936
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
91937
|
+
};
|
|
91938
|
+
export declare type MutationJira_SetBacklogViewVersionPanelToggleArgs = {
|
|
91939
|
+
input: JiraSetViewSettingToggleInput;
|
|
91940
|
+
};
|
|
91357
91941
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
91358
91942
|
input: JiraSetBoardIssueCardCoverInput;
|
|
91359
91943
|
};
|
|
@@ -91967,6 +92551,7 @@ export declare type MutationStakeholderComms_BatchProcessDraftComponentsArgs = {
|
|
|
91967
92551
|
batchComponentProcessRequest: StakeholderCommsBatchComponentProcessRequest;
|
|
91968
92552
|
};
|
|
91969
92553
|
export declare type MutationStakeholderComms_BulkCreateStakeholdersArgs = {
|
|
92554
|
+
joiningGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
91970
92555
|
stakeholders: Array<StakeholderCommsCreateStakeholderInput>;
|
|
91971
92556
|
};
|
|
91972
92557
|
export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
@@ -91979,6 +92564,7 @@ export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
|
91979
92564
|
page: StakeholderCommsCreatePageInputType;
|
|
91980
92565
|
};
|
|
91981
92566
|
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
92567
|
+
joiningGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
91982
92568
|
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
91983
92569
|
};
|
|
91984
92570
|
export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArgs = {
|
|
@@ -95172,6 +95758,7 @@ export declare type Query = {
|
|
|
95172
95758
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
95173
95759
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
95174
95760
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
95761
|
+
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
95175
95762
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
95176
95763
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
95177
95764
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -95197,6 +95784,7 @@ export declare type Query = {
|
|
|
95197
95784
|
appContainerServices?: Maybe<AppContainerServices>;
|
|
95198
95785
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
95199
95786
|
appContributors: Array<AppContributor>;
|
|
95787
|
+
appCustomScopes?: Maybe<AppCustomScopeConnection>;
|
|
95200
95788
|
appDeployment?: Maybe<AppDeployment>;
|
|
95201
95789
|
appHostServiceScopes: Array<Maybe<AppHostServiceScope>>;
|
|
95202
95790
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
@@ -95222,6 +95810,8 @@ export declare type Query = {
|
|
|
95222
95810
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
95223
95811
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
95224
95812
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
95813
|
+
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
95814
|
+
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
95225
95815
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
95226
95816
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
95227
95817
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
@@ -95328,6 +95918,7 @@ export declare type Query = {
|
|
|
95328
95918
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
95329
95919
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
95330
95920
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
95921
|
+
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
95331
95922
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
95332
95923
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
95333
95924
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -95338,6 +95929,7 @@ export declare type Query = {
|
|
|
95338
95929
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
95339
95930
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
95340
95931
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
95932
|
+
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
95341
95933
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
95342
95934
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
95343
95935
|
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
@@ -95412,6 +96004,8 @@ export declare type Query = {
|
|
|
95412
96004
|
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
95413
96005
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
95414
96006
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
96007
|
+
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
96008
|
+
crossProjectIssueMentionsInDescription?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95415
96009
|
crossProjectIssuesLinkedToSamePullRequest?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95416
96010
|
crossProjectIssuesMentionedInExternalConversations?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95417
96011
|
crossProjectIssuesMentionedInExternalMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -95649,6 +96243,7 @@ export declare type Query = {
|
|
|
95649
96243
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
95650
96244
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
95651
96245
|
loomToken?: Maybe<LoomToken>;
|
|
96246
|
+
loomUnauthenticated_primaryAuthTypeForEmail?: Maybe<LoomUnauthenticatedUserPrimaryAuthType>;
|
|
95652
96247
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
95653
96248
|
loom_comment?: Maybe<LoomComment>;
|
|
95654
96249
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
@@ -95771,6 +96366,7 @@ export declare type Query = {
|
|
|
95771
96366
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
95772
96367
|
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
95773
96368
|
quickReload?: Maybe<QuickReload>;
|
|
96369
|
+
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
95774
96370
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
95775
96371
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
95776
96372
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
@@ -95851,6 +96447,7 @@ export declare type Query = {
|
|
|
95851
96447
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
95852
96448
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
95853
96449
|
stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
|
|
96450
|
+
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
95854
96451
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
95855
96452
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
95856
96453
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
@@ -95860,6 +96457,9 @@ export declare type Query = {
|
|
|
95860
96457
|
stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
|
|
95861
96458
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
95862
96459
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
96460
|
+
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
96461
|
+
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
96462
|
+
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
95863
96463
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
95864
96464
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
95865
96465
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -96006,6 +96606,7 @@ export declare type QueryAdmin_UsersArgs = {
|
|
|
96006
96606
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
96007
96607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96008
96608
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
96609
|
+
orgId: Scalars['String']['input'];
|
|
96009
96610
|
searchUserInput?: InputMaybe<AdminSearchUserInput>;
|
|
96010
96611
|
};
|
|
96011
96612
|
export declare type QueryAdmin_WorkspaceByIdArgs = {
|
|
@@ -96076,6 +96677,10 @@ export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
|
96076
96677
|
cloudId: Scalars['String']['input'];
|
|
96077
96678
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
96078
96679
|
};
|
|
96680
|
+
export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
96681
|
+
agentId: Scalars['ID']['input'];
|
|
96682
|
+
cloudId: Scalars['String']['input'];
|
|
96683
|
+
};
|
|
96079
96684
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
96080
96685
|
containerId: Scalars['ID']['input'];
|
|
96081
96686
|
id: Scalars['ID']['input'];
|
|
@@ -96188,6 +96793,12 @@ export declare type QueryAppContainersArgs = {
|
|
|
96188
96793
|
export declare type QueryAppContributorsArgs = {
|
|
96189
96794
|
id: Scalars['ID']['input'];
|
|
96190
96795
|
};
|
|
96796
|
+
export declare type QueryAppCustomScopesArgs = {
|
|
96797
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96798
|
+
appId: Scalars['ID']['input'];
|
|
96799
|
+
environmentId: Scalars['ID']['input'];
|
|
96800
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96801
|
+
};
|
|
96191
96802
|
export declare type QueryAppDeploymentArgs = {
|
|
96192
96803
|
appId: Scalars['ID']['input'];
|
|
96193
96804
|
environmentKey: Scalars['String']['input'];
|
|
@@ -96321,6 +96932,16 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
96321
96932
|
dataSourceId: Scalars['ID']['input'];
|
|
96322
96933
|
workspaceId: Scalars['ID']['input'];
|
|
96323
96934
|
};
|
|
96935
|
+
export declare type QueryAssetsDm_GetCleansingExecutiveArgs = {
|
|
96936
|
+
cloudId: Scalars['ID']['input'];
|
|
96937
|
+
dataSourceId: Scalars['ID']['input'];
|
|
96938
|
+
workspaceId: Scalars['ID']['input'];
|
|
96939
|
+
};
|
|
96940
|
+
export declare type QueryAssetsDm_GetDataSourceForCleansingArgs = {
|
|
96941
|
+
cloudId: Scalars['ID']['input'];
|
|
96942
|
+
dataSourceId: Scalars['ID']['input'];
|
|
96943
|
+
workspaceId: Scalars['ID']['input'];
|
|
96944
|
+
};
|
|
96324
96945
|
export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
96325
96946
|
cloudId: Scalars['ID']['input'];
|
|
96326
96947
|
objectId: Scalars['ID']['input'];
|
|
@@ -96794,6 +97415,10 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
|
96794
97415
|
export declare type QueryConfluence_LoomEntryPointsArgs = {
|
|
96795
97416
|
cloudId: Scalars['ID']['input'];
|
|
96796
97417
|
};
|
|
97418
|
+
export declare type QueryConfluence_MacroPlaceholderAdfArgs = {
|
|
97419
|
+
id: Scalars['ID']['input'];
|
|
97420
|
+
macroDefinition: ConfluenceMacroDefinitionInput;
|
|
97421
|
+
};
|
|
96797
97422
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
96798
97423
|
cloudId: Scalars['ID']['input'];
|
|
96799
97424
|
contentId: Scalars['ID']['input'];
|
|
@@ -96842,6 +97467,13 @@ export declare type QueryConfluence_PendingRequestExistsArgs = {
|
|
|
96842
97467
|
cloudId: Scalars['ID']['input'];
|
|
96843
97468
|
contentId: Scalars['ID']['input'];
|
|
96844
97469
|
};
|
|
97470
|
+
export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
97471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97472
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
97473
|
+
cloudId: Scalars['ID']['input'];
|
|
97474
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97475
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97476
|
+
};
|
|
96845
97477
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
96846
97478
|
cloudId: Scalars['ID']['input'];
|
|
96847
97479
|
spaceKey: Scalars['String']['input'];
|
|
@@ -97186,7 +97818,7 @@ export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
|
97186
97818
|
id: Scalars['ID']['input'];
|
|
97187
97819
|
issueKey: Scalars['String']['input'];
|
|
97188
97820
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97189
|
-
projectId?: InputMaybe<Scalars['
|
|
97821
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
97190
97822
|
};
|
|
97191
97823
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
97192
97824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97259,6 +97891,16 @@ export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
|
97259
97891
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97260
97892
|
projectId: Scalars['ID']['input'];
|
|
97261
97893
|
};
|
|
97894
|
+
export declare type QueryCrossProjectIssueMentionsInCommentsV2Args = {
|
|
97895
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97897
|
+
projectId: Scalars['ID']['input'];
|
|
97898
|
+
};
|
|
97899
|
+
export declare type QueryCrossProjectIssueMentionsInDescriptionArgs = {
|
|
97900
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97902
|
+
projectId: Scalars['ID']['input'];
|
|
97903
|
+
};
|
|
97262
97904
|
export declare type QueryCrossProjectIssuesLinkedToSamePullRequestArgs = {
|
|
97263
97905
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97264
97906
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -98122,6 +98764,9 @@ export declare type QueryLogAccessByContextsArgs = {
|
|
|
98122
98764
|
export declare type QueryLookAndFeelArgs = {
|
|
98123
98765
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
98124
98766
|
};
|
|
98767
|
+
export declare type QueryLoomUnauthenticated_PrimaryAuthTypeForEmailArgs = {
|
|
98768
|
+
email: Scalars['String']['input'];
|
|
98769
|
+
};
|
|
98125
98770
|
export declare type QueryLoom_CommentArgs = {
|
|
98126
98771
|
id: Scalars['ID']['input'];
|
|
98127
98772
|
};
|
|
@@ -98532,6 +99177,9 @@ export declare type QueryQuickReloadArgs = {
|
|
|
98532
99177
|
pageId: Scalars['Long']['input'];
|
|
98533
99178
|
since: Scalars['Long']['input'];
|
|
98534
99179
|
};
|
|
99180
|
+
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
99181
|
+
cloudId: Scalars['ID']['input'];
|
|
99182
|
+
};
|
|
98535
99183
|
export declare type QueryRadar_ConnectorsArgs = {
|
|
98536
99184
|
cloudId: Scalars['ID']['input'];
|
|
98537
99185
|
};
|
|
@@ -98873,6 +99521,9 @@ export declare type QueryStakeholderComms_GetPageByNameArgs = {
|
|
|
98873
99521
|
export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
|
|
98874
99522
|
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
98875
99523
|
};
|
|
99524
|
+
export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
|
|
99525
|
+
cloudId: Scalars['String']['input'];
|
|
99526
|
+
};
|
|
98876
99527
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
98877
99528
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
98878
99529
|
};
|
|
@@ -98906,6 +99557,15 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
|
98906
99557
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
98907
99558
|
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
98908
99559
|
};
|
|
99560
|
+
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByCustomDomainArgs = {
|
|
99561
|
+
customDomain: Scalars['String']['input'];
|
|
99562
|
+
};
|
|
99563
|
+
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByPageIdArgs = {
|
|
99564
|
+
id: Scalars['String']['input'];
|
|
99565
|
+
};
|
|
99566
|
+
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByStatuspageDomainArgs = {
|
|
99567
|
+
statuspageDomain: Scalars['String']['input'];
|
|
99568
|
+
};
|
|
98909
99569
|
export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
98910
99570
|
name: Scalars['String']['input'];
|
|
98911
99571
|
};
|
|
@@ -99203,6 +99863,11 @@ export declare type RadarAriFieldValue = {
|
|
|
99203
99863
|
value?: Maybe<RadarAriObject>;
|
|
99204
99864
|
};
|
|
99205
99865
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker | TeamV2;
|
|
99866
|
+
export declare type RadarAvailableCustomFieldsFromLastSync = {
|
|
99867
|
+
__typename?: 'RadarAvailableCustomFieldsFromLastSync';
|
|
99868
|
+
availablePositionCustomFields: Array<Scalars['String']['output']>;
|
|
99869
|
+
availableWorkerCustomFields: Array<Scalars['String']['output']>;
|
|
99870
|
+
};
|
|
99206
99871
|
export declare type RadarBooleanFieldValue = {
|
|
99207
99872
|
__typename?: 'RadarBooleanFieldValue';
|
|
99208
99873
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101442,6 +102107,16 @@ export declare type SearchAnalyticsInput = {
|
|
|
101442
102107
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
101443
102108
|
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
101444
102109
|
};
|
|
102110
|
+
export declare type SearchAssetsFilter = {
|
|
102111
|
+
objectSchemaFilter?: InputMaybe<SearchAssetsObjectSchemaFilter>;
|
|
102112
|
+
objectTypeFilter?: InputMaybe<SearchAssetsObjectTypeFilter>;
|
|
102113
|
+
};
|
|
102114
|
+
export declare type SearchAssetsObjectSchemaFilter = {
|
|
102115
|
+
schemaARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102116
|
+
};
|
|
102117
|
+
export declare type SearchAssetsObjectTypeFilter = {
|
|
102118
|
+
typeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102119
|
+
};
|
|
101445
102120
|
export declare type SearchBoardFilter = {
|
|
101446
102121
|
negateProjectFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101447
102122
|
projectARI?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -101457,6 +102132,7 @@ export declare enum SearchCombinationType {
|
|
|
101457
102132
|
}
|
|
101458
102133
|
export declare type SearchCommonFilter = {
|
|
101459
102134
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102135
|
+
participants?: InputMaybe<SearchParticipants>;
|
|
101460
102136
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
101461
102137
|
};
|
|
101462
102138
|
export declare type SearchCommonRangeFilter = {
|
|
@@ -101638,6 +102314,7 @@ export declare type SearchFieldLookAndFeel = {
|
|
|
101638
102314
|
color?: Maybe<Scalars['String']['output']>;
|
|
101639
102315
|
};
|
|
101640
102316
|
export declare type SearchFilterInput = {
|
|
102317
|
+
assetsFilters?: InputMaybe<SearchAssetsFilter>;
|
|
101641
102318
|
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
101642
102319
|
compassFilters?: InputMaybe<SearchCompassFilter>;
|
|
101643
102320
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
@@ -101834,6 +102511,32 @@ export declare type SearchResult = {
|
|
|
101834
102511
|
type: SearchResultType;
|
|
101835
102512
|
url: Scalars['URL']['output'];
|
|
101836
102513
|
};
|
|
102514
|
+
export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
102515
|
+
__typename?: 'SearchResultAssetsObjectSchema';
|
|
102516
|
+
description: Scalars['String']['output'];
|
|
102517
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
102518
|
+
id: Scalars['ID']['output'];
|
|
102519
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
102520
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
102521
|
+
schemaAri: Scalars['ID']['output'];
|
|
102522
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
102523
|
+
title: Scalars['String']['output'];
|
|
102524
|
+
type: SearchResultType;
|
|
102525
|
+
url: Scalars['URL']['output'];
|
|
102526
|
+
};
|
|
102527
|
+
export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
102528
|
+
__typename?: 'SearchResultAssetsObjectType';
|
|
102529
|
+
description: Scalars['String']['output'];
|
|
102530
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
102531
|
+
id: Scalars['ID']['output'];
|
|
102532
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
102533
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
102534
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
102535
|
+
title: Scalars['String']['output'];
|
|
102536
|
+
type: SearchResultType;
|
|
102537
|
+
typeAri: Scalars['ID']['output'];
|
|
102538
|
+
url: Scalars['URL']['output'];
|
|
102539
|
+
};
|
|
101837
102540
|
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
101838
102541
|
__typename?: 'SearchResultAtlasGoal';
|
|
101839
102542
|
description: Scalars['String']['output'];
|
|
@@ -102251,6 +102954,8 @@ export declare enum SearchResultType {
|
|
|
102251
102954
|
Issue = "issue",
|
|
102252
102955
|
Learning = "learning",
|
|
102253
102956
|
Message = "message",
|
|
102957
|
+
ObjectSchema = "object_schema",
|
|
102958
|
+
ObjectType = "object_type",
|
|
102254
102959
|
Page = "page",
|
|
102255
102960
|
Plan = "plan",
|
|
102256
102961
|
Presentation = "presentation",
|
|
@@ -120355,6 +121060,7 @@ export declare type ShepherdCreateTestAlertPayload = Payload & {
|
|
|
120355
121060
|
export declare type ShepherdCreateWebhookInput = {
|
|
120356
121061
|
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
120357
121062
|
callbackURL: Scalars['URL']['input'];
|
|
121063
|
+
category?: InputMaybe<ShepherdWebhookSubscriptionCategory>;
|
|
120358
121064
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
120359
121065
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
120360
121066
|
};
|
|
@@ -121145,6 +121851,7 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
121145
121851
|
__typename?: 'ShepherdWebhookSubscription';
|
|
121146
121852
|
authHeaderTruncated?: Maybe<Scalars['String']['output']>;
|
|
121147
121853
|
callbackURL: Scalars['String']['output'];
|
|
121854
|
+
category: ShepherdWebhookSubscriptionCategory;
|
|
121148
121855
|
createdBy: Scalars['String']['output'];
|
|
121149
121856
|
createdOn: Scalars['DateTime']['output'];
|
|
121150
121857
|
destinationType: ShepherdWebhookDestinationType;
|
|
@@ -121153,6 +121860,10 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
121153
121860
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
121154
121861
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
121155
121862
|
};
|
|
121863
|
+
export declare enum ShepherdWebhookSubscriptionCategory {
|
|
121864
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
121865
|
+
Webhook = "WEBHOOK"
|
|
121866
|
+
}
|
|
121156
121867
|
export declare type ShepherdWorkspace = Node & {
|
|
121157
121868
|
__typename?: 'ShepherdWorkspace';
|
|
121158
121869
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -123085,6 +123796,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
123085
123796
|
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123086
123797
|
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123087
123798
|
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
123799
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
123088
123800
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
123089
123801
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
123090
123802
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123112,6 +123824,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
123112
123824
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
123113
123825
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
123114
123826
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
123827
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
123115
123828
|
};
|
|
123116
123829
|
export declare type StakeholderCommsCreateStakeholderGroupInput = {
|
|
123117
123830
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123127,12 +123840,14 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
123127
123840
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
123128
123841
|
addedFrom: StakeholderCommsAddedFromType;
|
|
123129
123842
|
assignmentType: StakeholderCommsAssignmentType;
|
|
123843
|
+
atlassianTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
123130
123844
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
123131
123845
|
externalAssignmentId: Scalars['String']['input'];
|
|
123132
123846
|
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
123133
123847
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
123134
123848
|
preference: StakeholderCommsPreferencesInput;
|
|
123135
123849
|
skipConfirmation: Scalars['Boolean']['input'];
|
|
123850
|
+
stakeholderGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
123136
123851
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
123137
123852
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
123138
123853
|
};
|
|
@@ -123264,6 +123979,7 @@ export declare type StakeholderCommsPage = {
|
|
|
123264
123979
|
allowRssAtomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
123265
123980
|
blackHole?: Maybe<Scalars['Boolean']['output']>;
|
|
123266
123981
|
bodyConfig?: Maybe<StakeholderCommsBodyConfigType>;
|
|
123982
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
123267
123983
|
colours?: Maybe<StakeholderCommsColoursType>;
|
|
123268
123984
|
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
123269
123985
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -123315,6 +124031,16 @@ export declare type StakeholderCommsPageResponse = {
|
|
|
123315
124031
|
error?: Maybe<Scalars['String']['output']>;
|
|
123316
124032
|
page?: Maybe<StakeholderCommsPage>;
|
|
123317
124033
|
};
|
|
124034
|
+
export declare type StakeholderCommsPageSummary = {
|
|
124035
|
+
__typename?: 'StakeholderCommsPageSummary';
|
|
124036
|
+
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
124037
|
+
customDomain?: Maybe<Scalars['String']['output']>;
|
|
124038
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
124039
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
124040
|
+
isDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
124041
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
124042
|
+
stakeholderCount?: Maybe<Scalars['Int']['output']>;
|
|
124043
|
+
};
|
|
123318
124044
|
export declare enum StakeholderCommsPageTheme {
|
|
123319
124045
|
AllSystemsGlow = "ALL_SYSTEMS_GLOW",
|
|
123320
124046
|
Blank = "BLANK",
|
|
@@ -123331,6 +124057,11 @@ export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
|
123331
124057
|
pageId?: Maybe<Scalars['String']['output']>;
|
|
123332
124058
|
uptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
123333
124059
|
};
|
|
124060
|
+
export declare type StakeholderCommsPagesSummaryByCloudIdResponse = {
|
|
124061
|
+
__typename?: 'StakeholderCommsPagesSummaryByCloudIdResponse';
|
|
124062
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
124063
|
+
pages: Array<StakeholderCommsPageSummary>;
|
|
124064
|
+
};
|
|
123334
124065
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
123335
124066
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
123336
124067
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -123386,6 +124117,7 @@ export declare type StakeholderCommsStakeholder = {
|
|
|
123386
124117
|
__typename?: 'StakeholderCommsStakeholder';
|
|
123387
124118
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
123388
124119
|
ari?: Maybe<Scalars['String']['output']>;
|
|
124120
|
+
atlassianTeamId?: Maybe<Scalars['String']['output']>;
|
|
123389
124121
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
123390
124122
|
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
123391
124123
|
id: Scalars['ID']['output'];
|
|
@@ -123393,6 +124125,7 @@ export declare type StakeholderCommsStakeholder = {
|
|
|
123393
124125
|
name?: Maybe<Scalars['String']['output']>;
|
|
123394
124126
|
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
123395
124127
|
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
124128
|
+
stakeholderGroupId?: Maybe<Scalars['String']['output']>;
|
|
123396
124129
|
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
123397
124130
|
type?: Maybe<StakeholderCommsStakeholderType>;
|
|
123398
124131
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -123529,7 +124262,9 @@ export declare type StakeholderCommsStakeholderGroupsAndStakeholders = {
|
|
|
123529
124262
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
123530
124263
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
123531
124264
|
ari?: InputMaybe<Scalars['String']['input']>;
|
|
124265
|
+
atlassianTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
123532
124266
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
124267
|
+
stakeholderGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
123533
124268
|
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
123534
124269
|
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
123535
124270
|
};
|
|
@@ -123545,6 +124280,7 @@ export declare enum StakeholderCommsStakeholderStatus {
|
|
|
123545
124280
|
}
|
|
123546
124281
|
export declare enum StakeholderCommsStakeholderType {
|
|
123547
124282
|
External = "EXTERNAL",
|
|
124283
|
+
Group = "GROUP",
|
|
123548
124284
|
Internal = "INTERNAL",
|
|
123549
124285
|
Team = "TEAM"
|
|
123550
124286
|
}
|
|
@@ -123554,6 +124290,7 @@ export declare type StakeholderCommsUpdatePageInputType = {
|
|
|
123554
124290
|
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123555
124291
|
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123556
124292
|
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
124293
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
123557
124294
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
123558
124295
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
123559
124296
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123603,6 +124340,18 @@ export declare enum StakeholderCommsUptimeStyle {
|
|
|
123603
124340
|
DetailCard = "DETAIL_CARD",
|
|
123604
124341
|
OnlyStatus = "ONLY_STATUS"
|
|
123605
124342
|
}
|
|
124343
|
+
export declare type StakeholderCommsWorkspaceAriMapping = {
|
|
124344
|
+
__typename?: 'StakeholderCommsWorkspaceAriMapping';
|
|
124345
|
+
customDomain?: Maybe<Scalars['String']['output']>;
|
|
124346
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
124347
|
+
statuspageDomain?: Maybe<Scalars['String']['output']>;
|
|
124348
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
124349
|
+
};
|
|
124350
|
+
export declare type StakeholderCommsWorkspaceAriMappingResponse = {
|
|
124351
|
+
__typename?: 'StakeholderCommsWorkspaceAriMappingResponse';
|
|
124352
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
124353
|
+
workspaceAriMapping?: Maybe<StakeholderCommsWorkspaceAriMapping>;
|
|
124354
|
+
};
|
|
123606
124355
|
export declare type StalePagePayload = {
|
|
123607
124356
|
__typename?: 'StalePagePayload';
|
|
123608
124357
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -123733,8 +124482,10 @@ export declare type Subscription = {
|
|
|
123733
124482
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
123734
124483
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
123735
124484
|
devai_onBoysenberrySessionCreatedByIssueKeyAndCloudId?: Maybe<DevAiRovoDevSession>;
|
|
124485
|
+
devai_onBoysenberrySessionCreatedByWorkspaceAri?: Maybe<DevAiRovoDevSession>;
|
|
123736
124486
|
devai_onBoysenberrySessionCreatedOnJiraIssue?: Maybe<DevAiRovoDevSessionConnection>;
|
|
123737
124487
|
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
124488
|
+
devai_onBoysenberrySessionUpdatedByWorkspaceAri?: Maybe<DevAiRovoDevSession>;
|
|
123738
124489
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
123739
124490
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
123740
124491
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -123767,6 +124518,9 @@ export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByIssueKeyAndCl
|
|
|
123767
124518
|
cloudId: Scalars['ID']['input'];
|
|
123768
124519
|
issueKey: Scalars['String']['input'];
|
|
123769
124520
|
};
|
|
124521
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByWorkspaceAriArgs = {
|
|
124522
|
+
workspaceAri: Scalars['ID']['input'];
|
|
124523
|
+
};
|
|
123770
124524
|
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs = {
|
|
123771
124525
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123772
124526
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -123776,6 +124530,9 @@ export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs
|
|
|
123776
124530
|
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
123777
124531
|
sessionAri: Scalars['ID']['input'];
|
|
123778
124532
|
};
|
|
124533
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedByWorkspaceAriArgs = {
|
|
124534
|
+
workspaceAri: Scalars['ID']['input'];
|
|
124535
|
+
};
|
|
123779
124536
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
123780
124537
|
cloudId: Scalars['ID']['input'];
|
|
123781
124538
|
jobId: Scalars['ID']['input'];
|
|
@@ -123842,6 +124599,7 @@ export declare type SupportRequest = {
|
|
|
123842
124599
|
lastComment: SupportRequestComments;
|
|
123843
124600
|
migrationPhase?: Maybe<Scalars['String']['output']>;
|
|
123844
124601
|
migrationProducts?: Maybe<Scalars['String']['output']>;
|
|
124602
|
+
orgParticipants?: Maybe<Array<SupportRequestOrganization>>;
|
|
123845
124603
|
participants: Array<SupportRequestUser>;
|
|
123846
124604
|
planToMigrate?: Maybe<Scalars['String']['output']>;
|
|
123847
124605
|
projectName: Scalars['String']['output'];
|
|
@@ -124598,6 +125356,7 @@ export declare type TeamV2 = Node & {
|
|
|
124598
125356
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
124599
125357
|
hierarchy?: Maybe<TeamHierarchy>;
|
|
124600
125358
|
id: Scalars['ID']['output'];
|
|
125359
|
+
isCurrentUserMemberOfTeam?: Maybe<Scalars['Boolean']['output']>;
|
|
124601
125360
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
124602
125361
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
124603
125362
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -124733,6 +125492,7 @@ export declare type TenantContextActivationId = {
|
|
|
124733
125492
|
__typename?: 'TenantContextActivationId';
|
|
124734
125493
|
active?: Maybe<Scalars['String']['output']>;
|
|
124735
125494
|
product?: Maybe<Scalars['String']['output']>;
|
|
125495
|
+
targetRegion?: Maybe<Scalars['String']['output']>;
|
|
124736
125496
|
};
|
|
124737
125497
|
export declare type TenantContextCustomDomain = {
|
|
124738
125498
|
__typename?: 'TenantContextCustomDomain';
|
|
@@ -125424,6 +126184,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
125424
126184
|
description?: Maybe<Scalars['String']['output']>;
|
|
125425
126185
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
125426
126186
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
126187
|
+
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
125427
126188
|
goalType?: Maybe<TownsquareGoalType>;
|
|
125428
126189
|
icon?: Maybe<TownsquareGoalIcon>;
|
|
125429
126190
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
@@ -125458,6 +126219,10 @@ export declare type TownsquareGoalCommentsArgs = {
|
|
|
125458
126219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125459
126220
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
125460
126221
|
};
|
|
126222
|
+
export declare type TownsquareGoalFocusAreasArgs = {
|
|
126223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126225
|
+
};
|
|
125461
126226
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
125462
126227
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125463
126228
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -126017,6 +126782,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
126017
126782
|
description?: Maybe<TownsquareProjectDescription>;
|
|
126018
126783
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
126019
126784
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
126785
|
+
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
126020
126786
|
fusion?: Maybe<TownsquareFusionDetails>;
|
|
126021
126787
|
goals?: Maybe<TownsquareGoalConnection>;
|
|
126022
126788
|
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
@@ -126080,6 +126846,10 @@ export declare type TownsquareProjectDependenciesArgs = {
|
|
|
126080
126846
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126081
126847
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126082
126848
|
};
|
|
126849
|
+
export declare type TownsquareProjectFocusAreasArgs = {
|
|
126850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126852
|
+
};
|
|
126083
126853
|
export declare type TownsquareProjectGoalsArgs = {
|
|
126084
126854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126085
126855
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -126977,6 +127747,7 @@ export declare type TrelloAction = {
|
|
|
126977
127747
|
id: Scalars['ID']['output'];
|
|
126978
127748
|
limits?: Maybe<TrelloActionLimits>;
|
|
126979
127749
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127750
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
126980
127751
|
type?: Maybe<Scalars['String']['output']>;
|
|
126981
127752
|
};
|
|
126982
127753
|
export declare type TrelloActionAttachmentEntity = {
|
|
@@ -127106,6 +127877,7 @@ export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardA
|
|
|
127106
127877
|
id: Scalars['ID']['output'];
|
|
127107
127878
|
limits?: Maybe<TrelloActionLimits>;
|
|
127108
127879
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127880
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
127109
127881
|
type?: Maybe<Scalars['String']['output']>;
|
|
127110
127882
|
};
|
|
127111
127883
|
export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
@@ -127139,6 +127911,7 @@ export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardAc
|
|
|
127139
127911
|
id: Scalars['ID']['output'];
|
|
127140
127912
|
limits?: Maybe<TrelloActionLimits>;
|
|
127141
127913
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127914
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
127142
127915
|
type?: Maybe<Scalars['String']['output']>;
|
|
127143
127916
|
};
|
|
127144
127917
|
export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
@@ -127164,6 +127937,7 @@ export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActio
|
|
|
127164
127937
|
limits?: Maybe<TrelloActionLimits>;
|
|
127165
127938
|
member?: Maybe<TrelloMember>;
|
|
127166
127939
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127940
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
127167
127941
|
type?: Maybe<Scalars['String']['output']>;
|
|
127168
127942
|
};
|
|
127169
127943
|
export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
@@ -128233,6 +129007,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
128233
129007
|
id: Scalars['ID']['output'];
|
|
128234
129008
|
limits?: Maybe<TrelloActionLimits>;
|
|
128235
129009
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129010
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128236
129011
|
type?: Maybe<Scalars['String']['output']>;
|
|
128237
129012
|
};
|
|
128238
129013
|
export declare type TrelloCommentCardActionDisplayEntities = {
|
|
@@ -128262,6 +129037,7 @@ export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData &
|
|
|
128262
129037
|
limits?: Maybe<TrelloActionLimits>;
|
|
128263
129038
|
list?: Maybe<TrelloList>;
|
|
128264
129039
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129040
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128265
129041
|
type?: Maybe<Scalars['String']['output']>;
|
|
128266
129042
|
};
|
|
128267
129043
|
export declare type TrelloCopyCardActionDisplayEntities = {
|
|
@@ -128283,6 +129059,7 @@ export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActio
|
|
|
128283
129059
|
id: Scalars['ID']['output'];
|
|
128284
129060
|
limits?: Maybe<TrelloActionLimits>;
|
|
128285
129061
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129062
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128286
129063
|
sourceCard?: Maybe<TrelloCopiedCardSource>;
|
|
128287
129064
|
type?: Maybe<Scalars['String']['output']>;
|
|
128288
129065
|
};
|
|
@@ -128307,6 +129084,7 @@ export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionD
|
|
|
128307
129084
|
limits?: Maybe<TrelloActionLimits>;
|
|
128308
129085
|
list?: Maybe<TrelloList>;
|
|
128309
129086
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129087
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128310
129088
|
type?: Maybe<Scalars['String']['output']>;
|
|
128311
129089
|
};
|
|
128312
129090
|
export declare type TrelloCopyInboxCardActionDisplayEntities = {
|
|
@@ -128343,6 +129121,7 @@ export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData
|
|
|
128343
129121
|
id: Scalars['ID']['output'];
|
|
128344
129122
|
limits?: Maybe<TrelloActionLimits>;
|
|
128345
129123
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129124
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128346
129125
|
type?: Maybe<Scalars['String']['output']>;
|
|
128347
129126
|
};
|
|
128348
129127
|
export declare type TrelloCreateCardActionDisplayEntities = {
|
|
@@ -128366,6 +129145,7 @@ export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloC
|
|
|
128366
129145
|
limits?: Maybe<TrelloActionLimits>;
|
|
128367
129146
|
list?: Maybe<TrelloList>;
|
|
128368
129147
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129148
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128369
129149
|
type?: Maybe<Scalars['String']['output']>;
|
|
128370
129150
|
};
|
|
128371
129151
|
export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
@@ -128387,6 +129167,7 @@ export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardA
|
|
|
128387
129167
|
id: Scalars['ID']['output'];
|
|
128388
129168
|
limits?: Maybe<TrelloActionLimits>;
|
|
128389
129169
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129170
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128390
129171
|
type?: Maybe<Scalars['String']['output']>;
|
|
128391
129172
|
};
|
|
128392
129173
|
export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
@@ -128422,6 +129203,7 @@ export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActio
|
|
|
128422
129203
|
id: Scalars['ID']['output'];
|
|
128423
129204
|
limits?: Maybe<TrelloActionLimits>;
|
|
128424
129205
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129206
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128425
129207
|
type?: Maybe<Scalars['String']['output']>;
|
|
128426
129208
|
};
|
|
128427
129209
|
export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
@@ -128597,6 +129379,7 @@ export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & Trello
|
|
|
128597
129379
|
id: Scalars['ID']['output'];
|
|
128598
129380
|
limits?: Maybe<TrelloActionLimits>;
|
|
128599
129381
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129382
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128600
129383
|
type?: Maybe<Scalars['String']['output']>;
|
|
128601
129384
|
};
|
|
128602
129385
|
export declare type TrelloDeleteAttachmentFromCardActionDisplayEntities = {
|
|
@@ -129037,6 +129820,18 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
129037
129820
|
membershipType?: InputMaybe<TrelloWorkspaceMembershipType>;
|
|
129038
129821
|
tier?: InputMaybe<TrelloWorkspaceTier>;
|
|
129039
129822
|
};
|
|
129823
|
+
export declare type TrelloMergeCardsInput = {
|
|
129824
|
+
cardIds: Array<Scalars['ID']['input']>;
|
|
129825
|
+
targetBoardId: Scalars['ID']['input'];
|
|
129826
|
+
targetListId: Scalars['ID']['input'];
|
|
129827
|
+
};
|
|
129828
|
+
export declare type TrelloMergeCardsPayload = Payload & {
|
|
129829
|
+
__typename?: 'TrelloMergeCardsPayload';
|
|
129830
|
+
archivedCardIds: Array<Scalars['ID']['output']>;
|
|
129831
|
+
card?: Maybe<TrelloCard>;
|
|
129832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129833
|
+
success: Scalars['Boolean']['output'];
|
|
129834
|
+
};
|
|
129040
129835
|
export declare type TrelloMirrorCard = {
|
|
129041
129836
|
__typename?: 'TrelloMirrorCard';
|
|
129042
129837
|
id: Scalars['ID']['output'];
|
|
@@ -129068,6 +129863,7 @@ export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData &
|
|
|
129068
129863
|
listAfter?: Maybe<TrelloList>;
|
|
129069
129864
|
listBefore?: Maybe<TrelloList>;
|
|
129070
129865
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129866
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129071
129867
|
type?: Maybe<Scalars['String']['output']>;
|
|
129072
129868
|
};
|
|
129073
129869
|
export declare type TrelloMoveCardActionDisplayEntities = {
|
|
@@ -129095,6 +129891,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
129095
129891
|
id: Scalars['ID']['output'];
|
|
129096
129892
|
limits?: Maybe<TrelloActionLimits>;
|
|
129097
129893
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129894
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129098
129895
|
type?: Maybe<Scalars['String']['output']>;
|
|
129099
129896
|
};
|
|
129100
129897
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
@@ -129109,6 +129906,7 @@ export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCard
|
|
|
129109
129906
|
id: Scalars['ID']['output'];
|
|
129110
129907
|
limits?: Maybe<TrelloActionLimits>;
|
|
129111
129908
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129909
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129112
129910
|
type?: Maybe<Scalars['String']['output']>;
|
|
129113
129911
|
};
|
|
129114
129912
|
export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
@@ -129133,6 +129931,7 @@ export declare type TrelloMutationApi = {
|
|
|
129133
129931
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
129134
129932
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
129135
129933
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
129934
|
+
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
129136
129935
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
129137
129936
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
129138
129937
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -129204,6 +130003,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
|
129204
130003
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
129205
130004
|
input: TrelloEditPlannerCalendarEventInput;
|
|
129206
130005
|
};
|
|
130006
|
+
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
130007
|
+
input: TrelloMergeCardsInput;
|
|
130008
|
+
};
|
|
129207
130009
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
129208
130010
|
input: TrelloPinCardInput;
|
|
129209
130011
|
};
|
|
@@ -129283,9 +130085,9 @@ export declare type TrelloOAuth2Client = {
|
|
|
129283
130085
|
__typename?: 'TrelloOAuth2Client';
|
|
129284
130086
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
129285
130087
|
clientId: Scalars['String']['output'];
|
|
129286
|
-
clientSecret
|
|
129287
|
-
clientType
|
|
129288
|
-
profile
|
|
130088
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
130089
|
+
clientType?: Maybe<Scalars['String']['output']>;
|
|
130090
|
+
profile?: Maybe<Scalars['String']['output']>;
|
|
129289
130091
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
129290
130092
|
};
|
|
129291
130093
|
export declare type TrelloOAuth2Scope = {
|
|
@@ -129909,6 +130711,10 @@ export declare type TrelloReaction = {
|
|
|
129909
130711
|
member?: Maybe<TrelloMember>;
|
|
129910
130712
|
objectId: Scalars['ID']['output'];
|
|
129911
130713
|
};
|
|
130714
|
+
export declare type TrelloReactionDeleted = {
|
|
130715
|
+
__typename?: 'TrelloReactionDeleted';
|
|
130716
|
+
objectId: Scalars['ID']['output'];
|
|
130717
|
+
};
|
|
129912
130718
|
export declare type TrelloReactionLimits = {
|
|
129913
130719
|
__typename?: 'TrelloReactionLimits';
|
|
129914
130720
|
perAction?: Maybe<TrelloLimitProps>;
|
|
@@ -129947,6 +130753,7 @@ export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloC
|
|
|
129947
130753
|
id: Scalars['ID']['output'];
|
|
129948
130754
|
limits?: Maybe<TrelloActionLimits>;
|
|
129949
130755
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130756
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129950
130757
|
type?: Maybe<Scalars['String']['output']>;
|
|
129951
130758
|
};
|
|
129952
130759
|
export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
|
|
@@ -129968,6 +130775,7 @@ export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCard
|
|
|
129968
130775
|
limits?: Maybe<TrelloActionLimits>;
|
|
129969
130776
|
member?: Maybe<TrelloMember>;
|
|
129970
130777
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130778
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129971
130779
|
type?: Maybe<Scalars['String']['output']>;
|
|
129972
130780
|
};
|
|
129973
130781
|
export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
@@ -130244,6 +131052,7 @@ export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActi
|
|
|
130244
131052
|
id: Scalars['ID']['output'];
|
|
130245
131053
|
limits?: Maybe<TrelloActionLimits>;
|
|
130246
131054
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131055
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130247
131056
|
type?: Maybe<Scalars['String']['output']>;
|
|
130248
131057
|
};
|
|
130249
131058
|
export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
@@ -130263,6 +131072,7 @@ export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardAc
|
|
|
130263
131072
|
id: Scalars['ID']['output'];
|
|
130264
131073
|
limits?: Maybe<TrelloActionLimits>;
|
|
130265
131074
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131075
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130266
131076
|
type?: Maybe<Scalars['String']['output']>;
|
|
130267
131077
|
};
|
|
130268
131078
|
export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
|
|
@@ -130282,6 +131092,7 @@ export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionD
|
|
|
130282
131092
|
id: Scalars['ID']['output'];
|
|
130283
131093
|
limits?: Maybe<TrelloActionLimits>;
|
|
130284
131094
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131095
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130285
131096
|
type?: Maybe<Scalars['String']['output']>;
|
|
130286
131097
|
};
|
|
130287
131098
|
export declare type TrelloUpdateCardDueActionDisplayEntities = {
|
|
@@ -130322,6 +131133,7 @@ export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & Trello
|
|
|
130322
131133
|
id: Scalars['ID']['output'];
|
|
130323
131134
|
limits?: Maybe<TrelloActionLimits>;
|
|
130324
131135
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131136
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130325
131137
|
type?: Maybe<Scalars['String']['output']>;
|
|
130326
131138
|
};
|
|
130327
131139
|
export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
|
|
@@ -130343,6 +131155,7 @@ export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & Trel
|
|
|
130343
131155
|
id: Scalars['ID']['output'];
|
|
130344
131156
|
limits?: Maybe<TrelloActionLimits>;
|
|
130345
131157
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131158
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130346
131159
|
type?: Maybe<Scalars['String']['output']>;
|
|
130347
131160
|
};
|
|
130348
131161
|
export declare type TrelloUpdateCheckItemStateOnCardActionDisplayEntities = {
|
|
@@ -130365,6 +131178,7 @@ export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCar
|
|
|
130365
131178
|
id: Scalars['ID']['output'];
|
|
130366
131179
|
limits?: Maybe<TrelloActionLimits>;
|
|
130367
131180
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131181
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130368
131182
|
type?: Maybe<Scalars['String']['output']>;
|
|
130369
131183
|
};
|
|
130370
131184
|
export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
@@ -133964,6 +134778,7 @@ export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs =
|
|
|
133964
134778
|
export declare type WorkSuggestionsByVersionResponse = {
|
|
133965
134779
|
__typename?: 'WorkSuggestionsByVersionResponse';
|
|
133966
134780
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
134781
|
+
issueCandidateSuggestions?: Maybe<Array<WorkSuggestionsVersionIssueCandidateTask>>;
|
|
133967
134782
|
issueMissingDetailsSuggestions?: Maybe<Array<WorkSuggestionsIssueMissingDetailsTask>>;
|
|
133968
134783
|
};
|
|
133969
134784
|
export declare type WorkSuggestionsCommon = {
|
|
@@ -134371,6 +135186,37 @@ export declare type WorkSuggestionsUserProfile = {
|
|
|
134371
135186
|
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
134372
135187
|
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
134373
135188
|
};
|
|
135189
|
+
export declare enum WorkSuggestionsVersionCandidateIncludeReason {
|
|
135190
|
+
IssueIsBlocked = "ISSUE_IS_BLOCKED",
|
|
135191
|
+
IssueIsBlocking = "ISSUE_IS_BLOCKING",
|
|
135192
|
+
IssueIsSibling = "ISSUE_IS_SIBLING",
|
|
135193
|
+
Unknown = "UNKNOWN"
|
|
135194
|
+
}
|
|
135195
|
+
export declare type WorkSuggestionsVersionIssueCandidateTask = WorkSuggestionsVersionTask & {
|
|
135196
|
+
__typename?: 'WorkSuggestionsVersionIssueCandidateTask';
|
|
135197
|
+
id: Scalars['String']['output'];
|
|
135198
|
+
includeReason?: Maybe<WorkSuggestionsVersionCandidateIncludeReason>;
|
|
135199
|
+
issueId: Scalars['String']['output'];
|
|
135200
|
+
issueKey: Scalars['String']['output'];
|
|
135201
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
135202
|
+
parentIssues?: Maybe<Array<WorkSuggestionsVersionRelatedIssue>>;
|
|
135203
|
+
relatedIssuesInVersion?: Maybe<Array<WorkSuggestionsVersionRelatedIssue>>;
|
|
135204
|
+
title: Scalars['String']['output'];
|
|
135205
|
+
url: Scalars['String']['output'];
|
|
135206
|
+
};
|
|
135207
|
+
export declare type WorkSuggestionsVersionRelatedIssue = {
|
|
135208
|
+
__typename?: 'WorkSuggestionsVersionRelatedIssue';
|
|
135209
|
+
issueId: Scalars['String']['output'];
|
|
135210
|
+
issueKey: Scalars['String']['output'];
|
|
135211
|
+
title: Scalars['String']['output'];
|
|
135212
|
+
url: Scalars['String']['output'];
|
|
135213
|
+
};
|
|
135214
|
+
export declare type WorkSuggestionsVersionTask = {
|
|
135215
|
+
id: Scalars['String']['output'];
|
|
135216
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
135217
|
+
title: Scalars['String']['output'];
|
|
135218
|
+
url: Scalars['String']['output'];
|
|
135219
|
+
};
|
|
134374
135220
|
export declare enum WorkSuggestionsVulnerabilityStatus {
|
|
134375
135221
|
Closed = "CLOSED",
|
|
134376
135222
|
Ignored = "IGNORED",
|