@forge/cli-shared 8.7.0-next.2 → 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 +27 -0
- package/out/graphql/graphql-types.d.ts +1111 -75
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +82 -28
- 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>>;
|
|
@@ -751,6 +795,7 @@ export declare type ActionsAction = {
|
|
|
751
795
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
752
796
|
icon?: Maybe<Scalars['String']['output']>;
|
|
753
797
|
id?: Maybe<Scalars['String']['output']>;
|
|
798
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
754
799
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
755
800
|
isConsequential: Scalars['Boolean']['output'];
|
|
756
801
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -1880,15 +1925,16 @@ export declare type AdminSearchGroupInput = {
|
|
|
1880
1925
|
export declare type AdminSearchUserInput = {
|
|
1881
1926
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1882
1927
|
accountStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1883
|
-
claimStatus?: InputMaybe<
|
|
1928
|
+
claimStatus?: InputMaybe<Scalars['String']['input']>;
|
|
1884
1929
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1930
|
+
emailDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1885
1931
|
groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1886
1932
|
membershipStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1887
|
-
orgId: Scalars['String']['input'];
|
|
1888
1933
|
resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1889
1934
|
roleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1890
1935
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
1891
1936
|
sortBy?: InputMaybe<Array<AdminSortBy>>;
|
|
1937
|
+
status?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1892
1938
|
};
|
|
1893
1939
|
export declare type AdminSearchWorkspacesInput = {
|
|
1894
1940
|
attributes?: InputMaybe<AdminSearchWorkspacesInputAttributes>;
|
|
@@ -2031,6 +2077,7 @@ export declare type AdminUsageInfo = {
|
|
|
2031
2077
|
};
|
|
2032
2078
|
export declare type AdminUser = {
|
|
2033
2079
|
__typename?: 'AdminUser';
|
|
2080
|
+
accountStatus: Scalars['String']['output'];
|
|
2034
2081
|
addedAt?: Maybe<Scalars['String']['output']>;
|
|
2035
2082
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
2036
2083
|
claimStatus: Scalars['String']['output'];
|
|
@@ -2042,7 +2089,9 @@ export declare type AdminUser = {
|
|
|
2042
2089
|
location?: Maybe<Scalars['String']['output']>;
|
|
2043
2090
|
membershipStatus?: Maybe<Scalars['String']['output']>;
|
|
2044
2091
|
name: Scalars['String']['output'];
|
|
2092
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
2045
2093
|
resourceCounts?: Maybe<AdminResourceCounts>;
|
|
2094
|
+
roles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2046
2095
|
status: Scalars['String']['output'];
|
|
2047
2096
|
title?: Maybe<Scalars['String']['output']>;
|
|
2048
2097
|
verified: Scalars['Boolean']['output'];
|
|
@@ -2099,7 +2148,7 @@ export declare type AdminWorkspace = {
|
|
|
2099
2148
|
status: Scalars['String']['output'];
|
|
2100
2149
|
statusDetails?: Maybe<Array<Scalars['String']['output']>>;
|
|
2101
2150
|
type: Scalars['String']['output'];
|
|
2102
|
-
url
|
|
2151
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
2103
2152
|
vendor?: Maybe<AdminVendor>;
|
|
2104
2153
|
};
|
|
2105
2154
|
export declare type AdminWorkspaceConnection = {
|
|
@@ -2272,6 +2321,7 @@ export declare type AgentStudioAgentPermissions = {
|
|
|
2272
2321
|
canDelete: Scalars['Boolean']['output'];
|
|
2273
2322
|
canEdit: Scalars['Boolean']['output'];
|
|
2274
2323
|
canManage: Scalars['Boolean']['output'];
|
|
2324
|
+
canTransferOwnership: Scalars['Boolean']['output'];
|
|
2275
2325
|
};
|
|
2276
2326
|
export declare type AgentStudioAgentQueryInput = {
|
|
2277
2327
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2333,7 +2383,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2333
2383
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2334
2384
|
};
|
|
2335
2385
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
2336
|
-
|
|
2386
|
+
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
2337
2387
|
};
|
|
2338
2388
|
export declare type AgentStudioChannel = {
|
|
2339
2389
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2790,6 +2840,14 @@ export declare type AgentStudioWidget = {
|
|
|
2790
2840
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2791
2841
|
};
|
|
2792
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;
|
|
2793
2851
|
export declare enum AiCoreApiQuestionType {
|
|
2794
2852
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
2795
2853
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -3158,6 +3216,28 @@ export declare enum AppContributorRole {
|
|
|
3158
3216
|
Viewer = "VIEWER",
|
|
3159
3217
|
ViewerAdvanced = "VIEWER_ADVANCED"
|
|
3160
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
|
+
};
|
|
3161
3241
|
export declare type AppDeployment = {
|
|
3162
3242
|
__typename?: 'AppDeployment';
|
|
3163
3243
|
appId: Scalars['ID']['output'];
|
|
@@ -4496,6 +4576,73 @@ export declare type AssetsDmDataSource = {
|
|
|
4496
4576
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
4497
4577
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
4498
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
|
+
};
|
|
4499
4646
|
export declare type AssetsDmDataSourceCleansingReason = {
|
|
4500
4647
|
__typename?: 'AssetsDMDataSourceCleansingReason';
|
|
4501
4648
|
reason: Scalars['String']['output'];
|
|
@@ -4601,6 +4748,11 @@ export declare type AssetsDmDataSourceCleansingRulesResponse = {
|
|
|
4601
4748
|
defaultCleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRuleDefFunction>>;
|
|
4602
4749
|
reasons?: Maybe<Array<AssetsDmDataSourceCleansingReason>>;
|
|
4603
4750
|
};
|
|
4751
|
+
export declare type AssetsDmDataSourceCleansingRulesRunCleanseResponse = {
|
|
4752
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesRunCleanseResponse';
|
|
4753
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4754
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4755
|
+
};
|
|
4604
4756
|
export declare type AssetsDmDataSourceConfig = {
|
|
4605
4757
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
4606
4758
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
@@ -4849,6 +5001,32 @@ export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
|
4849
5001
|
success: Scalars['Boolean']['output'];
|
|
4850
5002
|
token?: Maybe<Scalars['String']['output']>;
|
|
4851
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
|
+
};
|
|
4852
5030
|
export declare type AssetsDmMappedColumn = {
|
|
4853
5031
|
__typename?: 'AssetsDMMappedColumn';
|
|
4854
5032
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -4898,6 +5076,15 @@ export declare type AssetsDmObjectTag = {
|
|
|
4898
5076
|
tagCode: Scalars['Int']['output'];
|
|
4899
5077
|
tagId: Scalars['ID']['output'];
|
|
4900
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
|
+
};
|
|
4901
5088
|
export declare type AssetsDmObjectTagCreateInput = {
|
|
4902
5089
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4903
5090
|
name: Scalars['String']['input'];
|
|
@@ -4913,6 +5100,15 @@ export declare type AssetsDmObjectTagDeleteResponse = {
|
|
|
4913
5100
|
isSuccessful: Scalars['Boolean']['output'];
|
|
4914
5101
|
message: Scalars['String']['output'];
|
|
4915
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
|
+
};
|
|
4916
5112
|
export declare type AssetsDmObjectTagEditInput = {
|
|
4917
5113
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4918
5114
|
name: Scalars['String']['input'];
|
|
@@ -6342,6 +6538,18 @@ export declare type CcpChargeElement = CommerceChargeElement & {
|
|
|
6342
6538
|
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
6343
6539
|
unit?: Maybe<Scalars['String']['output']>;
|
|
6344
6540
|
};
|
|
6541
|
+
export declare type CcpChargeElementLatestAllowancesInput = {
|
|
6542
|
+
entityId?: InputMaybe<Scalars['String']['input']>;
|
|
6543
|
+
entityType: CcpLatestAllowancesEntityType;
|
|
6544
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
6545
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
6546
|
+
usageKey: Scalars['String']['input'];
|
|
6547
|
+
};
|
|
6548
|
+
export declare type CcpChargeElementLatestAllowancesResult = {
|
|
6549
|
+
__typename?: 'CcpChargeElementLatestAllowancesResult';
|
|
6550
|
+
metadata?: Maybe<CcpLatestAllowancesMetadata>;
|
|
6551
|
+
values?: Maybe<Array<Maybe<CcpLatestAllowancesBucket>>>;
|
|
6552
|
+
};
|
|
6345
6553
|
export declare type CcpChargeQuantity = CommerceChargeQuantity & {
|
|
6346
6554
|
__typename?: 'CcpChargeQuantity';
|
|
6347
6555
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -6543,6 +6751,7 @@ export declare type CcpDeveloperLicense = CcpBaseLicense & {
|
|
|
6543
6751
|
unitType?: Maybe<Scalars['String']['output']>;
|
|
6544
6752
|
version?: Maybe<Scalars['Float']['output']>;
|
|
6545
6753
|
};
|
|
6754
|
+
export declare type CcpDeveloperLicenseResult = CcpDeveloperLicense | CcpLicenseError;
|
|
6546
6755
|
export declare enum CcpDuration {
|
|
6547
6756
|
Forever = "FOREVER",
|
|
6548
6757
|
Once = "ONCE",
|
|
@@ -6561,12 +6770,14 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
6561
6770
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
6562
6771
|
__typename?: 'CcpEntitlement';
|
|
6563
6772
|
changeReason?: Maybe<Scalars['String']['output']>;
|
|
6773
|
+
chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
|
|
6564
6774
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
6565
6775
|
context?: Maybe<CcpContext>;
|
|
6566
6776
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
6567
6777
|
defaultOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
6568
6778
|
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
6569
6779
|
developerLicense?: Maybe<CcpDeveloperLicense>;
|
|
6780
|
+
developerLicenseV2?: Maybe<CcpDeveloperLicenseResult>;
|
|
6570
6781
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
6571
6782
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
6572
6783
|
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
@@ -6578,6 +6789,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
6578
6789
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
6579
6790
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
6580
6791
|
license?: Maybe<CcpLicense>;
|
|
6792
|
+
licenseV2?: Maybe<CcpLicenseResult>;
|
|
6581
6793
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
6582
6794
|
meteredChargeElementUsageAggregated?: Maybe<CcpUsageQueryResult>;
|
|
6583
6795
|
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6597,6 +6809,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
6597
6809
|
usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
|
|
6598
6810
|
version?: Maybe<Scalars['Int']['output']>;
|
|
6599
6811
|
};
|
|
6812
|
+
export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
|
|
6813
|
+
input: CcpChargeElementLatestAllowancesInput;
|
|
6814
|
+
};
|
|
6600
6815
|
export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
6601
6816
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6602
6817
|
};
|
|
@@ -6799,6 +7014,34 @@ export declare type CcpInvoiceRequestItemSubscriptionObj = {
|
|
|
6799
7014
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6800
7015
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
6801
7016
|
};
|
|
7017
|
+
export declare enum CcpLatestAllowanceEnforcementModeType {
|
|
7018
|
+
Block = "BLOCK",
|
|
7019
|
+
LimitedOverage = "LIMITED_OVERAGE",
|
|
7020
|
+
Overage = "OVERAGE"
|
|
7021
|
+
}
|
|
7022
|
+
export declare type CcpLatestAllowancesBucket = {
|
|
7023
|
+
__typename?: 'CcpLatestAllowancesBucket';
|
|
7024
|
+
balance?: Maybe<Scalars['Float']['output']>;
|
|
7025
|
+
ceiling?: Maybe<Scalars['Float']['output']>;
|
|
7026
|
+
contextAri?: Maybe<Scalars['String']['output']>;
|
|
7027
|
+
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
7028
|
+
entityAri?: Maybe<Scalars['String']['output']>;
|
|
7029
|
+
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
7030
|
+
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
7031
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
7032
|
+
};
|
|
7033
|
+
export declare enum CcpLatestAllowancesEntityType {
|
|
7034
|
+
Cloud = "CLOUD",
|
|
7035
|
+
Entitlement = "ENTITLEMENT",
|
|
7036
|
+
Organization = "ORGANIZATION",
|
|
7037
|
+
User = "USER"
|
|
7038
|
+
}
|
|
7039
|
+
export declare type CcpLatestAllowancesMetadata = {
|
|
7040
|
+
__typename?: 'CcpLatestAllowancesMetadata';
|
|
7041
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
7042
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
7043
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7044
|
+
};
|
|
6802
7045
|
export declare type CcpLicense = CcpBaseLicense & {
|
|
6803
7046
|
__typename?: 'CcpLicense';
|
|
6804
7047
|
billToPartyName?: Maybe<Scalars['String']['output']>;
|
|
@@ -6823,6 +7066,19 @@ export declare type CcpLicense = CcpBaseLicense & {
|
|
|
6823
7066
|
updatedByEmail?: Maybe<Scalars['String']['output']>;
|
|
6824
7067
|
version?: Maybe<Scalars['Float']['output']>;
|
|
6825
7068
|
};
|
|
7069
|
+
export declare type CcpLicenseError = {
|
|
7070
|
+
__typename?: 'CcpLicenseError';
|
|
7071
|
+
code?: Maybe<CcpLicenseErrorCode>;
|
|
7072
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
7073
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
7074
|
+
};
|
|
7075
|
+
export declare enum CcpLicenseErrorCode {
|
|
7076
|
+
ActiveLicenseNotFound = "ACTIVE_LICENSE_NOT_FOUND",
|
|
7077
|
+
InternalError = "INTERNAL_ERROR",
|
|
7078
|
+
LicenseNotFound = "LICENSE_NOT_FOUND",
|
|
7079
|
+
ServerIdMissing = "SERVER_ID_MISSING"
|
|
7080
|
+
}
|
|
7081
|
+
export declare type CcpLicenseResult = CcpLicense | CcpLicenseError;
|
|
6826
7082
|
export declare type CcpListPriceEstimate = {
|
|
6827
7083
|
__typename?: 'CcpListPriceEstimate';
|
|
6828
7084
|
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6886,6 +7142,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
6886
7142
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
6887
7143
|
entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
|
|
6888
7144
|
expiryDate?: Maybe<Scalars['Float']['output']>;
|
|
7145
|
+
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
6889
7146
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
6890
7147
|
id: Scalars['ID']['output'];
|
|
6891
7148
|
key?: Maybe<Scalars['ID']['output']>;
|
|
@@ -6913,6 +7170,9 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
6913
7170
|
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
6914
7171
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6915
7172
|
};
|
|
7173
|
+
export declare type CcpOfferingExtensionsArgs = {
|
|
7174
|
+
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
7175
|
+
};
|
|
6916
7176
|
export declare type CcpOfferingOfferingRelationshipsArgs = {
|
|
6917
7177
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6918
7178
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8205,6 +8465,7 @@ export declare type ChannelPlatformConnectDetails = {
|
|
|
8205
8465
|
__typename?: 'ChannelPlatformConnectDetails';
|
|
8206
8466
|
instanceCcpUrl?: Maybe<Scalars['String']['output']>;
|
|
8207
8467
|
region?: Maybe<Scalars['String']['output']>;
|
|
8468
|
+
ssoLoginUrl?: Maybe<Scalars['String']['output']>;
|
|
8208
8469
|
};
|
|
8209
8470
|
export declare type ChannelPlatformConnectQueue = {
|
|
8210
8471
|
__typename?: 'ChannelPlatformConnectQueue';
|
|
@@ -8244,6 +8505,9 @@ export declare type ChannelPlatformEventRelayRequest = {
|
|
|
8244
8505
|
};
|
|
8245
8506
|
export declare enum ChannelPlatformEventType {
|
|
8246
8507
|
AgentInitialMessage = "AGENT_INITIAL_MESSAGE",
|
|
8508
|
+
ConferenceEnded = "CONFERENCE_ENDED",
|
|
8509
|
+
ConferenceInitiated = "CONFERENCE_INITIATED",
|
|
8510
|
+
ConferenceResponse = "CONFERENCE_RESPONSE",
|
|
8247
8511
|
CustomChatClosed = "CUSTOM_CHAT_CLOSED",
|
|
8248
8512
|
Initiated = "INITIATED"
|
|
8249
8513
|
}
|
|
@@ -8450,6 +8714,7 @@ export declare type ClassificationLevelDetails = {
|
|
|
8450
8714
|
__typename?: 'ClassificationLevelDetails';
|
|
8451
8715
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
8452
8716
|
classificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
8717
|
+
featureEnabled: Scalars['Boolean']['output'];
|
|
8453
8718
|
source?: Maybe<ClassificationLevelSource>;
|
|
8454
8719
|
};
|
|
8455
8720
|
export declare enum ClassificationLevelSource {
|
|
@@ -14479,6 +14744,12 @@ export declare type ConfluenceCalendarEventTypeReminder = {
|
|
|
14479
14744
|
isCustomEventType: Scalars['Boolean']['output'];
|
|
14480
14745
|
periodInMins: Scalars['Int']['output'];
|
|
14481
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
|
+
};
|
|
14482
14753
|
export declare type ConfluenceCalendarJiraDateField = {
|
|
14483
14754
|
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
14484
14755
|
isCustomField: Scalars['Boolean']['output'];
|
|
@@ -14973,6 +15244,21 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
14973
15244
|
errors?: Maybe<Array<MutationError>>;
|
|
14974
15245
|
success: Scalars['Boolean']['output'];
|
|
14975
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
|
+
};
|
|
14976
15262
|
export declare type ConfluenceCreateCommentOnAnswerInput = {
|
|
14977
15263
|
answerId: Scalars['ID']['input'];
|
|
14978
15264
|
body: ConfluenceContentBodyInput;
|
|
@@ -15088,11 +15374,15 @@ export declare type ConfluenceCreateQuestionPayload = Payload & {
|
|
|
15088
15374
|
success: Scalars['Boolean']['output'];
|
|
15089
15375
|
};
|
|
15090
15376
|
export declare type ConfluenceCreateSpaceContent = {
|
|
15091
|
-
|
|
15377
|
+
parent?: InputMaybe<ConfluenceCreateSpaceContentParent>;
|
|
15092
15378
|
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
15093
15379
|
title: Scalars['String']['input'];
|
|
15094
15380
|
type: ConfluenceCreateSpaceContentType;
|
|
15095
15381
|
};
|
|
15382
|
+
export declare type ConfluenceCreateSpaceContentParent = {
|
|
15383
|
+
title: Scalars['String']['input'];
|
|
15384
|
+
type: ConfluenceCreateSpaceContentType;
|
|
15385
|
+
};
|
|
15096
15386
|
export declare enum ConfluenceCreateSpaceContentType {
|
|
15097
15387
|
Folder = "FOLDER",
|
|
15098
15388
|
Page = "PAGE"
|
|
@@ -15174,7 +15464,7 @@ export declare type ConfluenceCustomContentPermissionGroupPrincipal = Confluence
|
|
|
15174
15464
|
__typename?: 'ConfluenceCustomContentPermissionGroupPrincipal';
|
|
15175
15465
|
displayName: Scalars['String']['output'];
|
|
15176
15466
|
principalId: Scalars['ID']['output'];
|
|
15177
|
-
usageType
|
|
15467
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
15178
15468
|
};
|
|
15179
15469
|
export declare type ConfluenceCustomContentPermissionGuestPrincipal = ConfluenceCustomContentPermissionPrincipal & {
|
|
15180
15470
|
__typename?: 'ConfluenceCustomContentPermissionGuestPrincipal';
|
|
@@ -15545,8 +15835,8 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
15545
15835
|
};
|
|
15546
15836
|
export declare type ConfluenceExpert = {
|
|
15547
15837
|
__typename?: 'ConfluenceExpert';
|
|
15548
|
-
accountId: Scalars['ID']['output'];
|
|
15549
15838
|
allTimeReputation?: Maybe<ConfluenceExpertReputation>;
|
|
15839
|
+
user?: Maybe<AtlassianUser>;
|
|
15550
15840
|
weeklyReputation?: Maybe<ConfluenceExpertReputation>;
|
|
15551
15841
|
};
|
|
15552
15842
|
export declare type ConfluenceExpertWeeklyReputationArgs = {
|
|
@@ -15719,6 +16009,7 @@ export declare type ConfluenceForgeExtensionDataSpace = {
|
|
|
15719
16009
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
15720
16010
|
};
|
|
15721
16011
|
export declare type ConfluenceForgePayloadContext = {
|
|
16012
|
+
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
15722
16013
|
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
15723
16014
|
environmentType?: InputMaybe<Scalars['String']['input']>;
|
|
15724
16015
|
extension: ConfluenceForgeExtensionData;
|
|
@@ -16091,6 +16382,21 @@ export declare type ConfluenceMacro = {
|
|
|
16091
16382
|
count?: Maybe<Scalars['Int']['output']>;
|
|
16092
16383
|
key?: Maybe<Scalars['String']['output']>;
|
|
16093
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
|
+
};
|
|
16094
16400
|
export declare type ConfluenceMacroUsage = {
|
|
16095
16401
|
__typename?: 'ConfluenceMacroUsage';
|
|
16096
16402
|
unusedPluginMacros?: Maybe<Array<Maybe<ConfluenceUnusedPluginMacro>>>;
|
|
@@ -16716,6 +17022,23 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
16716
17022
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16717
17023
|
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
16718
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
|
+
};
|
|
16719
17042
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
16720
17043
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
16721
17044
|
link?: Maybe<Scalars['String']['output']>;
|
|
@@ -17204,6 +17527,19 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
17204
17527
|
errors?: Maybe<Array<MutationError>>;
|
|
17205
17528
|
success: Scalars['Boolean']['output'];
|
|
17206
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
|
+
};
|
|
17207
17543
|
export declare enum ConfluenceRoleAssignabilityCode {
|
|
17208
17544
|
Assignable = "ASSIGNABLE",
|
|
17209
17545
|
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
@@ -20566,14 +20902,12 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
20566
20902
|
};
|
|
20567
20903
|
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
20568
20904
|
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
20569
|
-
cursor: Scalars['String']['output'];
|
|
20570
20905
|
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
20571
20906
|
};
|
|
20572
20907
|
export declare type ConvoAiJira3pRelatedLinksResult = {
|
|
20573
20908
|
__typename?: 'ConvoAiJira3pRelatedLinksResult';
|
|
20574
20909
|
edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
|
|
20575
20910
|
errors?: Maybe<Array<QueryError>>;
|
|
20576
|
-
pageInfo: PageInfo;
|
|
20577
20911
|
};
|
|
20578
20912
|
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
20579
20913
|
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
@@ -20637,8 +20971,9 @@ export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
|
20637
20971
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
20638
20972
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
20639
20973
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
20974
|
+
id: Scalars['String']['output'];
|
|
20640
20975
|
name: Scalars['String']['output'];
|
|
20641
|
-
|
|
20976
|
+
productSource?: Maybe<Scalars['String']['output']>;
|
|
20642
20977
|
url: Scalars['String']['output'];
|
|
20643
20978
|
};
|
|
20644
20979
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
@@ -20890,6 +21225,16 @@ export declare type CreateAppContainerPayload = Payload & {
|
|
|
20890
21225
|
errors?: Maybe<Array<MutationError>>;
|
|
20891
21226
|
success: Scalars['Boolean']['output'];
|
|
20892
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
|
+
};
|
|
20893
21238
|
export declare type CreateAppDeploymentInput = {
|
|
20894
21239
|
appId: Scalars['ID']['input'];
|
|
20895
21240
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -26634,13 +26979,15 @@ export declare type EcosystemGlobalInstallationOverrideInput = {
|
|
|
26634
26979
|
};
|
|
26635
26980
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
26636
26981
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
26637
|
-
AllowLogsAccess = "ALLOW_LOGS_ACCESS"
|
|
26982
|
+
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
26983
|
+
AllowRestApis = "ALLOW_REST_APIS"
|
|
26638
26984
|
}
|
|
26639
26985
|
export declare type EcosystemInstallationConfigInput = {
|
|
26640
26986
|
overrides: Array<EcosystemInstallationOverrides>;
|
|
26641
26987
|
};
|
|
26642
26988
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
26643
|
-
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
26989
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
26990
|
+
AllowRestApis = "ALLOW_REST_APIS"
|
|
26644
26991
|
}
|
|
26645
26992
|
export declare type EcosystemInstallationOverrides = {
|
|
26646
26993
|
key: EcosystemInstallationOverrideKeys;
|
|
@@ -31031,7 +31378,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
|
31031
31378
|
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
31032
31379
|
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
31033
31380
|
errors?: Maybe<Array<MutationError>>;
|
|
31034
|
-
id
|
|
31381
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
31035
31382
|
success: Scalars['Boolean']['output'];
|
|
31036
31383
|
};
|
|
31037
31384
|
export declare type GraphIntegrationConsentInput = {
|
|
@@ -34688,6 +35035,8 @@ export declare type GraphStore = {
|
|
|
34688
35035
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
34689
35036
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
34690
35037
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
35038
|
+
userReactedToIssueComment?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentConnection>;
|
|
35039
|
+
userReactedToIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection>;
|
|
34691
35040
|
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
34692
35041
|
userReactionVideoInverse?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseConnection>;
|
|
34693
35042
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
@@ -39439,6 +39788,20 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
39439
39788
|
id: Scalars['ID']['input'];
|
|
39440
39789
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
39441
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
|
+
};
|
|
39442
39805
|
export declare type GraphStoreUserReactionVideoArgs = {
|
|
39443
39806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39444
39807
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42057,7 +42420,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
42057
42420
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
42058
42421
|
id: Scalars['ID']['output'];
|
|
42059
42422
|
};
|
|
42060
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42423
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42061
42424
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
42062
42425
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
42063
42426
|
value: Scalars['String']['output'];
|
|
@@ -42067,13 +42430,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
42067
42430
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
42068
42431
|
id: Scalars['ID']['output'];
|
|
42069
42432
|
};
|
|
42070
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42433
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42071
42434
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
42072
42435
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
42073
42436
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
42074
42437
|
id: Scalars['ID']['output'];
|
|
42075
42438
|
};
|
|
42076
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42439
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42077
42440
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
42078
42441
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
42079
42442
|
value: Scalars['Boolean']['output'];
|
|
@@ -42174,7 +42537,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
42174
42537
|
V2 = "V2",
|
|
42175
42538
|
V3 = "V3"
|
|
42176
42539
|
}
|
|
42177
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42540
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
42178
42541
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
42179
42542
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
42180
42543
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -54573,6 +54936,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
54573
54936
|
};
|
|
54574
54937
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54575
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;
|
|
54576
54967
|
export declare type GraphStoreSimplifiedUserReactionVideoConnection = HasPageInfo & {
|
|
54577
54968
|
__typename?: 'GraphStoreSimplifiedUserReactionVideoConnection';
|
|
54578
54969
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoEdge>>>;
|
|
@@ -56488,6 +56879,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
56488
56879
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
56489
56880
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56490
56881
|
};
|
|
56882
|
+
export declare type GraphStoreUserReactedToIssueCommentSortInput = {
|
|
56883
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56884
|
+
};
|
|
56491
56885
|
export declare type GraphStoreUserReactionVideoSortInput = {
|
|
56492
56886
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56493
56887
|
};
|
|
@@ -56993,10 +57387,14 @@ export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
|
56993
57387
|
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
56994
57388
|
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
56995
57389
|
paidFeatureUsage: Array<GrowthUnifiedProfilePaidFeatureUsageResult>;
|
|
57390
|
+
trialHistory: Array<GrowthUnifiedProfileTrialHistoryResult>;
|
|
56996
57391
|
};
|
|
56997
57392
|
export declare type GrowthUnifiedProfileEntitlementProfileResultPaidFeatureUsageArgs = {
|
|
56998
57393
|
filter?: InputMaybe<GrowthUnifiedProfilePaidFeatureUsageFilterInput>;
|
|
56999
57394
|
};
|
|
57395
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResultTrialHistoryArgs = {
|
|
57396
|
+
filter?: InputMaybe<GrowthUnifiedProfileTrialHistoryFilterInput>;
|
|
57397
|
+
};
|
|
57000
57398
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
57001
57399
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
57002
57400
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -57008,7 +57406,6 @@ export declare enum GrowthUnifiedProfileEntryType {
|
|
|
57008
57406
|
New = "NEW"
|
|
57009
57407
|
}
|
|
57010
57408
|
export declare enum GrowthUnifiedProfileFeatureType {
|
|
57011
|
-
Stateful = "STATEFUL",
|
|
57012
57409
|
Stateless = "STATELESS"
|
|
57013
57410
|
}
|
|
57014
57411
|
export declare type GrowthUnifiedProfileFunctionalOnboardingResult = {
|
|
@@ -57220,6 +57617,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
57220
57617
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
57221
57618
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
57222
57619
|
productName?: Maybe<Scalars['String']['output']>;
|
|
57620
|
+
productUrl?: Maybe<Scalars['String']['output']>;
|
|
57223
57621
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
57224
57622
|
trialContext?: Maybe<GrowthUnifiedProfileTrialContext>;
|
|
57225
57623
|
};
|
|
@@ -57359,6 +57757,15 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
57359
57757
|
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
57360
57758
|
trialType: GrowthUnifiedProfileTrialType;
|
|
57361
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
|
+
};
|
|
57362
57769
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
57363
57770
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
57364
57771
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
@@ -57439,6 +57846,7 @@ export declare type GrowthUnifiedProfileUserProfile = {
|
|
|
57439
57846
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
57440
57847
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
57441
57848
|
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
57849
|
+
smbUserVisitedPricingPages?: Maybe<Scalars['Boolean']['output']>;
|
|
57442
57850
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
57443
57851
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
57444
57852
|
};
|
|
@@ -60604,7 +61012,7 @@ export declare type JiraAddCommentInput = {
|
|
|
60604
61012
|
};
|
|
60605
61013
|
export declare type JiraAddCommentPayload = {
|
|
60606
61014
|
__typename?: 'JiraAddCommentPayload';
|
|
60607
|
-
comment
|
|
61015
|
+
comment?: Maybe<JiraComment>;
|
|
60608
61016
|
errors?: Maybe<Array<MutationError>>;
|
|
60609
61017
|
success: Scalars['Boolean']['output'];
|
|
60610
61018
|
};
|
|
@@ -60807,6 +61215,7 @@ export declare type JiraAffectedServicesInput = {
|
|
|
60807
61215
|
};
|
|
60808
61216
|
export declare type JiraAiAgentSession = {
|
|
60809
61217
|
__typename?: 'JiraAiAgentSession';
|
|
61218
|
+
agent?: Maybe<User>;
|
|
60810
61219
|
conversationId: Scalars['ID']['output'];
|
|
60811
61220
|
};
|
|
60812
61221
|
export declare type JiraAiAgentSessionConnection = {
|
|
@@ -61753,6 +62162,10 @@ export declare type JiraBacklogBoardConfig = {
|
|
|
61753
62162
|
swimlaneStrategy?: Maybe<Scalars['String']['output']>;
|
|
61754
62163
|
trackingStatisticConfig?: Maybe<JiraBacklogTrackingConfig>;
|
|
61755
62164
|
};
|
|
62165
|
+
export declare enum JiraBacklogCardDensity {
|
|
62166
|
+
Compact = "COMPACT",
|
|
62167
|
+
Default = "DEFAULT"
|
|
62168
|
+
}
|
|
61756
62169
|
export declare type JiraBacklogColorConfig = {
|
|
61757
62170
|
__typename?: 'JiraBacklogColorConfig';
|
|
61758
62171
|
canEditCardColorStrategy?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62055,8 +62468,69 @@ export declare type JiraBacklogVersionData = {
|
|
|
62055
62468
|
};
|
|
62056
62469
|
export declare type JiraBacklogView = {
|
|
62057
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>;
|
|
62058
62476
|
epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
62059
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'];
|
|
62060
62534
|
};
|
|
62061
62535
|
export declare type JiraBacklogViewInput = {
|
|
62062
62536
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
@@ -62064,6 +62538,22 @@ export declare type JiraBacklogViewInput = {
|
|
|
62064
62538
|
export declare type JiraBacklogViewQueryInput = {
|
|
62065
62539
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
62066
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
|
+
};
|
|
62067
62557
|
export declare enum JiraBatchWindowPreference {
|
|
62068
62558
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
62069
62559
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -62187,6 +62677,7 @@ export declare type JiraBoardView = {
|
|
|
62187
62677
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
62188
62678
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
62189
62679
|
id: Scalars['ID']['output'];
|
|
62680
|
+
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
62190
62681
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
62191
62682
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
62192
62683
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -65528,6 +66019,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
65528
66019
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65529
66020
|
cloudId: Scalars['ID']['input'];
|
|
65530
66021
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
66022
|
+
fieldScope?: InputMaybe<JiraFieldScopeType>;
|
|
65531
66023
|
fieldStatus?: InputMaybe<JiraFieldStatusType>;
|
|
65532
66024
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
65533
66025
|
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
@@ -65644,6 +66136,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
65644
66136
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
65645
66137
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
65646
66138
|
field?: Maybe<JiraField>;
|
|
66139
|
+
fieldConfig?: Maybe<JiraIssueFieldConfig>;
|
|
65647
66140
|
id: Scalars['ID']['output'];
|
|
65648
66141
|
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
65649
66142
|
};
|
|
@@ -65665,6 +66158,12 @@ export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
|
65665
66158
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65666
66159
|
schemeId: Scalars['ID']['input'];
|
|
65667
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
|
+
};
|
|
65668
66167
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
65669
66168
|
__typename?: 'JiraFieldSchemePayload';
|
|
65670
66169
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65685,6 +66184,7 @@ export declare type JiraFieldSchemesInput = {
|
|
|
65685
66184
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65686
66185
|
};
|
|
65687
66186
|
export declare enum JiraFieldScopeType {
|
|
66187
|
+
All = "ALL",
|
|
65688
66188
|
Global = "GLOBAL",
|
|
65689
66189
|
Project = "PROJECT"
|
|
65690
66190
|
}
|
|
@@ -66821,6 +67321,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
66821
67321
|
archivedBy?: Maybe<User>;
|
|
66822
67322
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66823
67323
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
67324
|
+
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
66824
67325
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
66825
67326
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
66826
67327
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -66957,7 +67458,9 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
66957
67458
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
66958
67459
|
};
|
|
66959
67460
|
export declare type JiraIssueAttachmentsWithFiltersArgs = {
|
|
67461
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66960
67462
|
input?: InputMaybe<JiraAttachmentWithFiltersInput>;
|
|
67463
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66961
67464
|
};
|
|
66962
67465
|
export declare type JiraIssueCanHaveChildIssuesArgs = {
|
|
66963
67466
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67592,6 +68095,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
67592
68095
|
description?: Maybe<Scalars['String']['output']>;
|
|
67593
68096
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
67594
68097
|
fieldId: Scalars['String']['output'];
|
|
68098
|
+
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
67595
68099
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
67596
68100
|
id: Scalars['ID']['output'];
|
|
67597
68101
|
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
@@ -68131,6 +68635,18 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
68131
68635
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
68132
68636
|
success: Scalars['Boolean']['output'];
|
|
68133
68637
|
};
|
|
68638
|
+
export declare type JiraIssuePickerInput = {
|
|
68639
|
+
currentIssueId: Scalars['ID']['input'];
|
|
68640
|
+
currentJQL?: InputMaybe<Scalars['String']['input']>;
|
|
68641
|
+
currentProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
68642
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
68643
|
+
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68644
|
+
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68645
|
+
};
|
|
68646
|
+
export declare type JiraIssuePickerResult = {
|
|
68647
|
+
__typename?: 'JiraIssuePickerResult';
|
|
68648
|
+
sections?: Maybe<Array<Maybe<JiraIssueSection>>>;
|
|
68649
|
+
};
|
|
68134
68650
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
68135
68651
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
68136
68652
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -68634,10 +69150,30 @@ export declare type JiraIssueSearchViewQueryInput = {
|
|
|
68634
69150
|
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
68635
69151
|
};
|
|
68636
69152
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
69153
|
+
export declare type JiraIssueSection = {
|
|
69154
|
+
__typename?: 'JiraIssueSection';
|
|
69155
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
69156
|
+
issues?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
69157
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
69158
|
+
msg?: Maybe<Scalars['String']['output']>;
|
|
69159
|
+
sub?: Maybe<Scalars['String']['output']>;
|
|
69160
|
+
};
|
|
68637
69161
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
68638
69162
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
68639
69163
|
id: Scalars['Int']['output'];
|
|
68640
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
|
+
}
|
|
68641
69177
|
export declare type JiraIssueTransitionComment = {
|
|
68642
69178
|
__typename?: 'JiraIssueTransitionComment';
|
|
68643
69179
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -69043,6 +69579,7 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
69043
69579
|
};
|
|
69044
69580
|
export declare type JiraJourneyParentIssue = {
|
|
69045
69581
|
__typename?: 'JiraJourneyParentIssue';
|
|
69582
|
+
jiraStatuses?: Maybe<Array<JiraStatus>>;
|
|
69046
69583
|
project?: Maybe<JiraProject>;
|
|
69047
69584
|
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
69048
69585
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
@@ -69143,6 +69680,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
69143
69680
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
69144
69681
|
id: Scalars['ID']['output'];
|
|
69145
69682
|
issueType?: Maybe<JiraIssueType>;
|
|
69683
|
+
jiraStatuses?: Maybe<Array<JiraStatus>>;
|
|
69146
69684
|
name?: Maybe<Scalars['String']['output']>;
|
|
69147
69685
|
project?: Maybe<JiraProject>;
|
|
69148
69686
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
@@ -73842,6 +74380,7 @@ export declare type JiraQuery = {
|
|
|
73842
74380
|
getOutgoingEmailSettings?: Maybe<JiraOutgoingEmailSettings>;
|
|
73843
74381
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
73844
74382
|
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
74383
|
+
getProjectLinkInheritanceSources?: Maybe<Array<Maybe<JiraIssueTownsquareProjectLink>>>;
|
|
73845
74384
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
73846
74385
|
globalAppNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
73847
74386
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
@@ -73858,6 +74397,7 @@ export declare type JiraQuery = {
|
|
|
73858
74397
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73859
74398
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73860
74399
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
74400
|
+
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
73861
74401
|
issue?: Maybe<JiraIssue>;
|
|
73862
74402
|
issueById?: Maybe<JiraIssue>;
|
|
73863
74403
|
issueByKey?: Maybe<JiraIssue>;
|
|
@@ -73888,6 +74428,7 @@ export declare type JiraQuery = {
|
|
|
73888
74428
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
73889
74429
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
73890
74430
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
74431
|
+
jiraIssuePicker?: Maybe<JiraIssuePickerResult>;
|
|
73891
74432
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
73892
74433
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
73893
74434
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
@@ -74277,6 +74818,9 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
74277
74818
|
permissionKey: Scalars['String']['input'];
|
|
74278
74819
|
schemeId: Scalars['ID']['input'];
|
|
74279
74820
|
};
|
|
74821
|
+
export declare type JiraQueryGetProjectLinkInheritanceSourcesArgs = {
|
|
74822
|
+
issueId: Scalars['ID']['input'];
|
|
74823
|
+
};
|
|
74280
74824
|
export declare type JiraQueryGetProjectsByPermissionSchemeArgs = {
|
|
74281
74825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74282
74826
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -74356,6 +74900,9 @@ export declare type JiraQueryIsRovoEnabledArgs = {
|
|
|
74356
74900
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
74357
74901
|
cloudId: Scalars['ID']['input'];
|
|
74358
74902
|
};
|
|
74903
|
+
export declare type JiraQueryIsVotingEnabledArgs = {
|
|
74904
|
+
cloudId: Scalars['ID']['input'];
|
|
74905
|
+
};
|
|
74359
74906
|
export declare type JiraQueryIssueArgs = {
|
|
74360
74907
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
74361
74908
|
};
|
|
@@ -74503,6 +75050,9 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
74503
75050
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74504
75051
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
74505
75052
|
};
|
|
75053
|
+
export declare type JiraQueryJiraIssuePickerArgs = {
|
|
75054
|
+
input: JiraIssuePickerInput;
|
|
75055
|
+
};
|
|
74506
75056
|
export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
74507
75057
|
cloudId: Scalars['ID']['input'];
|
|
74508
75058
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77207,6 +77757,28 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
77207
77757
|
key: Scalars['String']['input'];
|
|
77208
77758
|
value: Scalars['String']['input'];
|
|
77209
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
|
+
};
|
|
77210
77782
|
export declare type JiraSetBoardIssueCardCoverInput = {
|
|
77211
77783
|
coverType: JiraBackgroundType;
|
|
77212
77784
|
coverValue: Scalars['String']['input'];
|
|
@@ -77269,7 +77841,7 @@ export declare type JiraSetBoardViewColumnsOrderPayload = Payload & {
|
|
|
77269
77841
|
success: Scalars['Boolean']['output'];
|
|
77270
77842
|
};
|
|
77271
77843
|
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
77272
|
-
completedIssueSearchCutOffInDays
|
|
77844
|
+
completedIssueSearchCutOffInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
77273
77845
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
77274
77846
|
viewId: Scalars['ID']['input'];
|
|
77275
77847
|
};
|
|
@@ -77476,6 +78048,10 @@ export declare type JiraSetViewGroupByPayload = Payload & {
|
|
|
77476
78048
|
success: Scalars['Boolean']['output'];
|
|
77477
78049
|
view?: Maybe<JiraView>;
|
|
77478
78050
|
};
|
|
78051
|
+
export declare type JiraSetViewSettingToggleInput = {
|
|
78052
|
+
toggleValue: Scalars['Boolean']['input'];
|
|
78053
|
+
viewId: Scalars['ID']['input'];
|
|
78054
|
+
};
|
|
77479
78055
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
77480
78056
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
77481
78057
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -78401,6 +78977,27 @@ export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
|
78401
78977
|
issueTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
78402
78978
|
sourceIssueId: Scalars['ID']['input'];
|
|
78403
78979
|
};
|
|
78980
|
+
export declare type JiraSubtaskSummary = {
|
|
78981
|
+
__typename?: 'JiraSubtaskSummary';
|
|
78982
|
+
totalCompletedCount?: Maybe<Scalars['Int']['output']>;
|
|
78983
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
78984
|
+
totalInProgressCount?: Maybe<Scalars['Int']['output']>;
|
|
78985
|
+
};
|
|
78986
|
+
export declare type JiraSubtaskSummaryField = JiraIssueField & Node & {
|
|
78987
|
+
__typename?: 'JiraSubtaskSummaryField';
|
|
78988
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
78989
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
78990
|
+
fieldId: Scalars['String']['output'];
|
|
78991
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
78992
|
+
id: Scalars['ID']['output'];
|
|
78993
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
78994
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
78995
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
78996
|
+
issue?: Maybe<JiraIssue>;
|
|
78997
|
+
name: Scalars['String']['output'];
|
|
78998
|
+
subtaskSummary?: Maybe<JiraSubtaskSummary>;
|
|
78999
|
+
type: Scalars['String']['output'];
|
|
79000
|
+
};
|
|
78404
79001
|
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
78405
79002
|
__typename?: 'JiraSubtasksField';
|
|
78406
79003
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -78491,9 +79088,14 @@ export declare type JiraSuggestionAction = {
|
|
|
78491
79088
|
__typename?: 'JiraSuggestionAction';
|
|
78492
79089
|
default?: Maybe<Scalars['Boolean']['output']>;
|
|
78493
79090
|
id?: Maybe<Scalars['String']['output']>;
|
|
78494
|
-
inputSchema?: Maybe<
|
|
79091
|
+
inputSchema?: Maybe<JiraSuggestionActionInputSchema>;
|
|
78495
79092
|
type?: Maybe<JiraSuggestionActionType>;
|
|
78496
79093
|
};
|
|
79094
|
+
export declare type JiraSuggestionActionInputSchema = {
|
|
79095
|
+
__typename?: 'JiraSuggestionActionInputSchema';
|
|
79096
|
+
properties?: Maybe<Scalars['JSON']['output']>;
|
|
79097
|
+
required?: Maybe<Array<Scalars['String']['output']>>;
|
|
79098
|
+
};
|
|
78497
79099
|
export declare enum JiraSuggestionActionType {
|
|
78498
79100
|
ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
|
|
78499
79101
|
ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
|
|
@@ -78766,6 +79368,39 @@ export declare type JiraToolchain = {
|
|
|
78766
79368
|
export declare type JiraToolchainHasViewDevToolsPermissionArgs = {
|
|
78767
79369
|
projectKey: Scalars['String']['input'];
|
|
78768
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
|
+
};
|
|
78769
79404
|
export declare type JiraTransition = Node & {
|
|
78770
79405
|
__typename?: 'JiraTransition';
|
|
78771
79406
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -78946,7 +79581,7 @@ export declare type JiraUpdateCommentInput = {
|
|
|
78946
79581
|
};
|
|
78947
79582
|
export declare type JiraUpdateCommentPayload = {
|
|
78948
79583
|
__typename?: 'JiraUpdateCommentPayload';
|
|
78949
|
-
comment
|
|
79584
|
+
comment?: Maybe<JiraComment>;
|
|
78950
79585
|
errors?: Maybe<Array<MutationError>>;
|
|
78951
79586
|
success: Scalars['Boolean']['output'];
|
|
78952
79587
|
};
|
|
@@ -80930,15 +81565,6 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
80930
81565
|
export declare type JiraWorklogSortInput = {
|
|
80931
81566
|
order: SortDirection;
|
|
80932
81567
|
};
|
|
80933
|
-
export declare type JpdInsightCreatedEvent = {
|
|
80934
|
-
__typename?: 'JpdInsightCreatedEvent';
|
|
80935
|
-
actorUserId: Scalars['ID']['output'];
|
|
80936
|
-
insight: PolarisInsight;
|
|
80937
|
-
insightAri: Scalars['ID']['output'];
|
|
80938
|
-
issueAri: Scalars['ID']['output'];
|
|
80939
|
-
performedAt: Scalars['String']['output'];
|
|
80940
|
-
projectAri: Scalars['ID']['output'];
|
|
80941
|
-
};
|
|
80942
81568
|
export declare type JpdInsightDeletedEvent = {
|
|
80943
81569
|
__typename?: 'JpdInsightDeletedEvent';
|
|
80944
81570
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -80947,33 +81573,8 @@ export declare type JpdInsightDeletedEvent = {
|
|
|
80947
81573
|
performedAt: Scalars['String']['output'];
|
|
80948
81574
|
projectAri: Scalars['ID']['output'];
|
|
80949
81575
|
};
|
|
80950
|
-
export declare type JpdInsightUpdatedEvent = {
|
|
80951
|
-
__typename?: 'JpdInsightUpdatedEvent';
|
|
80952
|
-
actorUserId: Scalars['ID']['output'];
|
|
80953
|
-
insight: PolarisInsight;
|
|
80954
|
-
insightAri: Scalars['ID']['output'];
|
|
80955
|
-
issueAri: Scalars['ID']['output'];
|
|
80956
|
-
performedAt: Scalars['String']['output'];
|
|
80957
|
-
projectAri: Scalars['ID']['output'];
|
|
80958
|
-
};
|
|
80959
|
-
export declare type JpdPlayContributionCreatedEvent = {
|
|
80960
|
-
__typename?: 'JpdPlayContributionCreatedEvent';
|
|
80961
|
-
contributionAri: Scalars['ID']['output'];
|
|
80962
|
-
contributionId: Scalars['Int']['output'];
|
|
80963
|
-
projectAri: Scalars['ID']['output'];
|
|
80964
|
-
subjectAri: Scalars['ID']['output'];
|
|
80965
|
-
updatedByUserId: Scalars['ID']['output'];
|
|
80966
|
-
updatedTime: Scalars['String']['output'];
|
|
80967
|
-
};
|
|
80968
81576
|
export declare type JpdPlayContributionDeletedEvent = {
|
|
80969
81577
|
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
80970
|
-
projectAri: Scalars['ID']['output'];
|
|
80971
|
-
subjectAri: Scalars['ID']['output'];
|
|
80972
|
-
updatedByUserId: Scalars['ID']['output'];
|
|
80973
|
-
updatedTime: Scalars['String']['output'];
|
|
80974
|
-
};
|
|
80975
|
-
export declare type JpdPlayContributionUpdatedEvent = {
|
|
80976
|
-
__typename?: 'JpdPlayContributionUpdatedEvent';
|
|
80977
81578
|
contributionAri: Scalars['ID']['output'];
|
|
80978
81579
|
contributionId: Scalars['Int']['output'];
|
|
80979
81580
|
projectAri: Scalars['ID']['output'];
|
|
@@ -80984,6 +81585,8 @@ export declare type JpdPlayContributionUpdatedEvent = {
|
|
|
80984
81585
|
export declare type JpdPlayEvent = {
|
|
80985
81586
|
__typename?: 'JpdPlayEvent';
|
|
80986
81587
|
parameters: JpdPlayParameters;
|
|
81588
|
+
playAri: Scalars['ID']['output'];
|
|
81589
|
+
playId: Scalars['Int']['output'];
|
|
80987
81590
|
projectAri: Scalars['ID']['output'];
|
|
80988
81591
|
updatedByUserId: Scalars['ID']['output'];
|
|
80989
81592
|
updatedTime: Scalars['String']['output'];
|
|
@@ -80994,15 +81597,15 @@ export declare type JpdPlayParameters = {
|
|
|
80994
81597
|
};
|
|
80995
81598
|
export declare type JpdSubscriptions = {
|
|
80996
81599
|
__typename?: 'JpdSubscriptions';
|
|
80997
|
-
onInsightCreated?: Maybe<
|
|
81600
|
+
onInsightCreated?: Maybe<PolarisInsight>;
|
|
80998
81601
|
onInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
80999
|
-
onInsightUpdated?: Maybe<
|
|
81000
|
-
onIssueInsightCreated?: Maybe<
|
|
81602
|
+
onInsightUpdated?: Maybe<PolarisInsight>;
|
|
81603
|
+
onIssueInsightCreated?: Maybe<PolarisInsight>;
|
|
81001
81604
|
onIssueInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
81002
|
-
onIssueInsightUpdated?: Maybe<
|
|
81003
|
-
onPlayContributionCreated?: Maybe<
|
|
81605
|
+
onIssueInsightUpdated?: Maybe<PolarisInsight>;
|
|
81606
|
+
onPlayContributionCreated?: Maybe<PolarisPlayContribution>;
|
|
81004
81607
|
onPlayContributionDeleted?: Maybe<JpdPlayContributionDeletedEvent>;
|
|
81005
|
-
onPlayContributionUpdated?: Maybe<
|
|
81608
|
+
onPlayContributionUpdated?: Maybe<PolarisPlayContribution>;
|
|
81006
81609
|
onPlayUpdated?: Maybe<JpdPlayEvent>;
|
|
81007
81610
|
onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
|
|
81008
81611
|
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
@@ -81110,14 +81713,12 @@ export declare type JpdViewSetCreatedEvent = {
|
|
|
81110
81713
|
__typename?: 'JpdViewSetCreatedEvent';
|
|
81111
81714
|
projectAri: Scalars['ID']['output'];
|
|
81112
81715
|
viewSetAri: Scalars['ID']['output'];
|
|
81113
|
-
viewSetId: Scalars['Int']['output'];
|
|
81114
81716
|
viewSetUuid: Scalars['ID']['output'];
|
|
81115
81717
|
};
|
|
81116
81718
|
export declare type JpdViewSetDeletedEvent = {
|
|
81117
81719
|
__typename?: 'JpdViewSetDeletedEvent';
|
|
81118
81720
|
projectAri: Scalars['ID']['output'];
|
|
81119
81721
|
viewSetAri: Scalars['ID']['output'];
|
|
81120
|
-
viewSetId: Scalars['Int']['output'];
|
|
81121
81722
|
viewSetUuid: Scalars['ID']['output'];
|
|
81122
81723
|
};
|
|
81123
81724
|
export declare type JpdViewSetUpdatedEvent = {
|
|
@@ -81125,7 +81726,6 @@ export declare type JpdViewSetUpdatedEvent = {
|
|
|
81125
81726
|
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
81126
81727
|
projectAri: Scalars['ID']['output'];
|
|
81127
81728
|
viewSetAri: Scalars['ID']['output'];
|
|
81128
|
-
viewSetId: Scalars['Int']['output'];
|
|
81129
81729
|
viewSetUuid: Scalars['ID']['output'];
|
|
81130
81730
|
};
|
|
81131
81731
|
export declare type JpdViewUpdatedEvent = {
|
|
@@ -83438,6 +84038,11 @@ export declare enum LoomTranscriptLanguage {
|
|
|
83438
84038
|
Yo = "yo",
|
|
83439
84039
|
Zh = "zh"
|
|
83440
84040
|
}
|
|
84041
|
+
export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
84042
|
+
__typename?: 'LoomUnauthenticatedUserPrimaryAuthType';
|
|
84043
|
+
authType: Scalars['String']['output'];
|
|
84044
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84045
|
+
};
|
|
83441
84046
|
export declare type LoomUserPrimaryAuthType = {
|
|
83442
84047
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
83443
84048
|
authType: Scalars['String']['output'];
|
|
@@ -86933,11 +87538,13 @@ export declare type MercuryDeleteStrategicEventCommentPayload = Payload & {
|
|
|
86933
87538
|
success: Scalars['Boolean']['output'];
|
|
86934
87539
|
};
|
|
86935
87540
|
export declare enum MercuryEntityType {
|
|
87541
|
+
ChangeProposal = "CHANGE_PROPOSAL",
|
|
86936
87542
|
Comment = "COMMENT",
|
|
86937
87543
|
FocusArea = "FOCUS_AREA",
|
|
86938
87544
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
86939
87545
|
Program = "PROGRAM",
|
|
86940
|
-
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE"
|
|
87546
|
+
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
87547
|
+
StrategicEvent = "STRATEGIC_EVENT"
|
|
86941
87548
|
}
|
|
86942
87549
|
export declare enum MercuryEventType {
|
|
86943
87550
|
Archive = "ARCHIVE",
|
|
@@ -88637,6 +89244,7 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
88637
89244
|
__typename?: 'MercuryUnrankChangeProposalInViewPayload';
|
|
88638
89245
|
errors?: Maybe<Array<MutationError>>;
|
|
88639
89246
|
success: Scalars['Boolean']['output'];
|
|
89247
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88640
89248
|
};
|
|
88641
89249
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
88642
89250
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88699,6 +89307,7 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
|
88699
89307
|
__typename?: 'MercuryUpdateChangeProposalRankInViewPayload';
|
|
88700
89308
|
errors?: Maybe<Array<MutationError>>;
|
|
88701
89309
|
success: Scalars['Boolean']['output'];
|
|
89310
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88702
89311
|
};
|
|
88703
89312
|
export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
88704
89313
|
id: Scalars['ID']['input'];
|
|
@@ -88706,9 +89315,9 @@ export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
|
88706
89315
|
};
|
|
88707
89316
|
export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
88708
89317
|
__typename?: 'MercuryUpdateChangeProposalsViewNamePayload';
|
|
88709
|
-
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88710
89318
|
errors?: Maybe<Array<MutationError>>;
|
|
88711
89319
|
success: Scalars['Boolean']['output'];
|
|
89320
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88712
89321
|
};
|
|
88713
89322
|
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
88714
89323
|
id: Scalars['ID']['input'];
|
|
@@ -88716,9 +89325,9 @@ export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
|
88716
89325
|
};
|
|
88717
89326
|
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
88718
89327
|
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
88719
|
-
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88720
89328
|
errors?: Maybe<Array<MutationError>>;
|
|
88721
89329
|
success: Scalars['Boolean']['output'];
|
|
89330
|
+
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88722
89331
|
};
|
|
88723
89332
|
export declare type MercuryUpdateChangeQuantityInput = {
|
|
88724
89333
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -89187,6 +89796,7 @@ export declare type Mutation = {
|
|
|
89187
89796
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
89188
89797
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
89189
89798
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
89799
|
+
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
89190
89800
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
89191
89801
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
89192
89802
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
@@ -89194,10 +89804,12 @@ export declare type Mutation = {
|
|
|
89194
89804
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
89195
89805
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
89196
89806
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
89807
|
+
assetsDM_dataSourceCleansingRulesRunCleanse?: Maybe<AssetsDmDataSourceCleansingRulesRunCleanseResponse>;
|
|
89197
89808
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
89198
89809
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
89199
89810
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
89200
89811
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
89812
|
+
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
89201
89813
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
89202
89814
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
89203
89815
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -89209,6 +89821,7 @@ export declare type Mutation = {
|
|
|
89209
89821
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
89210
89822
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
89211
89823
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
89824
|
+
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
89212
89825
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
89213
89826
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
89214
89827
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
@@ -89249,6 +89862,7 @@ export declare type Mutation = {
|
|
|
89249
89862
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
89250
89863
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
89251
89864
|
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
89865
|
+
confluence_createCalendar?: Maybe<ConfluenceCreateCalendarPayload>;
|
|
89252
89866
|
confluence_createCommentOnAnswer?: Maybe<ConfluenceCreateCommentOnAnswerPayload>;
|
|
89253
89867
|
confluence_createCommentOnQuestion?: Maybe<ConfluenceCreateCommentOnQuestionPayload>;
|
|
89254
89868
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
@@ -89280,9 +89894,11 @@ export declare type Mutation = {
|
|
|
89280
89894
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
89281
89895
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
89282
89896
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
89897
|
+
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
89283
89898
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
89284
89899
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
89285
89900
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
89901
|
+
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
89286
89902
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
89287
89903
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
89288
89904
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
@@ -89326,6 +89942,7 @@ export declare type Mutation = {
|
|
|
89326
89942
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
89327
89943
|
createApp?: Maybe<CreateAppResponse>;
|
|
89328
89944
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
89945
|
+
createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
|
|
89329
89946
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
89330
89947
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
89331
89948
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
@@ -89539,6 +90156,20 @@ export declare type Mutation = {
|
|
|
89539
90156
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
89540
90157
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
89541
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>;
|
|
89542
90173
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
89543
90174
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
89544
90175
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -89616,6 +90247,7 @@ export declare type Mutation = {
|
|
|
89616
90247
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
89617
90248
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
89618
90249
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
90250
|
+
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
89619
90251
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
89620
90252
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
89621
90253
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
@@ -89629,6 +90261,7 @@ export declare type Mutation = {
|
|
|
89629
90261
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
89630
90262
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
89631
90263
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
90264
|
+
projects_removeJiraWorkItemLink?: Maybe<TownsquareProjectsRemoveJiraWorkItemLinkPayload>;
|
|
89632
90265
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
89633
90266
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
89634
90267
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -90004,6 +90637,11 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
90004
90637
|
export declare type MutationArchiveSpaceArgs = {
|
|
90005
90638
|
input: ArchiveSpaceInput;
|
|
90006
90639
|
};
|
|
90640
|
+
export declare type MutationAssetsDm_AssociateObjectTagArgs = {
|
|
90641
|
+
cloudId: Scalars['ID']['input'];
|
|
90642
|
+
input: AssetsDmObjectTagAssociateInput;
|
|
90643
|
+
workspaceId: Scalars['ID']['input'];
|
|
90644
|
+
};
|
|
90007
90645
|
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
90008
90646
|
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
90009
90647
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90050,6 +90688,11 @@ export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
|
90050
90688
|
dataSourceId: Scalars['ID']['input'];
|
|
90051
90689
|
workspaceId: Scalars['ID']['input'];
|
|
90052
90690
|
};
|
|
90691
|
+
export declare type MutationAssetsDm_DataSourceCleansingRulesRunCleanseArgs = {
|
|
90692
|
+
cloudId: Scalars['ID']['input'];
|
|
90693
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90694
|
+
workspaceId: Scalars['ID']['input'];
|
|
90695
|
+
};
|
|
90053
90696
|
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
90054
90697
|
cloudId: Scalars['ID']['input'];
|
|
90055
90698
|
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
@@ -90070,6 +90713,11 @@ export declare type MutationAssetsDm_DeleteSavedSearchArgs = {
|
|
|
90070
90713
|
savedSearchId: Scalars['ID']['input'];
|
|
90071
90714
|
workspaceId: Scalars['ID']['input'];
|
|
90072
90715
|
};
|
|
90716
|
+
export declare type MutationAssetsDm_DissociateObjectTagArgs = {
|
|
90717
|
+
cloudId: Scalars['ID']['input'];
|
|
90718
|
+
input: AssetsDmObjectTagDissociateInput;
|
|
90719
|
+
workspaceId: Scalars['ID']['input'];
|
|
90720
|
+
};
|
|
90073
90721
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
90074
90722
|
cloudId: Scalars['ID']['input'];
|
|
90075
90723
|
input: AssetsDmObjectTagEditInput;
|
|
@@ -90107,6 +90755,9 @@ export declare type MutationAvp_CreateChartArgs = {
|
|
|
90107
90755
|
export declare type MutationAvp_CreateDashboardArgs = {
|
|
90108
90756
|
input: AvpCreateDashboardInput;
|
|
90109
90757
|
};
|
|
90758
|
+
export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
90759
|
+
input: AvpCreateDashboardFilterInput;
|
|
90760
|
+
};
|
|
90110
90761
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
90111
90762
|
input: AvpDeleteChartInput;
|
|
90112
90763
|
};
|
|
@@ -90234,6 +90885,10 @@ export declare type MutationConfluence_CreateAnswerArgs = {
|
|
|
90234
90885
|
cloudId: Scalars['ID']['input'];
|
|
90235
90886
|
input: ConfluenceCreateAnswerInput;
|
|
90236
90887
|
};
|
|
90888
|
+
export declare type MutationConfluence_CreateCalendarArgs = {
|
|
90889
|
+
cloudId: Scalars['ID']['input'];
|
|
90890
|
+
input: ConfluenceCreateCalendarInput;
|
|
90891
|
+
};
|
|
90237
90892
|
export declare type MutationConfluence_CreateCommentOnAnswerArgs = {
|
|
90238
90893
|
cloudId: Scalars['ID']['input'];
|
|
90239
90894
|
input: ConfluenceCreateCommentOnAnswerInput;
|
|
@@ -90354,6 +91009,10 @@ export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
|
90354
91009
|
cloudId: Scalars['ID']['input'];
|
|
90355
91010
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
90356
91011
|
};
|
|
91012
|
+
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
91013
|
+
cloudId: Scalars['ID']['input'];
|
|
91014
|
+
input: ConfluencePatchCalendarInput;
|
|
91015
|
+
};
|
|
90357
91016
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
90358
91017
|
cloudId: Scalars['ID']['input'];
|
|
90359
91018
|
commentId: Scalars['ID']['input'];
|
|
@@ -90367,6 +91026,10 @@ export declare type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
|
90367
91026
|
contentId: Scalars['ID']['input'];
|
|
90368
91027
|
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
90369
91028
|
};
|
|
91029
|
+
export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
91030
|
+
cloudId: Scalars['ID']['input'];
|
|
91031
|
+
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
91032
|
+
};
|
|
90370
91033
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
90371
91034
|
cloudId: Scalars['ID']['input'];
|
|
90372
91035
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -90525,6 +91188,9 @@ export declare type MutationCreateAppArgs = {
|
|
|
90525
91188
|
export declare type MutationCreateAppContainerArgs = {
|
|
90526
91189
|
input: AppContainerInput;
|
|
90527
91190
|
};
|
|
91191
|
+
export declare type MutationCreateAppCustomScopesArgs = {
|
|
91192
|
+
input: CreateAppCustomScopesInput;
|
|
91193
|
+
};
|
|
90528
91194
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
90529
91195
|
input: CreateAppDeploymentInput;
|
|
90530
91196
|
};
|
|
@@ -90689,7 +91355,7 @@ export declare type MutationCsmAi_CreateActionForAgentArgs = {
|
|
|
90689
91355
|
input: CsmAiCreateActionInput;
|
|
90690
91356
|
};
|
|
90691
91357
|
export declare type MutationCsmAi_CreateCoachingContentArgs = {
|
|
90692
|
-
|
|
91358
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90693
91359
|
csmAiHubId: Scalars['ID']['input'];
|
|
90694
91360
|
helpCenterAri: Scalars['ID']['input'];
|
|
90695
91361
|
input: CsmAiCreateCoachingContentInput;
|
|
@@ -90700,7 +91366,7 @@ export declare type MutationCsmAi_DeleteActionArgs = {
|
|
|
90700
91366
|
helpCenterAri: Scalars['ID']['input'];
|
|
90701
91367
|
};
|
|
90702
91368
|
export declare type MutationCsmAi_DeleteCoachingContentArgs = {
|
|
90703
|
-
|
|
91369
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90704
91370
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
90705
91371
|
csmAiHubId: Scalars['ID']['input'];
|
|
90706
91372
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -90736,7 +91402,7 @@ export declare type MutationCsmAi_UpdateAgentIdentityArgs = {
|
|
|
90736
91402
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
90737
91403
|
};
|
|
90738
91404
|
export declare type MutationCsmAi_UpdateCoachingContentArgs = {
|
|
90739
|
-
|
|
91405
|
+
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
90740
91406
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
90741
91407
|
csmAiHubId: Scalars['ID']['input'];
|
|
90742
91408
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -91230,6 +91896,48 @@ export declare type MutationJira_ScheduleTimelineItemArgs = {
|
|
|
91230
91896
|
cloudId: Scalars['ID']['input'];
|
|
91231
91897
|
input: JiraScheduleTimelineItemInput;
|
|
91232
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
|
+
};
|
|
91233
91941
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
91234
91942
|
input: JiraSetBoardIssueCardCoverInput;
|
|
91235
91943
|
};
|
|
@@ -91445,6 +92153,9 @@ export declare type MutationPolarisDeleteReactionArgs = {
|
|
|
91445
92153
|
export declare type MutationProjects_AddGoalLinkArgs = {
|
|
91446
92154
|
input: TownsquareProjectsAddGoalLink;
|
|
91447
92155
|
};
|
|
92156
|
+
export declare type MutationProjects_AddJiraWorkItemLinkArgs = {
|
|
92157
|
+
input: TownsquareProjectsAddJiraWorkItemLinkInput;
|
|
92158
|
+
};
|
|
91448
92159
|
export declare type MutationProjects_AddMembersArgs = {
|
|
91449
92160
|
input?: InputMaybe<TownsquareProjectsAddMembersInput>;
|
|
91450
92161
|
};
|
|
@@ -91484,6 +92195,9 @@ export declare type MutationProjects_RemoveDependencyArgs = {
|
|
|
91484
92195
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
91485
92196
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
91486
92197
|
};
|
|
92198
|
+
export declare type MutationProjects_RemoveJiraWorkItemLinkArgs = {
|
|
92199
|
+
input: TownsquareProjectsRemoveJiraWorkItemLinkInput;
|
|
92200
|
+
};
|
|
91487
92201
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
91488
92202
|
input: TownsquareProjectsRemoveMemberInput;
|
|
91489
92203
|
};
|
|
@@ -91837,6 +92551,7 @@ export declare type MutationStakeholderComms_BatchProcessDraftComponentsArgs = {
|
|
|
91837
92551
|
batchComponentProcessRequest: StakeholderCommsBatchComponentProcessRequest;
|
|
91838
92552
|
};
|
|
91839
92553
|
export declare type MutationStakeholderComms_BulkCreateStakeholdersArgs = {
|
|
92554
|
+
joiningGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
91840
92555
|
stakeholders: Array<StakeholderCommsCreateStakeholderInput>;
|
|
91841
92556
|
};
|
|
91842
92557
|
export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
@@ -91849,6 +92564,7 @@ export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
|
91849
92564
|
page: StakeholderCommsCreatePageInputType;
|
|
91850
92565
|
};
|
|
91851
92566
|
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
92567
|
+
joiningGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
91852
92568
|
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
91853
92569
|
};
|
|
91854
92570
|
export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArgs = {
|
|
@@ -95042,6 +95758,7 @@ export declare type Query = {
|
|
|
95042
95758
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
95043
95759
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
95044
95760
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
95761
|
+
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
95045
95762
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
95046
95763
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
95047
95764
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -95067,6 +95784,7 @@ export declare type Query = {
|
|
|
95067
95784
|
appContainerServices?: Maybe<AppContainerServices>;
|
|
95068
95785
|
appContainers?: Maybe<Array<AppContainer>>;
|
|
95069
95786
|
appContributors: Array<AppContributor>;
|
|
95787
|
+
appCustomScopes?: Maybe<AppCustomScopeConnection>;
|
|
95070
95788
|
appDeployment?: Maybe<AppDeployment>;
|
|
95071
95789
|
appHostServiceScopes: Array<Maybe<AppHostServiceScope>>;
|
|
95072
95790
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
@@ -95092,6 +95810,8 @@ export declare type Query = {
|
|
|
95092
95810
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
95093
95811
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
95094
95812
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
95813
|
+
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
95814
|
+
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
95095
95815
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
95096
95816
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
95097
95817
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
@@ -95198,6 +95918,7 @@ export declare type Query = {
|
|
|
95198
95918
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
95199
95919
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
95200
95920
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
95921
|
+
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
95201
95922
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
95202
95923
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
95203
95924
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -95208,6 +95929,7 @@ export declare type Query = {
|
|
|
95208
95929
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
95209
95930
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
95210
95931
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
95932
|
+
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
95211
95933
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
95212
95934
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
95213
95935
|
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
@@ -95282,6 +96004,8 @@ export declare type Query = {
|
|
|
95282
96004
|
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
95283
96005
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
95284
96006
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
96007
|
+
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
96008
|
+
crossProjectIssueMentionsInDescription?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95285
96009
|
crossProjectIssuesLinkedToSamePullRequest?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95286
96010
|
crossProjectIssuesMentionedInExternalConversations?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95287
96011
|
crossProjectIssuesMentionedInExternalMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -95519,6 +96243,7 @@ export declare type Query = {
|
|
|
95519
96243
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
95520
96244
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
95521
96245
|
loomToken?: Maybe<LoomToken>;
|
|
96246
|
+
loomUnauthenticated_primaryAuthTypeForEmail?: Maybe<LoomUnauthenticatedUserPrimaryAuthType>;
|
|
95522
96247
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
95523
96248
|
loom_comment?: Maybe<LoomComment>;
|
|
95524
96249
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
@@ -95626,6 +96351,7 @@ export declare type Query = {
|
|
|
95626
96351
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
95627
96352
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
95628
96353
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
96354
|
+
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
95629
96355
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
95630
96356
|
ptpage?: Maybe<PtPage>;
|
|
95631
96357
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
@@ -95640,6 +96366,7 @@ export declare type Query = {
|
|
|
95640
96366
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
95641
96367
|
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
95642
96368
|
quickReload?: Maybe<QuickReload>;
|
|
96369
|
+
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
95643
96370
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
95644
96371
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
95645
96372
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
@@ -95720,6 +96447,7 @@ export declare type Query = {
|
|
|
95720
96447
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
95721
96448
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
95722
96449
|
stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
|
|
96450
|
+
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
95723
96451
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
95724
96452
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
95725
96453
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
@@ -95729,6 +96457,9 @@ export declare type Query = {
|
|
|
95729
96457
|
stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
|
|
95730
96458
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
95731
96459
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
96460
|
+
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
96461
|
+
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
96462
|
+
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
95732
96463
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
95733
96464
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
95734
96465
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -95875,6 +96606,7 @@ export declare type QueryAdmin_UsersArgs = {
|
|
|
95875
96606
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
95876
96607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95877
96608
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
96609
|
+
orgId: Scalars['String']['input'];
|
|
95878
96610
|
searchUserInput?: InputMaybe<AdminSearchUserInput>;
|
|
95879
96611
|
};
|
|
95880
96612
|
export declare type QueryAdmin_WorkspaceByIdArgs = {
|
|
@@ -95945,6 +96677,10 @@ export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
|
95945
96677
|
cloudId: Scalars['String']['input'];
|
|
95946
96678
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
95947
96679
|
};
|
|
96680
|
+
export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
96681
|
+
agentId: Scalars['ID']['input'];
|
|
96682
|
+
cloudId: Scalars['String']['input'];
|
|
96683
|
+
};
|
|
95948
96684
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
95949
96685
|
containerId: Scalars['ID']['input'];
|
|
95950
96686
|
id: Scalars['ID']['input'];
|
|
@@ -96057,6 +96793,12 @@ export declare type QueryAppContainersArgs = {
|
|
|
96057
96793
|
export declare type QueryAppContributorsArgs = {
|
|
96058
96794
|
id: Scalars['ID']['input'];
|
|
96059
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
|
+
};
|
|
96060
96802
|
export declare type QueryAppDeploymentArgs = {
|
|
96061
96803
|
appId: Scalars['ID']['input'];
|
|
96062
96804
|
environmentKey: Scalars['String']['input'];
|
|
@@ -96190,6 +96932,16 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
96190
96932
|
dataSourceId: Scalars['ID']['input'];
|
|
96191
96933
|
workspaceId: Scalars['ID']['input'];
|
|
96192
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
|
+
};
|
|
96193
96945
|
export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
96194
96946
|
cloudId: Scalars['ID']['input'];
|
|
96195
96947
|
objectId: Scalars['ID']['input'];
|
|
@@ -96663,6 +97415,10 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
|
96663
97415
|
export declare type QueryConfluence_LoomEntryPointsArgs = {
|
|
96664
97416
|
cloudId: Scalars['ID']['input'];
|
|
96665
97417
|
};
|
|
97418
|
+
export declare type QueryConfluence_MacroPlaceholderAdfArgs = {
|
|
97419
|
+
id: Scalars['ID']['input'];
|
|
97420
|
+
macroDefinition: ConfluenceMacroDefinitionInput;
|
|
97421
|
+
};
|
|
96666
97422
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
96667
97423
|
cloudId: Scalars['ID']['input'];
|
|
96668
97424
|
contentId: Scalars['ID']['input'];
|
|
@@ -96711,6 +97467,13 @@ export declare type QueryConfluence_PendingRequestExistsArgs = {
|
|
|
96711
97467
|
cloudId: Scalars['ID']['input'];
|
|
96712
97468
|
contentId: Scalars['ID']['input'];
|
|
96713
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
|
+
};
|
|
96714
97477
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
96715
97478
|
cloudId: Scalars['ID']['input'];
|
|
96716
97479
|
spaceKey: Scalars['String']['input'];
|
|
@@ -97055,6 +97818,7 @@ export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
|
97055
97818
|
id: Scalars['ID']['input'];
|
|
97056
97819
|
issueKey: Scalars['String']['input'];
|
|
97057
97820
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97821
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
97058
97822
|
};
|
|
97059
97823
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
97060
97824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97127,6 +97891,16 @@ export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
|
97127
97891
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97128
97892
|
projectId: Scalars['ID']['input'];
|
|
97129
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
|
+
};
|
|
97130
97904
|
export declare type QueryCrossProjectIssuesLinkedToSamePullRequestArgs = {
|
|
97131
97905
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97132
97906
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -97990,6 +98764,9 @@ export declare type QueryLogAccessByContextsArgs = {
|
|
|
97990
98764
|
export declare type QueryLookAndFeelArgs = {
|
|
97991
98765
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
97992
98766
|
};
|
|
98767
|
+
export declare type QueryLoomUnauthenticated_PrimaryAuthTypeForEmailArgs = {
|
|
98768
|
+
email: Scalars['String']['input'];
|
|
98769
|
+
};
|
|
97993
98770
|
export declare type QueryLoom_CommentArgs = {
|
|
97994
98771
|
id: Scalars['ID']['input'];
|
|
97995
98772
|
};
|
|
@@ -98342,6 +99119,12 @@ export declare type QueryProjects_SearchArgs = {
|
|
|
98342
99119
|
searchString: Scalars['String']['input'];
|
|
98343
99120
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
98344
99121
|
};
|
|
99122
|
+
export declare type QueryProjects_SearchJiraWorkItemsToLinkArgs = {
|
|
99123
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99124
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99125
|
+
projectId: Scalars['ID']['input'];
|
|
99126
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
99127
|
+
};
|
|
98345
99128
|
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
98346
99129
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
98347
99130
|
};
|
|
@@ -98394,6 +99177,9 @@ export declare type QueryQuickReloadArgs = {
|
|
|
98394
99177
|
pageId: Scalars['Long']['input'];
|
|
98395
99178
|
since: Scalars['Long']['input'];
|
|
98396
99179
|
};
|
|
99180
|
+
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
99181
|
+
cloudId: Scalars['ID']['input'];
|
|
99182
|
+
};
|
|
98397
99183
|
export declare type QueryRadar_ConnectorsArgs = {
|
|
98398
99184
|
cloudId: Scalars['ID']['input'];
|
|
98399
99185
|
};
|
|
@@ -98735,6 +99521,9 @@ export declare type QueryStakeholderComms_GetPageByNameArgs = {
|
|
|
98735
99521
|
export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
|
|
98736
99522
|
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
98737
99523
|
};
|
|
99524
|
+
export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
|
|
99525
|
+
cloudId: Scalars['String']['input'];
|
|
99526
|
+
};
|
|
98738
99527
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
98739
99528
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
98740
99529
|
};
|
|
@@ -98768,6 +99557,15 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
|
98768
99557
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
98769
99558
|
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
98770
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
|
+
};
|
|
98771
99569
|
export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
98772
99570
|
name: Scalars['String']['input'];
|
|
98773
99571
|
};
|
|
@@ -99065,6 +99863,11 @@ export declare type RadarAriFieldValue = {
|
|
|
99065
99863
|
value?: Maybe<RadarAriObject>;
|
|
99066
99864
|
};
|
|
99067
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
|
+
};
|
|
99068
99871
|
export declare type RadarBooleanFieldValue = {
|
|
99069
99872
|
__typename?: 'RadarBooleanFieldValue';
|
|
99070
99873
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101304,6 +102107,16 @@ export declare type SearchAnalyticsInput = {
|
|
|
101304
102107
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
101305
102108
|
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
101306
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
|
+
};
|
|
101307
102120
|
export declare type SearchBoardFilter = {
|
|
101308
102121
|
negateProjectFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101309
102122
|
projectARI?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -101319,6 +102132,7 @@ export declare enum SearchCombinationType {
|
|
|
101319
102132
|
}
|
|
101320
102133
|
export declare type SearchCommonFilter = {
|
|
101321
102134
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102135
|
+
participants?: InputMaybe<SearchParticipants>;
|
|
101322
102136
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
101323
102137
|
};
|
|
101324
102138
|
export declare type SearchCommonRangeFilter = {
|
|
@@ -101500,6 +102314,7 @@ export declare type SearchFieldLookAndFeel = {
|
|
|
101500
102314
|
color?: Maybe<Scalars['String']['output']>;
|
|
101501
102315
|
};
|
|
101502
102316
|
export declare type SearchFilterInput = {
|
|
102317
|
+
assetsFilters?: InputMaybe<SearchAssetsFilter>;
|
|
101503
102318
|
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
101504
102319
|
compassFilters?: InputMaybe<SearchCompassFilter>;
|
|
101505
102320
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
@@ -101696,6 +102511,32 @@ export declare type SearchResult = {
|
|
|
101696
102511
|
type: SearchResultType;
|
|
101697
102512
|
url: Scalars['URL']['output'];
|
|
101698
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
|
+
};
|
|
101699
102540
|
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
101700
102541
|
__typename?: 'SearchResultAtlasGoal';
|
|
101701
102542
|
description: Scalars['String']['output'];
|
|
@@ -102113,6 +102954,8 @@ export declare enum SearchResultType {
|
|
|
102113
102954
|
Issue = "issue",
|
|
102114
102955
|
Learning = "learning",
|
|
102115
102956
|
Message = "message",
|
|
102957
|
+
ObjectSchema = "object_schema",
|
|
102958
|
+
ObjectType = "object_type",
|
|
102116
102959
|
Page = "page",
|
|
102117
102960
|
Plan = "plan",
|
|
102118
102961
|
Presentation = "presentation",
|
|
@@ -120217,6 +121060,7 @@ export declare type ShepherdCreateTestAlertPayload = Payload & {
|
|
|
120217
121060
|
export declare type ShepherdCreateWebhookInput = {
|
|
120218
121061
|
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
120219
121062
|
callbackURL: Scalars['URL']['input'];
|
|
121063
|
+
category?: InputMaybe<ShepherdWebhookSubscriptionCategory>;
|
|
120220
121064
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
120221
121065
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
120222
121066
|
};
|
|
@@ -121007,6 +121851,7 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
121007
121851
|
__typename?: 'ShepherdWebhookSubscription';
|
|
121008
121852
|
authHeaderTruncated?: Maybe<Scalars['String']['output']>;
|
|
121009
121853
|
callbackURL: Scalars['String']['output'];
|
|
121854
|
+
category: ShepherdWebhookSubscriptionCategory;
|
|
121010
121855
|
createdBy: Scalars['String']['output'];
|
|
121011
121856
|
createdOn: Scalars['DateTime']['output'];
|
|
121012
121857
|
destinationType: ShepherdWebhookDestinationType;
|
|
@@ -121015,6 +121860,10 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
121015
121860
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
121016
121861
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
121017
121862
|
};
|
|
121863
|
+
export declare enum ShepherdWebhookSubscriptionCategory {
|
|
121864
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
121865
|
+
Webhook = "WEBHOOK"
|
|
121866
|
+
}
|
|
121018
121867
|
export declare type ShepherdWorkspace = Node & {
|
|
121019
121868
|
__typename?: 'ShepherdWorkspace';
|
|
121020
121869
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -122947,6 +123796,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
122947
123796
|
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
122948
123797
|
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
122949
123798
|
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
123799
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
122950
123800
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
122951
123801
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
122952
123802
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -122974,6 +123824,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
122974
123824
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
122975
123825
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
122976
123826
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
123827
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
122977
123828
|
};
|
|
122978
123829
|
export declare type StakeholderCommsCreateStakeholderGroupInput = {
|
|
122979
123830
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -122989,12 +123840,14 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
122989
123840
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
122990
123841
|
addedFrom: StakeholderCommsAddedFromType;
|
|
122991
123842
|
assignmentType: StakeholderCommsAssignmentType;
|
|
123843
|
+
atlassianTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
122992
123844
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
122993
123845
|
externalAssignmentId: Scalars['String']['input'];
|
|
122994
123846
|
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
122995
123847
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
122996
123848
|
preference: StakeholderCommsPreferencesInput;
|
|
122997
123849
|
skipConfirmation: Scalars['Boolean']['input'];
|
|
123850
|
+
stakeholderGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
122998
123851
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
122999
123852
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
123000
123853
|
};
|
|
@@ -123126,6 +123979,7 @@ export declare type StakeholderCommsPage = {
|
|
|
123126
123979
|
allowRssAtomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
123127
123980
|
blackHole?: Maybe<Scalars['Boolean']['output']>;
|
|
123128
123981
|
bodyConfig?: Maybe<StakeholderCommsBodyConfigType>;
|
|
123982
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
123129
123983
|
colours?: Maybe<StakeholderCommsColoursType>;
|
|
123130
123984
|
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
123131
123985
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -123177,6 +124031,16 @@ export declare type StakeholderCommsPageResponse = {
|
|
|
123177
124031
|
error?: Maybe<Scalars['String']['output']>;
|
|
123178
124032
|
page?: Maybe<StakeholderCommsPage>;
|
|
123179
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
|
+
};
|
|
123180
124044
|
export declare enum StakeholderCommsPageTheme {
|
|
123181
124045
|
AllSystemsGlow = "ALL_SYSTEMS_GLOW",
|
|
123182
124046
|
Blank = "BLANK",
|
|
@@ -123193,6 +124057,11 @@ export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
|
123193
124057
|
pageId?: Maybe<Scalars['String']['output']>;
|
|
123194
124058
|
uptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
123195
124059
|
};
|
|
124060
|
+
export declare type StakeholderCommsPagesSummaryByCloudIdResponse = {
|
|
124061
|
+
__typename?: 'StakeholderCommsPagesSummaryByCloudIdResponse';
|
|
124062
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
124063
|
+
pages: Array<StakeholderCommsPageSummary>;
|
|
124064
|
+
};
|
|
123196
124065
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
123197
124066
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
123198
124067
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -123248,6 +124117,7 @@ export declare type StakeholderCommsStakeholder = {
|
|
|
123248
124117
|
__typename?: 'StakeholderCommsStakeholder';
|
|
123249
124118
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
123250
124119
|
ari?: Maybe<Scalars['String']['output']>;
|
|
124120
|
+
atlassianTeamId?: Maybe<Scalars['String']['output']>;
|
|
123251
124121
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
123252
124122
|
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
123253
124123
|
id: Scalars['ID']['output'];
|
|
@@ -123255,6 +124125,7 @@ export declare type StakeholderCommsStakeholder = {
|
|
|
123255
124125
|
name?: Maybe<Scalars['String']['output']>;
|
|
123256
124126
|
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
123257
124127
|
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
124128
|
+
stakeholderGroupId?: Maybe<Scalars['String']['output']>;
|
|
123258
124129
|
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
123259
124130
|
type?: Maybe<StakeholderCommsStakeholderType>;
|
|
123260
124131
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -123391,7 +124262,9 @@ export declare type StakeholderCommsStakeholderGroupsAndStakeholders = {
|
|
|
123391
124262
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
123392
124263
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
123393
124264
|
ari?: InputMaybe<Scalars['String']['input']>;
|
|
124265
|
+
atlassianTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
123394
124266
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
124267
|
+
stakeholderGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
123395
124268
|
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
123396
124269
|
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
123397
124270
|
};
|
|
@@ -123407,6 +124280,7 @@ export declare enum StakeholderCommsStakeholderStatus {
|
|
|
123407
124280
|
}
|
|
123408
124281
|
export declare enum StakeholderCommsStakeholderType {
|
|
123409
124282
|
External = "EXTERNAL",
|
|
124283
|
+
Group = "GROUP",
|
|
123410
124284
|
Internal = "INTERNAL",
|
|
123411
124285
|
Team = "TEAM"
|
|
123412
124286
|
}
|
|
@@ -123416,6 +124290,7 @@ export declare type StakeholderCommsUpdatePageInputType = {
|
|
|
123416
124290
|
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123417
124291
|
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123418
124292
|
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
124293
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
123419
124294
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
123420
124295
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
123421
124296
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123465,6 +124340,18 @@ export declare enum StakeholderCommsUptimeStyle {
|
|
|
123465
124340
|
DetailCard = "DETAIL_CARD",
|
|
123466
124341
|
OnlyStatus = "ONLY_STATUS"
|
|
123467
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
|
+
};
|
|
123468
124355
|
export declare type StalePagePayload = {
|
|
123469
124356
|
__typename?: 'StalePagePayload';
|
|
123470
124357
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -123595,8 +124482,10 @@ export declare type Subscription = {
|
|
|
123595
124482
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
123596
124483
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
123597
124484
|
devai_onBoysenberrySessionCreatedByIssueKeyAndCloudId?: Maybe<DevAiRovoDevSession>;
|
|
124485
|
+
devai_onBoysenberrySessionCreatedByWorkspaceAri?: Maybe<DevAiRovoDevSession>;
|
|
123598
124486
|
devai_onBoysenberrySessionCreatedOnJiraIssue?: Maybe<DevAiRovoDevSessionConnection>;
|
|
123599
124487
|
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
124488
|
+
devai_onBoysenberrySessionUpdatedByWorkspaceAri?: Maybe<DevAiRovoDevSession>;
|
|
123600
124489
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
123601
124490
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
123602
124491
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -123629,6 +124518,9 @@ export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByIssueKeyAndCl
|
|
|
123629
124518
|
cloudId: Scalars['ID']['input'];
|
|
123630
124519
|
issueKey: Scalars['String']['input'];
|
|
123631
124520
|
};
|
|
124521
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByWorkspaceAriArgs = {
|
|
124522
|
+
workspaceAri: Scalars['ID']['input'];
|
|
124523
|
+
};
|
|
123632
124524
|
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs = {
|
|
123633
124525
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123634
124526
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -123638,6 +124530,9 @@ export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs
|
|
|
123638
124530
|
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
123639
124531
|
sessionAri: Scalars['ID']['input'];
|
|
123640
124532
|
};
|
|
124533
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedByWorkspaceAriArgs = {
|
|
124534
|
+
workspaceAri: Scalars['ID']['input'];
|
|
124535
|
+
};
|
|
123641
124536
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
123642
124537
|
cloudId: Scalars['ID']['input'];
|
|
123643
124538
|
jobId: Scalars['ID']['input'];
|
|
@@ -123704,6 +124599,7 @@ export declare type SupportRequest = {
|
|
|
123704
124599
|
lastComment: SupportRequestComments;
|
|
123705
124600
|
migrationPhase?: Maybe<Scalars['String']['output']>;
|
|
123706
124601
|
migrationProducts?: Maybe<Scalars['String']['output']>;
|
|
124602
|
+
orgParticipants?: Maybe<Array<SupportRequestOrganization>>;
|
|
123707
124603
|
participants: Array<SupportRequestUser>;
|
|
123708
124604
|
planToMigrate?: Maybe<Scalars['String']['output']>;
|
|
123709
124605
|
projectName: Scalars['String']['output'];
|
|
@@ -124460,6 +125356,7 @@ export declare type TeamV2 = Node & {
|
|
|
124460
125356
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
124461
125357
|
hierarchy?: Maybe<TeamHierarchy>;
|
|
124462
125358
|
id: Scalars['ID']['output'];
|
|
125359
|
+
isCurrentUserMemberOfTeam?: Maybe<Scalars['Boolean']['output']>;
|
|
124463
125360
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
124464
125361
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
124465
125362
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -124595,6 +125492,7 @@ export declare type TenantContextActivationId = {
|
|
|
124595
125492
|
__typename?: 'TenantContextActivationId';
|
|
124596
125493
|
active?: Maybe<Scalars['String']['output']>;
|
|
124597
125494
|
product?: Maybe<Scalars['String']['output']>;
|
|
125495
|
+
targetRegion?: Maybe<Scalars['String']['output']>;
|
|
124598
125496
|
};
|
|
124599
125497
|
export declare type TenantContextCustomDomain = {
|
|
124600
125498
|
__typename?: 'TenantContextCustomDomain';
|
|
@@ -125286,6 +126184,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
125286
126184
|
description?: Maybe<Scalars['String']['output']>;
|
|
125287
126185
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
125288
126186
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
126187
|
+
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
125289
126188
|
goalType?: Maybe<TownsquareGoalType>;
|
|
125290
126189
|
icon?: Maybe<TownsquareGoalIcon>;
|
|
125291
126190
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
@@ -125320,6 +126219,10 @@ export declare type TownsquareGoalCommentsArgs = {
|
|
|
125320
126219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125321
126220
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
125322
126221
|
};
|
|
126222
|
+
export declare type TownsquareGoalFocusAreasArgs = {
|
|
126223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126225
|
+
};
|
|
125323
126226
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
125324
126227
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125325
126228
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -125692,6 +126595,16 @@ export declare type TownsquareIconUrIs = {
|
|
|
125692
126595
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
125693
126596
|
square?: Maybe<TownsquareThemeUrIs>;
|
|
125694
126597
|
};
|
|
126598
|
+
export declare type TownsquareJiraWorkItemConnection = {
|
|
126599
|
+
__typename?: 'TownsquareJiraWorkItemConnection';
|
|
126600
|
+
edges?: Maybe<Array<Maybe<TownsquareJiraWorkItemEdge>>>;
|
|
126601
|
+
pageInfo: PageInfo;
|
|
126602
|
+
};
|
|
126603
|
+
export declare type TownsquareJiraWorkItemEdge = {
|
|
126604
|
+
__typename?: 'TownsquareJiraWorkItemEdge';
|
|
126605
|
+
cursor: Scalars['String']['output'];
|
|
126606
|
+
node?: Maybe<JiraIssue>;
|
|
126607
|
+
};
|
|
125695
126608
|
export declare type TownsquareLearning = Node & TownsquareHighlight & {
|
|
125696
126609
|
__typename?: 'TownsquareLearning';
|
|
125697
126610
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -125869,6 +126782,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
125869
126782
|
description?: Maybe<TownsquareProjectDescription>;
|
|
125870
126783
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
125871
126784
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
126785
|
+
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
125872
126786
|
fusion?: Maybe<TownsquareFusionDetails>;
|
|
125873
126787
|
goals?: Maybe<TownsquareGoalConnection>;
|
|
125874
126788
|
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
@@ -125877,6 +126791,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
125877
126791
|
iconUrl?: Maybe<TownsquareIconUrIs>;
|
|
125878
126792
|
id: Scalars['ID']['output'];
|
|
125879
126793
|
isArchived: Scalars['Boolean']['output'];
|
|
126794
|
+
isJiraWorkItemsLimitReached?: Maybe<Scalars['Boolean']['output']>;
|
|
125880
126795
|
isPrivate: Scalars['Boolean']['output'];
|
|
125881
126796
|
key: Scalars['String']['output'];
|
|
125882
126797
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -125931,6 +126846,10 @@ export declare type TownsquareProjectDependenciesArgs = {
|
|
|
125931
126846
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125932
126847
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
125933
126848
|
};
|
|
126849
|
+
export declare type TownsquareProjectFocusAreasArgs = {
|
|
126850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126852
|
+
};
|
|
125934
126853
|
export declare type TownsquareProjectGoalsArgs = {
|
|
125935
126854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
125936
126855
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -126161,6 +127080,16 @@ export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
|
126161
127080
|
project?: Maybe<TownsquareProject>;
|
|
126162
127081
|
success: Scalars['Boolean']['output'];
|
|
126163
127082
|
};
|
|
127083
|
+
export declare type TownsquareProjectsAddJiraWorkItemLinkInput = {
|
|
127084
|
+
projectId: Scalars['ID']['input'];
|
|
127085
|
+
workItemId: Scalars['ID']['input'];
|
|
127086
|
+
};
|
|
127087
|
+
export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
|
|
127088
|
+
__typename?: 'TownsquareProjectsAddJiraWorkItemLinkPayload';
|
|
127089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127090
|
+
success: Scalars['Boolean']['output'];
|
|
127091
|
+
workItem?: Maybe<JiraIssue>;
|
|
127092
|
+
};
|
|
126164
127093
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
126165
127094
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126166
127095
|
projectId: Scalars['ID']['input'];
|
|
@@ -126344,6 +127273,16 @@ export declare type TownsquareProjectsRemoveGoalLinkPayload = {
|
|
|
126344
127273
|
project?: Maybe<TownsquareProject>;
|
|
126345
127274
|
success: Scalars['Boolean']['output'];
|
|
126346
127275
|
};
|
|
127276
|
+
export declare type TownsquareProjectsRemoveJiraWorkItemLinkInput = {
|
|
127277
|
+
projectId: Scalars['ID']['input'];
|
|
127278
|
+
workItemId: Scalars['ID']['input'];
|
|
127279
|
+
};
|
|
127280
|
+
export declare type TownsquareProjectsRemoveJiraWorkItemLinkPayload = {
|
|
127281
|
+
__typename?: 'TownsquareProjectsRemoveJiraWorkItemLinkPayload';
|
|
127282
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127283
|
+
success: Scalars['Boolean']['output'];
|
|
127284
|
+
workItem?: Maybe<JiraIssue>;
|
|
127285
|
+
};
|
|
126347
127286
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
126348
127287
|
projectId: Scalars['ID']['input'];
|
|
126349
127288
|
userId: Scalars['ID']['input'];
|
|
@@ -126808,6 +127747,7 @@ export declare type TrelloAction = {
|
|
|
126808
127747
|
id: Scalars['ID']['output'];
|
|
126809
127748
|
limits?: Maybe<TrelloActionLimits>;
|
|
126810
127749
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127750
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
126811
127751
|
type?: Maybe<Scalars['String']['output']>;
|
|
126812
127752
|
};
|
|
126813
127753
|
export declare type TrelloActionAttachmentEntity = {
|
|
@@ -126937,6 +127877,7 @@ export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardA
|
|
|
126937
127877
|
id: Scalars['ID']['output'];
|
|
126938
127878
|
limits?: Maybe<TrelloActionLimits>;
|
|
126939
127879
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127880
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
126940
127881
|
type?: Maybe<Scalars['String']['output']>;
|
|
126941
127882
|
};
|
|
126942
127883
|
export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
@@ -126970,6 +127911,7 @@ export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardAc
|
|
|
126970
127911
|
id: Scalars['ID']['output'];
|
|
126971
127912
|
limits?: Maybe<TrelloActionLimits>;
|
|
126972
127913
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127914
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
126973
127915
|
type?: Maybe<Scalars['String']['output']>;
|
|
126974
127916
|
};
|
|
126975
127917
|
export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
@@ -126995,6 +127937,7 @@ export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActio
|
|
|
126995
127937
|
limits?: Maybe<TrelloActionLimits>;
|
|
126996
127938
|
member?: Maybe<TrelloMember>;
|
|
126997
127939
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
127940
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
126998
127941
|
type?: Maybe<Scalars['String']['output']>;
|
|
126999
127942
|
};
|
|
127000
127943
|
export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
@@ -127692,9 +128635,10 @@ export declare enum TrelloCardActionType {
|
|
|
127692
128635
|
UpdateCardClosed = "UPDATE_CARD_CLOSED",
|
|
127693
128636
|
UpdateCardComplete = "UPDATE_CARD_COMPLETE",
|
|
127694
128637
|
UpdateCardDue = "UPDATE_CARD_DUE",
|
|
128638
|
+
UpdateCardRecurrenceRule = "UPDATE_CARD_RECURRENCE_RULE",
|
|
127695
128639
|
UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
|
|
127696
128640
|
}
|
|
127697
|
-
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCardAction | TrelloCopyCommentCardAction | TrelloCopyInboxCardAction | TrelloCreateCardAction | TrelloCreateCardFromCheckItemAction | TrelloCreateCardFromEmailAction | TrelloCreateInboxCardAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction | TrelloUpdateCheckItemStateOnCardAction | TrelloUpdateCustomFieldItemAction;
|
|
128641
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCardAction | TrelloCopyCommentCardAction | TrelloCopyInboxCardAction | TrelloCreateCardAction | TrelloCreateCardFromCheckItemAction | TrelloCreateCardFromEmailAction | TrelloCreateInboxCardAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction | TrelloUpdateCardRecurrenceRuleAction | TrelloUpdateCheckItemStateOnCardAction | TrelloUpdateCustomFieldItemAction;
|
|
127698
128642
|
export declare type TrelloCardAttachmentsByType = {
|
|
127699
128643
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
127700
128644
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -128063,6 +129007,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
128063
129007
|
id: Scalars['ID']['output'];
|
|
128064
129008
|
limits?: Maybe<TrelloActionLimits>;
|
|
128065
129009
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129010
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128066
129011
|
type?: Maybe<Scalars['String']['output']>;
|
|
128067
129012
|
};
|
|
128068
129013
|
export declare type TrelloCommentCardActionDisplayEntities = {
|
|
@@ -128092,6 +129037,7 @@ export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData &
|
|
|
128092
129037
|
limits?: Maybe<TrelloActionLimits>;
|
|
128093
129038
|
list?: Maybe<TrelloList>;
|
|
128094
129039
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129040
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128095
129041
|
type?: Maybe<Scalars['String']['output']>;
|
|
128096
129042
|
};
|
|
128097
129043
|
export declare type TrelloCopyCardActionDisplayEntities = {
|
|
@@ -128113,6 +129059,7 @@ export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActio
|
|
|
128113
129059
|
id: Scalars['ID']['output'];
|
|
128114
129060
|
limits?: Maybe<TrelloActionLimits>;
|
|
128115
129061
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129062
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128116
129063
|
sourceCard?: Maybe<TrelloCopiedCardSource>;
|
|
128117
129064
|
type?: Maybe<Scalars['String']['output']>;
|
|
128118
129065
|
};
|
|
@@ -128137,6 +129084,7 @@ export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionD
|
|
|
128137
129084
|
limits?: Maybe<TrelloActionLimits>;
|
|
128138
129085
|
list?: Maybe<TrelloList>;
|
|
128139
129086
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129087
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128140
129088
|
type?: Maybe<Scalars['String']['output']>;
|
|
128141
129089
|
};
|
|
128142
129090
|
export declare type TrelloCopyInboxCardActionDisplayEntities = {
|
|
@@ -128173,6 +129121,7 @@ export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData
|
|
|
128173
129121
|
id: Scalars['ID']['output'];
|
|
128174
129122
|
limits?: Maybe<TrelloActionLimits>;
|
|
128175
129123
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129124
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128176
129125
|
type?: Maybe<Scalars['String']['output']>;
|
|
128177
129126
|
};
|
|
128178
129127
|
export declare type TrelloCreateCardActionDisplayEntities = {
|
|
@@ -128196,6 +129145,7 @@ export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloC
|
|
|
128196
129145
|
limits?: Maybe<TrelloActionLimits>;
|
|
128197
129146
|
list?: Maybe<TrelloList>;
|
|
128198
129147
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129148
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128199
129149
|
type?: Maybe<Scalars['String']['output']>;
|
|
128200
129150
|
};
|
|
128201
129151
|
export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
@@ -128217,6 +129167,7 @@ export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardA
|
|
|
128217
129167
|
id: Scalars['ID']['output'];
|
|
128218
129168
|
limits?: Maybe<TrelloActionLimits>;
|
|
128219
129169
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129170
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128220
129171
|
type?: Maybe<Scalars['String']['output']>;
|
|
128221
129172
|
};
|
|
128222
129173
|
export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
@@ -128252,6 +129203,7 @@ export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActio
|
|
|
128252
129203
|
id: Scalars['ID']['output'];
|
|
128253
129204
|
limits?: Maybe<TrelloActionLimits>;
|
|
128254
129205
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129206
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128255
129207
|
type?: Maybe<Scalars['String']['output']>;
|
|
128256
129208
|
};
|
|
128257
129209
|
export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
@@ -128427,6 +129379,7 @@ export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & Trello
|
|
|
128427
129379
|
id: Scalars['ID']['output'];
|
|
128428
129380
|
limits?: Maybe<TrelloActionLimits>;
|
|
128429
129381
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129382
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128430
129383
|
type?: Maybe<Scalars['String']['output']>;
|
|
128431
129384
|
};
|
|
128432
129385
|
export declare type TrelloDeleteAttachmentFromCardActionDisplayEntities = {
|
|
@@ -128867,6 +129820,18 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
128867
129820
|
membershipType?: InputMaybe<TrelloWorkspaceMembershipType>;
|
|
128868
129821
|
tier?: InputMaybe<TrelloWorkspaceTier>;
|
|
128869
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
|
+
};
|
|
128870
129835
|
export declare type TrelloMirrorCard = {
|
|
128871
129836
|
__typename?: 'TrelloMirrorCard';
|
|
128872
129837
|
id: Scalars['ID']['output'];
|
|
@@ -128898,6 +129863,7 @@ export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData &
|
|
|
128898
129863
|
listAfter?: Maybe<TrelloList>;
|
|
128899
129864
|
listBefore?: Maybe<TrelloList>;
|
|
128900
129865
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129866
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128901
129867
|
type?: Maybe<Scalars['String']['output']>;
|
|
128902
129868
|
};
|
|
128903
129869
|
export declare type TrelloMoveCardActionDisplayEntities = {
|
|
@@ -128925,6 +129891,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
128925
129891
|
id: Scalars['ID']['output'];
|
|
128926
129892
|
limits?: Maybe<TrelloActionLimits>;
|
|
128927
129893
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129894
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128928
129895
|
type?: Maybe<Scalars['String']['output']>;
|
|
128929
129896
|
};
|
|
128930
129897
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
@@ -128939,6 +129906,7 @@ export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCard
|
|
|
128939
129906
|
id: Scalars['ID']['output'];
|
|
128940
129907
|
limits?: Maybe<TrelloActionLimits>;
|
|
128941
129908
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
129909
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
128942
129910
|
type?: Maybe<Scalars['String']['output']>;
|
|
128943
129911
|
};
|
|
128944
129912
|
export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
@@ -128963,6 +129931,7 @@ export declare type TrelloMutationApi = {
|
|
|
128963
129931
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
128964
129932
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
128965
129933
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
129934
|
+
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
128966
129935
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
128967
129936
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
128968
129937
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -129034,6 +130003,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
|
129034
130003
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
129035
130004
|
input: TrelloEditPlannerCalendarEventInput;
|
|
129036
130005
|
};
|
|
130006
|
+
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
130007
|
+
input: TrelloMergeCardsInput;
|
|
130008
|
+
};
|
|
129037
130009
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
129038
130010
|
input: TrelloPinCardInput;
|
|
129039
130011
|
};
|
|
@@ -129113,9 +130085,9 @@ export declare type TrelloOAuth2Client = {
|
|
|
129113
130085
|
__typename?: 'TrelloOAuth2Client';
|
|
129114
130086
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
129115
130087
|
clientId: Scalars['String']['output'];
|
|
129116
|
-
clientSecret
|
|
129117
|
-
clientType
|
|
129118
|
-
profile
|
|
130088
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
130089
|
+
clientType?: Maybe<Scalars['String']['output']>;
|
|
130090
|
+
profile?: Maybe<Scalars['String']['output']>;
|
|
129119
130091
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
129120
130092
|
};
|
|
129121
130093
|
export declare type TrelloOAuth2Scope = {
|
|
@@ -129739,6 +130711,10 @@ export declare type TrelloReaction = {
|
|
|
129739
130711
|
member?: Maybe<TrelloMember>;
|
|
129740
130712
|
objectId: Scalars['ID']['output'];
|
|
129741
130713
|
};
|
|
130714
|
+
export declare type TrelloReactionDeleted = {
|
|
130715
|
+
__typename?: 'TrelloReactionDeleted';
|
|
130716
|
+
objectId: Scalars['ID']['output'];
|
|
130717
|
+
};
|
|
129742
130718
|
export declare type TrelloReactionLimits = {
|
|
129743
130719
|
__typename?: 'TrelloReactionLimits';
|
|
129744
130720
|
perAction?: Maybe<TrelloLimitProps>;
|
|
@@ -129777,6 +130753,7 @@ export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloC
|
|
|
129777
130753
|
id: Scalars['ID']['output'];
|
|
129778
130754
|
limits?: Maybe<TrelloActionLimits>;
|
|
129779
130755
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130756
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129780
130757
|
type?: Maybe<Scalars['String']['output']>;
|
|
129781
130758
|
};
|
|
129782
130759
|
export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
|
|
@@ -129798,6 +130775,7 @@ export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCard
|
|
|
129798
130775
|
limits?: Maybe<TrelloActionLimits>;
|
|
129799
130776
|
member?: Maybe<TrelloMember>;
|
|
129800
130777
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
130778
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
129801
130779
|
type?: Maybe<Scalars['String']['output']>;
|
|
129802
130780
|
};
|
|
129803
130781
|
export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
@@ -130074,6 +131052,7 @@ export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActi
|
|
|
130074
131052
|
id: Scalars['ID']['output'];
|
|
130075
131053
|
limits?: Maybe<TrelloActionLimits>;
|
|
130076
131054
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131055
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130077
131056
|
type?: Maybe<Scalars['String']['output']>;
|
|
130078
131057
|
};
|
|
130079
131058
|
export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
@@ -130093,6 +131072,7 @@ export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardAc
|
|
|
130093
131072
|
id: Scalars['ID']['output'];
|
|
130094
131073
|
limits?: Maybe<TrelloActionLimits>;
|
|
130095
131074
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131075
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130096
131076
|
type?: Maybe<Scalars['String']['output']>;
|
|
130097
131077
|
};
|
|
130098
131078
|
export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
|
|
@@ -130112,6 +131092,7 @@ export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionD
|
|
|
130112
131092
|
id: Scalars['ID']['output'];
|
|
130113
131093
|
limits?: Maybe<TrelloActionLimits>;
|
|
130114
131094
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131095
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130115
131096
|
type?: Maybe<Scalars['String']['output']>;
|
|
130116
131097
|
};
|
|
130117
131098
|
export declare type TrelloUpdateCardDueActionDisplayEntities = {
|
|
@@ -130140,6 +131121,26 @@ export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payl
|
|
|
130140
131121
|
eventCard?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
130141
131122
|
success: Scalars['Boolean']['output'];
|
|
130142
131123
|
};
|
|
131124
|
+
export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & TrelloCardActionData & {
|
|
131125
|
+
__typename?: 'TrelloUpdateCardRecurrenceRuleAction';
|
|
131126
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
131127
|
+
board?: Maybe<TrelloBoard>;
|
|
131128
|
+
card?: Maybe<TrelloCard>;
|
|
131129
|
+
creator?: Maybe<TrelloMember>;
|
|
131130
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
131131
|
+
displayEntities?: Maybe<TrelloUpdateCardRecurrenceRuleActionDisplayEntities>;
|
|
131132
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
131133
|
+
id: Scalars['ID']['output'];
|
|
131134
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
131135
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131136
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
131137
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
131138
|
+
};
|
|
131139
|
+
export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
|
|
131140
|
+
__typename?: 'TrelloUpdateCardRecurrenceRuleActionDisplayEntities';
|
|
131141
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
131142
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
131143
|
+
};
|
|
130143
131144
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
130144
131145
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
130145
131146
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -130154,6 +131155,7 @@ export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & Trel
|
|
|
130154
131155
|
id: Scalars['ID']['output'];
|
|
130155
131156
|
limits?: Maybe<TrelloActionLimits>;
|
|
130156
131157
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131158
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130157
131159
|
type?: Maybe<Scalars['String']['output']>;
|
|
130158
131160
|
};
|
|
130159
131161
|
export declare type TrelloUpdateCheckItemStateOnCardActionDisplayEntities = {
|
|
@@ -130176,6 +131178,7 @@ export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCar
|
|
|
130176
131178
|
id: Scalars['ID']['output'];
|
|
130177
131179
|
limits?: Maybe<TrelloActionLimits>;
|
|
130178
131180
|
reactions?: Maybe<Array<TrelloReaction>>;
|
|
131181
|
+
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
130179
131182
|
type?: Maybe<Scalars['String']['output']>;
|
|
130180
131183
|
};
|
|
130181
131184
|
export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
@@ -130209,6 +131212,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
130209
131212
|
appDescription?: Maybe<Scalars['String']['output']>;
|
|
130210
131213
|
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
130211
131214
|
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
131215
|
+
application?: Maybe<TrelloApplication>;
|
|
130212
131216
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
130213
131217
|
clientType?: Maybe<Scalars['String']['output']>;
|
|
130214
131218
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -133774,6 +134778,7 @@ export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs =
|
|
|
133774
134778
|
export declare type WorkSuggestionsByVersionResponse = {
|
|
133775
134779
|
__typename?: 'WorkSuggestionsByVersionResponse';
|
|
133776
134780
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
134781
|
+
issueCandidateSuggestions?: Maybe<Array<WorkSuggestionsVersionIssueCandidateTask>>;
|
|
133777
134782
|
issueMissingDetailsSuggestions?: Maybe<Array<WorkSuggestionsIssueMissingDetailsTask>>;
|
|
133778
134783
|
};
|
|
133779
134784
|
export declare type WorkSuggestionsCommon = {
|
|
@@ -134181,6 +135186,37 @@ export declare type WorkSuggestionsUserProfile = {
|
|
|
134181
135186
|
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
134182
135187
|
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
134183
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
|
+
};
|
|
134184
135220
|
export declare enum WorkSuggestionsVulnerabilityStatus {
|
|
134185
135221
|
Closed = "CLOSED",
|
|
134186
135222
|
Ignored = "IGNORED",
|