@forge/cli-shared 9.2.0-next.5 → 9.2.0-next.6
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 +6 -0
- package/out/graphql/graphql-types.d.ts +867 -79
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +127 -55
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -2
- package/package.json +1 -1
|
@@ -436,6 +436,7 @@ export type AiOpsIncidentSuggestedRcaWithAutomation = AiOpsIncidentSuggestedActi
|
|
|
436
436
|
export type AiOpsIncidentSuggestedResource = {
|
|
437
437
|
__typename?: 'AIOpsIncidentSuggestedResource';
|
|
438
438
|
link?: Maybe<Scalars['String']['output']>;
|
|
439
|
+
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
439
440
|
resourceGroupType?: Maybe<AiOpsIncidentSuggestedResourceGroupType>;
|
|
440
441
|
resourceId?: Maybe<Scalars['String']['output']>;
|
|
441
442
|
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -475,6 +476,7 @@ export type AiOpsIncidentSuggestedResourcesInProgress = {
|
|
|
475
476
|
};
|
|
476
477
|
export type AiOpsIncidentSuggestedResourcesResponse = {
|
|
477
478
|
__typename?: 'AIOpsIncidentSuggestedResourcesResponse';
|
|
479
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
478
480
|
resources?: Maybe<Array<AiOpsIncidentSuggestedResource>>;
|
|
479
481
|
};
|
|
480
482
|
export type AiOpsIncidentSuggestedResourcesResult = AiOpsIncidentSuggestedResourcesInProgress | AiOpsIncidentSuggestedResourcesResponse;
|
|
@@ -811,6 +813,7 @@ export type AiOpsTriggerInvestigationInput = {
|
|
|
811
813
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
812
814
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
813
815
|
rcaMode?: InputMaybe<AiOpsRcaMode>;
|
|
816
|
+
rerun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
814
817
|
sourceEntityId: Scalars['ID']['input'];
|
|
815
818
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
816
819
|
userContext?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6043,6 +6046,7 @@ export type AgentStudioAgentTemplate = {
|
|
|
6043
6046
|
howItWorks?: Maybe<Array<Maybe<AgentStudioAgentTemplateHowItWorksStep>>>;
|
|
6044
6047
|
id: Scalars['ID']['output'];
|
|
6045
6048
|
name?: Maybe<Scalars['String']['output']>;
|
|
6049
|
+
products?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6046
6050
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6047
6051
|
};
|
|
6048
6052
|
export declare enum AgentStudioAgentTemplateHowItWorksRole {
|
|
@@ -7849,6 +7853,7 @@ export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
|
7849
7853
|
}
|
|
7850
7854
|
export type AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesInput = {
|
|
7851
7855
|
cloudId: Scalars['ID']['input'];
|
|
7856
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
7852
7857
|
entries: Array<AgentWorkspaceBulkUpsertDraftedRoutingTableEntryInput>;
|
|
7853
7858
|
projectKey: Scalars['String']['input'];
|
|
7854
7859
|
};
|
|
@@ -8600,6 +8605,17 @@ export type AgentWorkspaceServiceEdge = {
|
|
|
8600
8605
|
cursor: Scalars['String']['output'];
|
|
8601
8606
|
node: AgentWorkspaceService;
|
|
8602
8607
|
};
|
|
8608
|
+
export type AgentWorkspaceServiceOptionsPage = {
|
|
8609
|
+
__typename?: 'AgentWorkspaceServiceOptionsPage';
|
|
8610
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
8611
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
8612
|
+
limit: Scalars['Int']['output'];
|
|
8613
|
+
offset: Scalars['Int']['output'];
|
|
8614
|
+
page: Scalars['Int']['output'];
|
|
8615
|
+
services: Array<AgentWorkspaceService>;
|
|
8616
|
+
totalCount: Scalars['Int']['output'];
|
|
8617
|
+
totalPages: Scalars['Int']['output'];
|
|
8618
|
+
};
|
|
8603
8619
|
export declare enum AgentWorkspaceServiceProcessingStatus {
|
|
8604
8620
|
Enriched = "ENRICHED",
|
|
8605
8621
|
Enriching = "ENRICHING",
|
|
@@ -11804,7 +11820,8 @@ export type AssetsBundle = {
|
|
|
11804
11820
|
export type AssetsBundleInstantiation = {
|
|
11805
11821
|
__typename?: 'AssetsBundleInstantiation';
|
|
11806
11822
|
bundle: AssetsBundle;
|
|
11807
|
-
|
|
11823
|
+
dependencyInstantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11824
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11808
11825
|
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11809
11826
|
};
|
|
11810
11827
|
export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
@@ -13822,6 +13839,19 @@ export type AssetsDmObjectsListSearchGroupOutput = {
|
|
|
13822
13839
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13823
13840
|
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
13824
13841
|
};
|
|
13842
|
+
export type AssetsDmObjectsListSearchGroupOutputV2 = {
|
|
13843
|
+
__typename?: 'AssetsDMObjectsListSearchGroupOutputV2';
|
|
13844
|
+
condition?: Maybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
13845
|
+
isGroupDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13846
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
13847
|
+
searchItems?: Maybe<Array<AssetsDmObjectsListSearchItemOutputV2>>;
|
|
13848
|
+
};
|
|
13849
|
+
export type AssetsDmObjectsListSearchGroupV2 = {
|
|
13850
|
+
condition?: InputMaybe<Scalars['String']['input']>;
|
|
13851
|
+
isGroupDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13852
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
13853
|
+
searchItems?: Array<AssetsDmObjectsListSearchItemV2>;
|
|
13854
|
+
};
|
|
13825
13855
|
export type AssetsDmObjectsListSearchItem = {
|
|
13826
13856
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13827
13857
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -13847,6 +13877,48 @@ export type AssetsDmObjectsListSearchItemOutput = {
|
|
|
13847
13877
|
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13848
13878
|
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13849
13879
|
};
|
|
13880
|
+
export type AssetsDmObjectsListSearchItemOutputV2 = {
|
|
13881
|
+
__typename?: 'AssetsDMObjectsListSearchItemOutputV2';
|
|
13882
|
+
attributeImportanceCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13883
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
13884
|
+
condition?: Maybe<AssetsDmObjectsListSearchCondition>;
|
|
13885
|
+
isAttribute?: Maybe<Scalars['Boolean']['output']>;
|
|
13886
|
+
isDataSource?: Maybe<Scalars['Boolean']['output']>;
|
|
13887
|
+
operator?: Maybe<AssetsDmObjectsListSearchOperator>;
|
|
13888
|
+
rawColumnType?: Maybe<AssetsDmObjectsListRawColumnType>;
|
|
13889
|
+
reasonCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13890
|
+
savedSearch?: Maybe<AssetsDmSavedSearchSubtreeV2>;
|
|
13891
|
+
savedSearchId?: Maybe<Scalars['ID']['output']>;
|
|
13892
|
+
searchItemValues?: Maybe<Array<AssetsDmObjectsListSearchItemValueV2>>;
|
|
13893
|
+
tagCodes?: Maybe<Array<Scalars['Float']['output']>>;
|
|
13894
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
13895
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
13896
|
+
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13897
|
+
};
|
|
13898
|
+
export type AssetsDmObjectsListSearchItemV2 = {
|
|
13899
|
+
attributeImportanceCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13900
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13901
|
+
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
13902
|
+
isAttribute?: Scalars['Boolean']['input'];
|
|
13903
|
+
isDataSource?: Scalars['Boolean']['input'];
|
|
13904
|
+
operator?: InputMaybe<AssetsDmObjectsListSearchOperator>;
|
|
13905
|
+
rawColumnType?: InputMaybe<AssetsDmObjectsListRawColumnType>;
|
|
13906
|
+
reasonCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13907
|
+
savedSearch?: InputMaybe<AssetsDmSavedSearchSubtreeInputV2>;
|
|
13908
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
13909
|
+
searchItemValues?: InputMaybe<Array<AssetsDmObjectsListSearchItemValueV2Input>>;
|
|
13910
|
+
tagCodes?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
13911
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
13912
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13913
|
+
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
13914
|
+
};
|
|
13915
|
+
export type AssetsDmObjectsListSearchItemValueV2 = {
|
|
13916
|
+
__typename?: 'AssetsDMObjectsListSearchItemValueV2';
|
|
13917
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
13918
|
+
};
|
|
13919
|
+
export type AssetsDmObjectsListSearchItemValueV2Input = {
|
|
13920
|
+
label: Scalars['String']['input'];
|
|
13921
|
+
};
|
|
13850
13922
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
13851
13923
|
AfterNext = "AFTER_NEXT",
|
|
13852
13924
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -13977,9 +14049,30 @@ export type AssetsDmSavedSearchDetails = {
|
|
|
13977
14049
|
savedSearchId: Scalars['ID']['output'];
|
|
13978
14050
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13979
14051
|
};
|
|
14052
|
+
export type AssetsDmSavedSearchDetailsV2 = {
|
|
14053
|
+
__typename?: 'AssetsDMSavedSearchDetailsV2';
|
|
14054
|
+
calcDate?: Maybe<Scalars['String']['output']>;
|
|
14055
|
+
isExportToAsset?: Maybe<Scalars['Boolean']['output']>;
|
|
14056
|
+
isPublic?: Maybe<Scalars['Boolean']['output']>;
|
|
14057
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14058
|
+
noOfExportToAssetIssues?: Maybe<Scalars['Int']['output']>;
|
|
14059
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
14060
|
+
previousCalcDate?: Maybe<Scalars['String']['output']>;
|
|
14061
|
+
previousResultCount?: Maybe<Scalars['Int']['output']>;
|
|
14062
|
+
resultCount?: Maybe<Scalars['Int']['output']>;
|
|
14063
|
+
savedSearchId: Scalars['ID']['output'];
|
|
14064
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14065
|
+
};
|
|
13980
14066
|
export type AssetsDmSavedSearchInput = {
|
|
13981
14067
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
13982
14068
|
};
|
|
14069
|
+
export type AssetsDmSavedSearchSubtreeInputV2 = {
|
|
14070
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
14071
|
+
};
|
|
14072
|
+
export type AssetsDmSavedSearchSubtreeV2 = {
|
|
14073
|
+
__typename?: 'AssetsDMSavedSearchSubtreeV2';
|
|
14074
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14075
|
+
};
|
|
13983
14076
|
export type AssetsDmSavedSearchesCreateResponse = {
|
|
13984
14077
|
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
13985
14078
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -14449,6 +14542,7 @@ export type AssetsObjectType = Node & {
|
|
|
14449
14542
|
links?: Maybe<AssetsLinks>;
|
|
14450
14543
|
name?: Maybe<Scalars['String']['output']>;
|
|
14451
14544
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
14545
|
+
parentObjectType?: Maybe<AssetsObjectType>;
|
|
14452
14546
|
schema?: Maybe<AssetsSchema>;
|
|
14453
14547
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
14454
14548
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -14778,6 +14872,7 @@ export type AssetsVerticalAssetTypesTrackingConnection = {
|
|
|
14778
14872
|
__typename?: 'AssetsVerticalAssetTypesTrackingConnection';
|
|
14779
14873
|
edges: Array<AssetsVerticalAssetTypesTrackingEdge>;
|
|
14780
14874
|
pageInfo: PageInfo;
|
|
14875
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14781
14876
|
};
|
|
14782
14877
|
export type AssetsVerticalAssetTypesTrackingEdge = {
|
|
14783
14878
|
__typename?: 'AssetsVerticalAssetTypesTrackingEdge';
|
|
@@ -15402,7 +15497,9 @@ export type AssetsVerticalItemMapping = {
|
|
|
15402
15497
|
id: Scalars['ID']['output'];
|
|
15403
15498
|
itemId: Scalars['ID']['output'];
|
|
15404
15499
|
itemType: AssetsVerticalItemType;
|
|
15500
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
15405
15501
|
siteId: Scalars['ID']['output'];
|
|
15502
|
+
space?: Maybe<JiraProject>;
|
|
15406
15503
|
spaceId: Scalars['ID']['output'];
|
|
15407
15504
|
workspaceId: Scalars['ID']['output'];
|
|
15408
15505
|
};
|
|
@@ -15410,6 +15507,7 @@ export type AssetsVerticalItemMappingConnection = {
|
|
|
15410
15507
|
__typename?: 'AssetsVerticalItemMappingConnection';
|
|
15411
15508
|
edges: Array<AssetsVerticalItemMappingEdge>;
|
|
15412
15509
|
pageInfo: PageInfo;
|
|
15510
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15413
15511
|
};
|
|
15414
15512
|
export type AssetsVerticalItemMappingEdge = {
|
|
15415
15513
|
__typename?: 'AssetsVerticalItemMappingEdge';
|
|
@@ -15491,11 +15589,34 @@ export type AssetsVerticalNonConfiguredAssetType = {
|
|
|
15491
15589
|
objSchema?: Maybe<AssetsSchema>;
|
|
15492
15590
|
objType?: Maybe<AssetsObjectType>;
|
|
15493
15591
|
};
|
|
15494
|
-
export type
|
|
15495
|
-
__typename?: '
|
|
15496
|
-
|
|
15592
|
+
export type AssetsVerticalNonConfiguredAssetTypeConnection = {
|
|
15593
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeConnection';
|
|
15594
|
+
edges: Array<AssetsVerticalNonConfiguredAssetTypeEdge>;
|
|
15595
|
+
pageInfo: PageInfo;
|
|
15596
|
+
};
|
|
15597
|
+
export type AssetsVerticalNonConfiguredAssetTypeEdge = {
|
|
15598
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeEdge';
|
|
15599
|
+
cursor: Scalars['String']['output'];
|
|
15600
|
+
node: AssetsVerticalNonConfiguredAssetType;
|
|
15601
|
+
};
|
|
15602
|
+
export type AssetsVerticalNonConfiguredItem = {
|
|
15603
|
+
__typename?: 'AssetsVerticalNonConfiguredItem';
|
|
15604
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15605
|
+
itemId: Scalars['ID']['output'];
|
|
15606
|
+
itemType: AssetsVerticalItemType;
|
|
15607
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15608
|
+
spaceId: Scalars['ID']['output'];
|
|
15609
|
+
};
|
|
15610
|
+
export type AssetsVerticalNonConfiguredItemMappingConnection = {
|
|
15611
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingConnection';
|
|
15612
|
+
edges: Array<AssetsVerticalNonConfiguredItemMappingEdge>;
|
|
15613
|
+
pageInfo: PageInfo;
|
|
15614
|
+
};
|
|
15615
|
+
export type AssetsVerticalNonConfiguredItemMappingEdge = {
|
|
15616
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingEdge';
|
|
15617
|
+
cursor: Scalars['String']['output'];
|
|
15618
|
+
node: AssetsVerticalNonConfiguredItem;
|
|
15497
15619
|
};
|
|
15498
|
-
export type AssetsVerticalNonConfiguredAssetTypesResult = AssetsVerticalNonConfiguredAssetTypesPayload | QueryError;
|
|
15499
15620
|
export type AssetsVerticalObjectType = {
|
|
15500
15621
|
__typename?: 'AssetsVerticalObjectType';
|
|
15501
15622
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15700,6 +15821,10 @@ export type AssetsVerticalSchemaTemplate = {
|
|
|
15700
15821
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
15701
15822
|
type: Scalars['String']['output'];
|
|
15702
15823
|
};
|
|
15824
|
+
export type AssetsVerticalSpaceDetails = {
|
|
15825
|
+
__typename?: 'AssetsVerticalSpaceDetails';
|
|
15826
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15827
|
+
};
|
|
15703
15828
|
export type AssetsVerticalStatusCount = {
|
|
15704
15829
|
__typename?: 'AssetsVerticalStatusCount';
|
|
15705
15830
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -15822,6 +15947,7 @@ export type AssetsVerticalVerticalInstantiationCategory = {
|
|
|
15822
15947
|
cloudId: Scalars['ID']['output'];
|
|
15823
15948
|
id: Scalars['ID']['output'];
|
|
15824
15949
|
items?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
15950
|
+
spaceDetails?: Maybe<AssetsVerticalSpaceDetails>;
|
|
15825
15951
|
status: AssetsVerticalVerticalInstantiationCategoryStatus;
|
|
15826
15952
|
verticalInstantiationId: Scalars['ID']['output'];
|
|
15827
15953
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -17193,7 +17319,7 @@ export type CcpAllowancePoolAllocationsResponse = {
|
|
|
17193
17319
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
17194
17320
|
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
17195
17321
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
17196
|
-
id?: Maybe<Scalars['
|
|
17322
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17197
17323
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
17198
17324
|
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
17199
17325
|
poolId?: Maybe<Scalars['String']['output']>;
|
|
@@ -17514,7 +17640,7 @@ export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
|
17514
17640
|
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
17515
17641
|
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
17516
17642
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
17517
|
-
id?: Maybe<Scalars['
|
|
17643
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17518
17644
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
17519
17645
|
};
|
|
17520
17646
|
export type CcpConcessionBenefit = {
|
|
@@ -17923,6 +18049,9 @@ export type CcpEntitlementExperienceCapabilitiesPlaceOrderLiteArgs = {
|
|
|
17923
18049
|
source: Scalars['String']['input'];
|
|
17924
18050
|
targetOffering: CcpPlaceOrderLiteTargetOfferingInput;
|
|
17925
18051
|
};
|
|
18052
|
+
export type CcpEntitlementExperienceCapabilitiesSetUsageLimitArgs = {
|
|
18053
|
+
action?: InputMaybe<CcpSetUsageLimitAction>;
|
|
18054
|
+
};
|
|
17926
18055
|
export type CcpEntitlementOfferingTransition = {
|
|
17927
18056
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
17928
18057
|
id: Scalars['ID']['output'];
|
|
@@ -18322,7 +18451,7 @@ export type CcpOfferingRelationship = {
|
|
|
18322
18451
|
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
18323
18452
|
description?: Maybe<Scalars['String']['output']>;
|
|
18324
18453
|
from?: Maybe<CcpRelationshipNode>;
|
|
18325
|
-
id?: Maybe<Scalars['
|
|
18454
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18326
18455
|
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
18327
18456
|
relationshipType?: Maybe<CcpRelationshipType>;
|
|
18328
18457
|
status?: Maybe<CcpRelationshipStatus>;
|
|
@@ -18699,7 +18828,7 @@ export type CcpPromotionAndOrRuleCondition = {
|
|
|
18699
18828
|
};
|
|
18700
18829
|
export type CcpPromotionApplicationReason = {
|
|
18701
18830
|
__typename?: 'CcpPromotionApplicationReason';
|
|
18702
|
-
id?: Maybe<Scalars['
|
|
18831
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18703
18832
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18704
18833
|
};
|
|
18705
18834
|
export type CcpPromotionApplicationReasonSetLimiter = {
|
|
@@ -18710,7 +18839,7 @@ export type CcpPromotionApplicationReasonSetLimiter = {
|
|
|
18710
18839
|
export type CcpPromotionApplicationReasonWithCustomisable = {
|
|
18711
18840
|
__typename?: 'CcpPromotionApplicationReasonWithCustomisable';
|
|
18712
18841
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
18713
|
-
id?: Maybe<Scalars['
|
|
18842
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18714
18843
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18715
18844
|
};
|
|
18716
18845
|
export type CcpPromotionBenefit = {
|
|
@@ -19415,6 +19544,10 @@ export type CcpSearchTimestampBoundsInput = {
|
|
|
19415
19544
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
19416
19545
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
19417
19546
|
};
|
|
19547
|
+
export declare enum CcpSetUsageLimitAction {
|
|
19548
|
+
Disable = "DISABLE",
|
|
19549
|
+
Set = "SET"
|
|
19550
|
+
}
|
|
19418
19551
|
export type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
19419
19552
|
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
19420
19553
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19483,7 +19616,7 @@ export declare enum CcpSupportedBillingSystems {
|
|
|
19483
19616
|
}
|
|
19484
19617
|
export type CcpTaxId = {
|
|
19485
19618
|
__typename?: 'CcpTaxId';
|
|
19486
|
-
id?: Maybe<Scalars['
|
|
19619
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19487
19620
|
label?: Maybe<Scalars['String']['output']>;
|
|
19488
19621
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
19489
19622
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -32386,6 +32519,7 @@ export type ConfluenceForgeExtension = {
|
|
|
32386
32519
|
oauthClientId: Scalars['ID']['output'];
|
|
32387
32520
|
principal?: Maybe<ConfluenceExtensionPrincipal>;
|
|
32388
32521
|
properties: Array<KeyValueHierarchyMap>;
|
|
32522
|
+
sandboxPolicies?: Maybe<Array<Scalars['String']['output']>>;
|
|
32389
32523
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
32390
32524
|
type: Scalars['String']['output'];
|
|
32391
32525
|
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
@@ -44035,6 +44169,25 @@ export type DevAiAutodevNextScanScheduleInput = {
|
|
|
44035
44169
|
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
44036
44170
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44037
44171
|
};
|
|
44172
|
+
export type DevAiAutodevNextScanScheduleSlot = {
|
|
44173
|
+
__typename?: 'DevAiAutodevNextScanScheduleSlot';
|
|
44174
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44175
|
+
timeOfDay: Scalars['String']['output'];
|
|
44176
|
+
};
|
|
44177
|
+
export type DevAiAutodevNextScanScheduleSlotInput = {
|
|
44178
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44179
|
+
timeOfDay: Scalars['String']['input'];
|
|
44180
|
+
};
|
|
44181
|
+
export type DevAiAutodevNextScanSchedules = {
|
|
44182
|
+
__typename?: 'DevAiAutodevNextScanSchedules';
|
|
44183
|
+
nextScanAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44184
|
+
slots: Array<DevAiAutodevNextScanScheduleSlot>;
|
|
44185
|
+
timezone: Scalars['String']['output'];
|
|
44186
|
+
};
|
|
44187
|
+
export type DevAiAutodevNextScanSchedulesInput = {
|
|
44188
|
+
slots?: InputMaybe<Array<DevAiAutodevNextScanScheduleSlotInput>>;
|
|
44189
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44190
|
+
};
|
|
44038
44191
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
44039
44192
|
repositoryAris: Array<Scalars['ID']['input']>;
|
|
44040
44193
|
standardId: Scalars['ID']['input'];
|
|
@@ -44239,6 +44392,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
44239
44392
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
44240
44393
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
44241
44394
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44395
|
+
scanScheduleConfiguration?: Maybe<DevAiAutodevNextScanSchedules>;
|
|
44242
44396
|
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
44243
44397
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
44244
44398
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -44259,6 +44413,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
44259
44413
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
44260
44414
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
44261
44415
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44416
|
+
scanScheduleConfiguration?: InputMaybe<DevAiAutodevNextScanSchedulesInput>;
|
|
44262
44417
|
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
44263
44418
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
44264
44419
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -50051,6 +50206,7 @@ export type ExternalTeam = Node & {
|
|
|
50051
50206
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
50052
50207
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
50053
50208
|
id: Scalars['ID']['output'];
|
|
50209
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
50054
50210
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50055
50211
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
50056
50212
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -50061,6 +50217,7 @@ export type ExternalTeam = Node & {
|
|
|
50061
50217
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50062
50218
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50063
50219
|
url?: Maybe<Scalars['String']['output']>;
|
|
50220
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
50064
50221
|
};
|
|
50065
50222
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
50066
50223
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
@@ -50269,6 +50426,7 @@ export type ExternalVideo = Node & {
|
|
|
50269
50426
|
provider?: Maybe<ExternalProvider>;
|
|
50270
50427
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
50271
50428
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
50429
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50272
50430
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
50273
50431
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50274
50432
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -52079,12 +52237,20 @@ export type GlobalAppExtensionContextInput = {
|
|
|
52079
52237
|
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52080
52238
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52081
52239
|
};
|
|
52240
|
+
export type GlobalAppExtensionsResponse = {
|
|
52241
|
+
__typename?: 'GlobalAppExtensionsResponse';
|
|
52242
|
+
extensions?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
52243
|
+
};
|
|
52082
52244
|
export type GlobalAppForgeContextToken = {
|
|
52083
52245
|
__typename?: 'GlobalAppForgeContextToken';
|
|
52084
52246
|
expiresAt: Scalars['String']['output'];
|
|
52085
52247
|
extensionId: Scalars['ID']['output'];
|
|
52086
52248
|
jwt: Scalars['String']['output'];
|
|
52087
52249
|
};
|
|
52250
|
+
export type GlobalAppIsProductAdminResponse = {
|
|
52251
|
+
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52252
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
52253
|
+
};
|
|
52088
52254
|
export type GlobalAppSignForgeContextTokensInput = {
|
|
52089
52255
|
contextIds: Array<Scalars['ID']['input']>;
|
|
52090
52256
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
@@ -52096,6 +52262,30 @@ export type GlobalAppSignForgeContextTokensResponse = Payload & {
|
|
|
52096
52262
|
success: Scalars['Boolean']['output'];
|
|
52097
52263
|
tokens: Array<GlobalAppForgeContextToken>;
|
|
52098
52264
|
};
|
|
52265
|
+
export type GlobalAppTmpPersonalAppExtensionContextInput = {
|
|
52266
|
+
appVersion: Scalars['String']['input'];
|
|
52267
|
+
context: Scalars['JSON']['input'];
|
|
52268
|
+
extensionId: Scalars['ID']['input'];
|
|
52269
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52270
|
+
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52271
|
+
};
|
|
52272
|
+
export type GlobalAppTmpPersonalAppForgeContextToken = {
|
|
52273
|
+
__typename?: 'GlobalAppTmpPersonalAppForgeContextToken';
|
|
52274
|
+
expiresAt: Scalars['String']['output'];
|
|
52275
|
+
extensionId: Scalars['ID']['output'];
|
|
52276
|
+
jwt: Scalars['String']['output'];
|
|
52277
|
+
};
|
|
52278
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensInput = {
|
|
52279
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
52280
|
+
extensionContexts: Array<GlobalAppTmpPersonalAppExtensionContextInput>;
|
|
52281
|
+
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52282
|
+
};
|
|
52283
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensResponse = Payload & {
|
|
52284
|
+
__typename?: 'GlobalAppTmpPersonalAppSignForgeContextTokensResponse';
|
|
52285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52286
|
+
success: Scalars['Boolean']['output'];
|
|
52287
|
+
tokens: Array<GlobalAppTmpPersonalAppForgeContextToken>;
|
|
52288
|
+
};
|
|
52099
52289
|
export type GlobalCardCreateAdditionalFields = {
|
|
52100
52290
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
52101
52291
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -53145,6 +53335,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
53145
53335
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53146
53336
|
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
53147
53337
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
53338
|
+
weightVersion?: InputMaybe<Scalars['String']['input']>;
|
|
53148
53339
|
};
|
|
53149
53340
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
53150
53341
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -53295,6 +53486,7 @@ export type GraphInferenceJiraEntityContextMeta = {
|
|
|
53295
53486
|
servedBy: Scalars['String']['output'];
|
|
53296
53487
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
53297
53488
|
warnings: Array<Scalars['String']['output']>;
|
|
53489
|
+
weightVersion: Scalars['String']['output'];
|
|
53298
53490
|
};
|
|
53299
53491
|
export type GraphInferenceJiraEntityContextProperty = {
|
|
53300
53492
|
__typename?: 'GraphInferenceJiraEntityContextProperty';
|
|
@@ -53398,6 +53590,7 @@ export type GraphIntegrationActionDirectoryItem = {
|
|
|
53398
53590
|
displayName: Scalars['String']['output'];
|
|
53399
53591
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53400
53592
|
id: Scalars['ID']['output'];
|
|
53593
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
53401
53594
|
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
53402
53595
|
name: Scalars['String']['output'];
|
|
53403
53596
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
@@ -53480,6 +53673,7 @@ export type GraphIntegrationDirectoryFilterDimension = {
|
|
|
53480
53673
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53481
53674
|
id: Scalars['ID']['output'];
|
|
53482
53675
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
53676
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
53483
53677
|
};
|
|
53484
53678
|
export type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
53485
53679
|
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
@@ -116607,6 +116801,11 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
116607
116801
|
success: Scalars['Boolean']['output'];
|
|
116608
116802
|
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
116609
116803
|
};
|
|
116804
|
+
export type HelpCenterDeleteHubTranslationsInput = {
|
|
116805
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116806
|
+
locale: Scalars['String']['input'];
|
|
116807
|
+
parentId: Scalars['ID']['input'];
|
|
116808
|
+
};
|
|
116610
116809
|
export type HelpCenterDeleteInput = {
|
|
116611
116810
|
helpCenterAri: Scalars['String']['input'];
|
|
116612
116811
|
};
|
|
@@ -116651,6 +116850,16 @@ export type HelpCenterHomePageTitleInput = {
|
|
|
116651
116850
|
default: Scalars['String']['input'];
|
|
116652
116851
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
116653
116852
|
};
|
|
116853
|
+
export type HelpCenterHubLayoutTranslations = {
|
|
116854
|
+
__typename?: 'HelpCenterHubLayoutTranslations';
|
|
116855
|
+
blocks: Array<HelpCenterHubTranslationBlock>;
|
|
116856
|
+
locale: Scalars['String']['output'];
|
|
116857
|
+
};
|
|
116858
|
+
export type HelpCenterHubLayoutTranslationsPayload = Payload & {
|
|
116859
|
+
__typename?: 'HelpCenterHubLayoutTranslationsPayload';
|
|
116860
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116861
|
+
success: Scalars['Boolean']['output'];
|
|
116862
|
+
};
|
|
116654
116863
|
export type HelpCenterHubProductEntityResult = {
|
|
116655
116864
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
116656
116865
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
@@ -116661,9 +116870,35 @@ export type HelpCenterHubProductEntityResult = {
|
|
|
116661
116870
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
116662
116871
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
116663
116872
|
};
|
|
116873
|
+
export type HelpCenterHubTranslationBlock = {
|
|
116874
|
+
__typename?: 'HelpCenterHubTranslationBlock';
|
|
116875
|
+
fields: Array<HelpCenterHubTranslationField>;
|
|
116876
|
+
localId: Scalars['ID']['output'];
|
|
116877
|
+
};
|
|
116878
|
+
export type HelpCenterHubTranslationBlockInput = {
|
|
116879
|
+
extensionType: Scalars['String']['input'];
|
|
116880
|
+
fields: Array<HelpCenterHubTranslationFieldInput>;
|
|
116881
|
+
localId: Scalars['ID']['input'];
|
|
116882
|
+
};
|
|
116883
|
+
export type HelpCenterHubTranslationField = {
|
|
116884
|
+
__typename?: 'HelpCenterHubTranslationField';
|
|
116885
|
+
fieldPath: Scalars['String']['output'];
|
|
116886
|
+
value: Scalars['String']['output'];
|
|
116887
|
+
};
|
|
116888
|
+
export type HelpCenterHubTranslationFieldInput = {
|
|
116889
|
+
fieldPath: Scalars['String']['input'];
|
|
116890
|
+
value: Scalars['String']['input'];
|
|
116891
|
+
};
|
|
116892
|
+
export type HelpCenterHubTranslationsInput = {
|
|
116893
|
+
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
116894
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116895
|
+
locale: Scalars['String']['input'];
|
|
116896
|
+
parentId: Scalars['ID']['input'];
|
|
116897
|
+
};
|
|
116664
116898
|
export type HelpCenterLayoutAdf = {
|
|
116665
116899
|
__typename?: 'HelpCenterLayoutAdf';
|
|
116666
116900
|
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
116901
|
+
translatableBlocksSchema: Array<HelpCenterTranslatableBlock>;
|
|
116667
116902
|
};
|
|
116668
116903
|
export type HelpCenterLayoutAdfContentArgs = {
|
|
116669
116904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -116714,7 +116949,9 @@ export type HelpCenterMutationApi = {
|
|
|
116714
116949
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
116715
116950
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
116716
116951
|
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
116952
|
+
deleteLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116717
116953
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
116954
|
+
setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116718
116955
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
116719
116956
|
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
116720
116957
|
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
@@ -116740,9 +116977,15 @@ export type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
|
116740
116977
|
export type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
|
|
116741
116978
|
input: HelpCenterPageDeleteInput;
|
|
116742
116979
|
};
|
|
116980
|
+
export type HelpCenterMutationApiDeleteLayoutTranslationsArgs = {
|
|
116981
|
+
input: HelpCenterDeleteHubTranslationsInput;
|
|
116982
|
+
};
|
|
116743
116983
|
export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
116744
116984
|
input: HelpCenterBulkDeleteTopicInput;
|
|
116745
116985
|
};
|
|
116986
|
+
export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
|
|
116987
|
+
input: HelpCenterHubTranslationsInput;
|
|
116988
|
+
};
|
|
116746
116989
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
116747
116990
|
input: HelpCenterUpdateInput;
|
|
116748
116991
|
};
|
|
@@ -116816,6 +117059,7 @@ export type HelpCenterPage = Node & {
|
|
|
116816
117059
|
name?: Maybe<HelpCenterPageName>;
|
|
116817
117060
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
116818
117061
|
pageType?: Maybe<HelpCenterPageType>;
|
|
117062
|
+
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
116819
117063
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
116820
117064
|
};
|
|
116821
117065
|
export type HelpCenterPageCreateInput = {
|
|
@@ -116871,6 +117115,12 @@ export type HelpCenterPageQueryResultEdge = {
|
|
|
116871
117115
|
cursor: Scalars['String']['output'];
|
|
116872
117116
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
116873
117117
|
};
|
|
117118
|
+
export type HelpCenterPageRovoConfig = {
|
|
117119
|
+
__typename?: 'HelpCenterPageRovoConfig';
|
|
117120
|
+
agentId?: Maybe<Scalars['String']['output']>;
|
|
117121
|
+
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
117122
|
+
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117123
|
+
};
|
|
116874
117124
|
export declare enum HelpCenterPageType {
|
|
116875
117125
|
Custom = "CUSTOM",
|
|
116876
117126
|
CustomHome = "CUSTOM_HOME",
|
|
@@ -117073,6 +117323,7 @@ export type HelpCenterQueryApi = {
|
|
|
117073
117323
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
117074
117324
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
117075
117325
|
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
117326
|
+
layoutTranslations: Array<HelpCenterHubLayoutTranslations>;
|
|
117076
117327
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
117077
117328
|
};
|
|
117078
117329
|
export type HelpCenterQueryApiCustomerExperiencesArgs = {
|
|
@@ -117148,6 +117399,10 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
|
117148
117399
|
helpCenterAri: Scalars['ID']['input'];
|
|
117149
117400
|
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
117150
117401
|
};
|
|
117402
|
+
export type HelpCenterQueryApiLayoutTranslationsArgs = {
|
|
117403
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117404
|
+
parentId: Scalars['ID']['input'];
|
|
117405
|
+
};
|
|
117151
117406
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
117152
117407
|
helpCenterAri: Scalars['ID']['input'];
|
|
117153
117408
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -117257,6 +117512,32 @@ export type HelpCenterTopicItemInput = {
|
|
|
117257
117512
|
ari: Scalars['ID']['input'];
|
|
117258
117513
|
};
|
|
117259
117514
|
export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
117515
|
+
export type HelpCenterTranslatableBlock = {
|
|
117516
|
+
__typename?: 'HelpCenterTranslatableBlock';
|
|
117517
|
+
blockType: HelpCenterTranslatableBlockType;
|
|
117518
|
+
extensionType: Scalars['String']['output'];
|
|
117519
|
+
fields: Array<HelpCenterTranslatableField>;
|
|
117520
|
+
};
|
|
117521
|
+
export declare enum HelpCenterTranslatableBlockType {
|
|
117522
|
+
Carousel = "CAROUSEL",
|
|
117523
|
+
JsmHelp = "JSM_HELP",
|
|
117524
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
117525
|
+
LinksMenu = "LINKS_MENU",
|
|
117526
|
+
LinkCards = "LINK_CARDS",
|
|
117527
|
+
PageTopper = "PAGE_TOPPER",
|
|
117528
|
+
Spotlight = "SPOTLIGHT"
|
|
117529
|
+
}
|
|
117530
|
+
export type HelpCenterTranslatableField = {
|
|
117531
|
+
__typename?: 'HelpCenterTranslatableField';
|
|
117532
|
+
arrayKey?: Maybe<Scalars['String']['output']>;
|
|
117533
|
+
idField?: Maybe<Scalars['String']['output']>;
|
|
117534
|
+
kind: HelpCenterTranslatableFieldKind;
|
|
117535
|
+
path: Scalars['String']['output'];
|
|
117536
|
+
};
|
|
117537
|
+
export declare enum HelpCenterTranslatableFieldKind {
|
|
117538
|
+
ArrayItem = "ARRAY_ITEM",
|
|
117539
|
+
Scalar = "SCALAR"
|
|
117540
|
+
}
|
|
117260
117541
|
export type HelpCenterTranslation = {
|
|
117261
117542
|
__typename?: 'HelpCenterTranslation';
|
|
117262
117543
|
locale: Scalars['String']['output'];
|
|
@@ -120156,6 +120437,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
120156
120437
|
Unknown = "UNKNOWN"
|
|
120157
120438
|
}
|
|
120158
120439
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
120440
|
+
AgentReadiness = "AGENT_READINESS",
|
|
120159
120441
|
Planning = "PLANNING"
|
|
120160
120442
|
}
|
|
120161
120443
|
export declare enum JiraAgentSessionState {
|
|
@@ -120305,17 +120587,6 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
120305
120587
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
120306
120588
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
120307
120589
|
};
|
|
120308
|
-
export declare enum JiraAiAgentConversationState {
|
|
120309
|
-
ArtefactReady = "ARTEFACT_READY",
|
|
120310
|
-
AuthRequired = "AUTH_REQUIRED",
|
|
120311
|
-
Cancelled = "CANCELLED",
|
|
120312
|
-
Completed = "COMPLETED",
|
|
120313
|
-
Failed = "FAILED",
|
|
120314
|
-
InputRequired = "INPUT_REQUIRED",
|
|
120315
|
-
Rejected = "REJECTED",
|
|
120316
|
-
Unknown = "UNKNOWN",
|
|
120317
|
-
Working = "WORKING"
|
|
120318
|
-
}
|
|
120319
120590
|
export type JiraAiAgentSession = {
|
|
120320
120591
|
__typename?: 'JiraAiAgentSession';
|
|
120321
120592
|
agent?: Maybe<User>;
|
|
@@ -120340,11 +120611,6 @@ export type JiraAiAgentSessionEnrichmentInput = {
|
|
|
120340
120611
|
conversationId: Scalars['String']['input'];
|
|
120341
120612
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
120342
120613
|
};
|
|
120343
|
-
export type JiraAiAgentSessionStatus = {
|
|
120344
|
-
__typename?: 'JiraAiAgentSessionStatus';
|
|
120345
|
-
conversationId: Scalars['ID']['output'];
|
|
120346
|
-
state: JiraAiAgentConversationState;
|
|
120347
|
-
};
|
|
120348
120614
|
export declare enum JiraAiContextPanel {
|
|
120349
120615
|
None = "NONE",
|
|
120350
120616
|
ResolutionPlan = "RESOLUTION_PLAN",
|
|
@@ -122400,6 +122666,7 @@ export type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
|
122400
122666
|
};
|
|
122401
122667
|
export type JiraBoardViewSprintsArgs = {
|
|
122402
122668
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122669
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
122403
122670
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122404
122671
|
};
|
|
122405
122672
|
export type JiraBoardViewUnmappedStatusesArgs = {
|
|
@@ -128972,11 +129239,9 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128972
129239
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
128973
129240
|
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
128974
129241
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
128975
|
-
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
128976
129242
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
128977
129243
|
archivedBy?: Maybe<User>;
|
|
128978
129244
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
128979
|
-
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
128980
129245
|
assignee?: Maybe<User>;
|
|
128981
129246
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
128982
129247
|
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
@@ -129186,11 +129451,6 @@ export type JiraIssueAllActivitiesArgs = {
|
|
|
129186
129451
|
first: Scalars['Int']['input'];
|
|
129187
129452
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
129188
129453
|
};
|
|
129189
|
-
export type JiraIssueAllAgentSessionsArgs = {
|
|
129190
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
129191
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129192
|
-
sort?: InputMaybe<Scalars['String']['input']>;
|
|
129193
|
-
};
|
|
129194
129454
|
export type JiraIssueApprovalActivitiesArgs = {
|
|
129195
129455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129196
129456
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130959,6 +131219,7 @@ export type JiraIssueNextActionSuggestions = {
|
|
|
130959
131219
|
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
130960
131220
|
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
130961
131221
|
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
131222
|
+
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
130962
131223
|
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
130963
131224
|
};
|
|
130964
131225
|
export type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
@@ -134093,6 +134354,7 @@ export type JiraMutation = {
|
|
|
134093
134354
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
134094
134355
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
134095
134356
|
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
134357
|
+
jira_updateProjectPolicyAssociatedProjects?: Maybe<JiraUpdateProjectPolicyAssociatedProjectsPayload>;
|
|
134096
134358
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
134097
134359
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
134098
134360
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -134549,6 +134811,9 @@ export type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
134549
134811
|
export type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
134550
134812
|
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
134551
134813
|
};
|
|
134814
|
+
export type JiraMutationJira_UpdateProjectPolicyAssociatedProjectsArgs = {
|
|
134815
|
+
input: JiraUpdateProjectPolicyAssociatedProjectsInput;
|
|
134816
|
+
};
|
|
134552
134817
|
export type JiraMutationJwmAssociateFieldArgs = {
|
|
134553
134818
|
cloudId: Scalars['ID']['input'];
|
|
134554
134819
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -135205,6 +135470,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
135205
135470
|
Reports = "REPORTS",
|
|
135206
135471
|
Requests = "REQUESTS",
|
|
135207
135472
|
Security = "SECURITY",
|
|
135473
|
+
Sessions = "SESSIONS",
|
|
135208
135474
|
Shortcuts = "SHORTCUTS",
|
|
135209
135475
|
Summary = "SUMMARY",
|
|
135210
135476
|
Teams = "TEAMS",
|
|
@@ -135232,7 +135498,8 @@ export declare enum JiraNextActionContentType {
|
|
|
135232
135498
|
export declare enum JiraNextActionGroup {
|
|
135233
135499
|
AiFeatures = "AI_FEATURES",
|
|
135234
135500
|
LoomUpdates = "LOOM_UPDATES",
|
|
135235
|
-
Sdlc = "SDLC"
|
|
135501
|
+
Sdlc = "SDLC",
|
|
135502
|
+
TriageAgent = "TRIAGE_AGENT"
|
|
135236
135503
|
}
|
|
135237
135504
|
export declare enum JiraNextActionInteractionType {
|
|
135238
135505
|
ActionNudge = "ACTION_NUDGE",
|
|
@@ -136165,6 +136432,26 @@ export type JiraPermissionGrantHolder = {
|
|
|
136165
136432
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
136166
136433
|
permission: JiraProjectPermission;
|
|
136167
136434
|
};
|
|
136435
|
+
export type JiraPermissionGrantUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
136436
|
+
__typename?: 'JiraPermissionGrantUsageMetric';
|
|
136437
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
136438
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
136439
|
+
id: Scalars['ID']['output'];
|
|
136440
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
136441
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
136442
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
136443
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
136444
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
136445
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
136446
|
+
};
|
|
136447
|
+
export type JiraPermissionGrantUsageMetricValuesArgs = {
|
|
136448
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136449
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
136450
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136451
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136452
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136453
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136454
|
+
};
|
|
136168
136455
|
export type JiraPermissionGrantValue = {
|
|
136169
136456
|
__typename?: 'JiraPermissionGrantValue';
|
|
136170
136457
|
id: Scalars['ID']['output'];
|
|
@@ -136920,6 +137207,7 @@ export type JiraProject = Node & {
|
|
|
136920
137207
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
136921
137208
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
136922
137209
|
name: Scalars['String']['output'];
|
|
137210
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
136923
137211
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
136924
137212
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
136925
137213
|
optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -137008,6 +137296,9 @@ export type JiraProjectBoardsArgs = {
|
|
|
137008
137296
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137009
137297
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137010
137298
|
};
|
|
137299
|
+
export type JiraProjectCapabilitiesArgs = {
|
|
137300
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
137301
|
+
};
|
|
137011
137302
|
export type JiraProjectComponentsArgs = {
|
|
137012
137303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137013
137304
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -137090,6 +137381,13 @@ export type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
|
137090
137381
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
137091
137382
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137092
137383
|
};
|
|
137384
|
+
export type JiraProjectNavigationItemsArgs = {
|
|
137385
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137386
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
137387
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137388
|
+
itemTypeKey?: InputMaybe<JiraNavigationItemTypeKey>;
|
|
137389
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137390
|
+
};
|
|
137093
137391
|
export type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
137094
137392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137095
137393
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -137760,6 +138058,7 @@ export type JiraProjectPolicyRuleViolation = {
|
|
|
137760
138058
|
message?: Maybe<Scalars['String']['output']>;
|
|
137761
138059
|
policy?: Maybe<JiraProjectPolicy>;
|
|
137762
138060
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
138061
|
+
ruleTypeId?: Maybe<Scalars['String']['output']>;
|
|
137763
138062
|
};
|
|
137764
138063
|
export type JiraProjectPolicyRuleViolationConnection = HasPageInfo & HasTotal & {
|
|
137765
138064
|
__typename?: 'JiraProjectPolicyRuleViolationConnection';
|
|
@@ -138370,6 +138669,7 @@ export type JiraQuery = {
|
|
|
138370
138669
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
138371
138670
|
resourceUsageMetricsV2?: Maybe<JiraResourceUsageMetricConnectionV2>;
|
|
138372
138671
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
138672
|
+
rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
138373
138673
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
138374
138674
|
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
138375
138675
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -139625,6 +139925,9 @@ export type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
139625
139925
|
category: JiraRecommendationCategory;
|
|
139626
139926
|
cloudId: Scalars['ID']['input'];
|
|
139627
139927
|
};
|
|
139928
|
+
export type JiraQueryRovoEnablementStatusArgs = {
|
|
139929
|
+
cloudId: Scalars['ID']['input'];
|
|
139930
|
+
};
|
|
139628
139931
|
export type JiraQuerySavedFiltersArgs = {
|
|
139629
139932
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139630
139933
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -139851,8 +140154,10 @@ export type JiraRecentItemsFilter = {
|
|
|
139851
140154
|
export declare enum JiraRecommendationCategory {
|
|
139852
140155
|
CustomField = "CUSTOM_FIELD",
|
|
139853
140156
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
140157
|
+
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
139854
140158
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
139855
|
-
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
140159
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
140160
|
+
WorkflowScheme = "WORKFLOW_SCHEME"
|
|
139856
140161
|
}
|
|
139857
140162
|
export type JiraRecommendedAction = {
|
|
139858
140163
|
__typename?: 'JiraRecommendedAction';
|
|
@@ -140000,7 +140305,6 @@ export type JiraReleaseHistoryItem = {
|
|
|
140000
140305
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
140001
140306
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
140002
140307
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
140003
|
-
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
140004
140308
|
i18nFieldName?: Maybe<Scalars['String']['output']>;
|
|
140005
140309
|
id: Scalars['ID']['output'];
|
|
140006
140310
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -145241,6 +145545,8 @@ export type JiraTimelineIssueSearchCustomInput = {
|
|
|
145241
145545
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
145242
145546
|
boardId: Scalars['ID']['input'];
|
|
145243
145547
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145548
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145549
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
145244
145550
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145245
145551
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145246
145552
|
};
|
|
@@ -145545,6 +145851,58 @@ export type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
145545
145851
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
145546
145852
|
success: Scalars['Boolean']['output'];
|
|
145547
145853
|
};
|
|
145854
|
+
export type JiraTriageAgentSuggestionConnection = {
|
|
145855
|
+
__typename?: 'JiraTriageAgentSuggestionConnection';
|
|
145856
|
+
edges?: Maybe<Array<Maybe<JiraTriageAgentSuggestionEdge>>>;
|
|
145857
|
+
pageInfo: PageInfo;
|
|
145858
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145859
|
+
};
|
|
145860
|
+
export type JiraTriageAgentSuggestionEdge = {
|
|
145861
|
+
__typename?: 'JiraTriageAgentSuggestionEdge';
|
|
145862
|
+
cursor: Scalars['String']['output'];
|
|
145863
|
+
node?: Maybe<JiraTriageAgentSuggestionItem>;
|
|
145864
|
+
};
|
|
145865
|
+
export type JiraTriageAgentSuggestionItem = {
|
|
145866
|
+
__typename?: 'JiraTriageAgentSuggestionItem';
|
|
145867
|
+
actionKey?: Maybe<Scalars['String']['output']>;
|
|
145868
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
145869
|
+
experienceId?: Maybe<Scalars['String']['output']>;
|
|
145870
|
+
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
145871
|
+
messageId?: Maybe<Scalars['ID']['output']>;
|
|
145872
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
145873
|
+
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
145874
|
+
updates?: Maybe<Array<JiraTriageAgentWorkItemUpdate>>;
|
|
145875
|
+
};
|
|
145876
|
+
export type JiraTriageAgentSuggestions = JiraBaseNextActionsEntity & {
|
|
145877
|
+
__typename?: 'JiraTriageAgentSuggestions';
|
|
145878
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
145879
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
145880
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
145881
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
145882
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
145883
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
145884
|
+
items?: Maybe<JiraTriageAgentSuggestionConnection>;
|
|
145885
|
+
queryError?: Maybe<QueryError>;
|
|
145886
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
145887
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
145888
|
+
};
|
|
145889
|
+
export type JiraTriageAgentSuggestionsItemsArgs = {
|
|
145890
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145891
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
145892
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145893
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
145894
|
+
};
|
|
145895
|
+
export type JiraTriageAgentWorkItemUpdate = {
|
|
145896
|
+
__typename?: 'JiraTriageAgentWorkItemUpdate';
|
|
145897
|
+
fields?: Maybe<Array<JiraTriageAgentWorkItemUpdateField>>;
|
|
145898
|
+
issueIdOrKey?: Maybe<Scalars['String']['output']>;
|
|
145899
|
+
};
|
|
145900
|
+
export type JiraTriageAgentWorkItemUpdateField = {
|
|
145901
|
+
__typename?: 'JiraTriageAgentWorkItemUpdateField';
|
|
145902
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
145903
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
145904
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
145905
|
+
};
|
|
145548
145906
|
export type JiraUiExposedError = {
|
|
145549
145907
|
__typename?: 'JiraUIExposedError';
|
|
145550
145908
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -146111,6 +146469,17 @@ export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
|
146111
146469
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
146112
146470
|
success: Scalars['Boolean']['output'];
|
|
146113
146471
|
};
|
|
146472
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsInput = {
|
|
146473
|
+
addProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146474
|
+
policyId: Scalars['ID']['input'];
|
|
146475
|
+
removeProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146476
|
+
};
|
|
146477
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsPayload = Payload & {
|
|
146478
|
+
__typename?: 'JiraUpdateProjectPolicyAssociatedProjectsPayload';
|
|
146479
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146480
|
+
projectPolicy?: Maybe<JiraProjectPolicy>;
|
|
146481
|
+
success: Scalars['Boolean']['output'];
|
|
146482
|
+
};
|
|
146114
146483
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
146115
146484
|
id: Scalars['ID']['input'];
|
|
146116
146485
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -147917,6 +148286,26 @@ export type JiraWorkTypeUsageMetricValuesArgs = {
|
|
|
147917
148286
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147918
148287
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
147919
148288
|
};
|
|
148289
|
+
export type JiraWorkflowResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
148290
|
+
__typename?: 'JiraWorkflowResourceUsageMetric';
|
|
148291
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
148292
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
148293
|
+
id: Scalars['ID']['output'];
|
|
148294
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
148295
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
148296
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
148297
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
148298
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
148299
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
148300
|
+
};
|
|
148301
|
+
export type JiraWorkflowResourceUsageMetricValuesArgs = {
|
|
148302
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148303
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
148304
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148305
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148306
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
148307
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148308
|
+
};
|
|
147920
148309
|
export type JiraWorklog = Node & {
|
|
147921
148310
|
__typename?: 'JiraWorklog';
|
|
147922
148311
|
author?: Maybe<User>;
|
|
@@ -150195,6 +150584,26 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
150195
150584
|
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
150196
150585
|
ValidationError = "VALIDATION_ERROR"
|
|
150197
150586
|
}
|
|
150587
|
+
export type JsmTelemetryIncidentContextResponse = {
|
|
150588
|
+
__typename?: 'JsmTelemetryIncidentContextResponse';
|
|
150589
|
+
affectedServices: Array<Scalars['String']['output']>;
|
|
150590
|
+
alertFiredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
150591
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
150592
|
+
incidentId: Scalars['String']['output'];
|
|
150593
|
+
labels: Array<Scalars['String']['output']>;
|
|
150594
|
+
severity?: Maybe<Scalars['String']['output']>;
|
|
150595
|
+
title: Scalars['String']['output'];
|
|
150596
|
+
};
|
|
150597
|
+
export type JsmTelemetryIncidentContextResult = {
|
|
150598
|
+
__typename?: 'JsmTelemetryIncidentContextResult';
|
|
150599
|
+
data?: Maybe<JsmTelemetryIncidentContextResponse>;
|
|
150600
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150601
|
+
};
|
|
150602
|
+
export type JsmTelemetryIncidentTelemetryResult = {
|
|
150603
|
+
__typename?: 'JsmTelemetryIncidentTelemetryResult';
|
|
150604
|
+
data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
|
|
150605
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150606
|
+
};
|
|
150198
150607
|
export type JsmTelemetryMetricAggregation = {
|
|
150199
150608
|
__typename?: 'JsmTelemetryMetricAggregation';
|
|
150200
150609
|
function: JsmTelemetryMetricAggregationFunction;
|
|
@@ -150308,6 +150717,7 @@ export type JsmTelemetryMetricMetadata = {
|
|
|
150308
150717
|
__typename?: 'JsmTelemetryMetricMetadata';
|
|
150309
150718
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
150310
150719
|
metricName: Scalars['String']['output'];
|
|
150720
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
150311
150721
|
type?: Maybe<JsmTelemetryMetricType>;
|
|
150312
150722
|
unit?: Maybe<Scalars['String']['output']>;
|
|
150313
150723
|
};
|
|
@@ -151167,6 +151577,7 @@ export declare enum KitsuneJobType {
|
|
|
151167
151577
|
ImportCustomer = "IMPORT_CUSTOMER",
|
|
151168
151578
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
151169
151579
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
151580
|
+
RefreshInsightCounters = "REFRESH_INSIGHT_COUNTERS",
|
|
151170
151581
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
151171
151582
|
ResyncInsights = "RESYNC_INSIGHTS",
|
|
151172
151583
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
@@ -151263,6 +151674,7 @@ export type KitsuneSection = Node & {
|
|
|
151263
151674
|
__typename?: 'KitsuneSection';
|
|
151264
151675
|
createdAt: Scalars['DateTime']['output'];
|
|
151265
151676
|
description?: Maybe<Scalars['String']['output']>;
|
|
151677
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151266
151678
|
id: Scalars['ID']['output'];
|
|
151267
151679
|
name: Scalars['String']['output'];
|
|
151268
151680
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -151582,6 +151994,7 @@ export type KitsuneView = Node & {
|
|
|
151582
151994
|
__typename?: 'KitsuneView';
|
|
151583
151995
|
config?: Maybe<KitsuneViewConfig>;
|
|
151584
151996
|
description?: Maybe<Scalars['String']['output']>;
|
|
151997
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151585
151998
|
entityType: KitsuneEntityType;
|
|
151586
151999
|
id: Scalars['ID']['output'];
|
|
151587
152000
|
name: Scalars['String']['output'];
|
|
@@ -153668,6 +154081,29 @@ export type LoomCreateVideoReactionPayload = {
|
|
|
153668
154081
|
reaction?: Maybe<LoomVideoReaction>;
|
|
153669
154082
|
success: Scalars['Boolean']['output'];
|
|
153670
154083
|
};
|
|
154084
|
+
export type LoomCurrentUserVideosInput = {
|
|
154085
|
+
createdAtRange?: InputMaybe<LoomDateRangeInput>;
|
|
154086
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
154087
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
154088
|
+
siteId: Scalars['ID']['input'];
|
|
154089
|
+
sortOrder?: InputMaybe<LoomSortDirection>;
|
|
154090
|
+
source?: InputMaybe<LoomCurrentUserVideosSource>;
|
|
154091
|
+
};
|
|
154092
|
+
export type LoomCurrentUserVideosPayload = {
|
|
154093
|
+
__typename?: 'LoomCurrentUserVideosPayload';
|
|
154094
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
154095
|
+
success: Scalars['Boolean']['output'];
|
|
154096
|
+
videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
154097
|
+
};
|
|
154098
|
+
export declare enum LoomCurrentUserVideosSource {
|
|
154099
|
+
All = "ALL",
|
|
154100
|
+
Mine = "MINE",
|
|
154101
|
+
SharedWithMe = "SHARED_WITH_ME"
|
|
154102
|
+
}
|
|
154103
|
+
export type LoomDateRangeInput = {
|
|
154104
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
154105
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
154106
|
+
};
|
|
153671
154107
|
export type LoomDeleteVideo = {
|
|
153672
154108
|
__typename?: 'LoomDeleteVideo';
|
|
153673
154109
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -158892,33 +159328,37 @@ export type MercuryAsk = Node & {
|
|
|
158892
159328
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158893
159329
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158894
159330
|
createdBy?: Maybe<User>;
|
|
158895
|
-
createdByUserId?: Maybe<Scalars['
|
|
159331
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158896
159332
|
description?: Maybe<Scalars['String']['output']>;
|
|
158897
159333
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158898
159334
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158899
159335
|
id: Scalars['ID']['output'];
|
|
158900
159336
|
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158901
|
-
impactedWorkId?: Maybe<Scalars['
|
|
159337
|
+
impactedWorkId?: Maybe<Scalars['ID']['output']>;
|
|
158902
159338
|
justification?: Maybe<Scalars['String']['output']>;
|
|
158903
159339
|
links?: Maybe<MercuryAskLinkConnection>;
|
|
158904
159340
|
name: Scalars['String']['output'];
|
|
158905
159341
|
owner?: Maybe<User>;
|
|
158906
|
-
ownerId?: Maybe<Scalars['
|
|
159342
|
+
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
158907
159343
|
priority: MercuryAskPriority;
|
|
158908
159344
|
proposedBy?: Maybe<User>;
|
|
158909
159345
|
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159346
|
+
receivingOrganization?: Maybe<MercuryOrganization>;
|
|
159347
|
+
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158910
159348
|
receivingTeam?: Maybe<TeamV2>;
|
|
158911
|
-
receivingTeamId?: Maybe<Scalars['
|
|
159349
|
+
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158912
159350
|
status: MercuryAskStatus;
|
|
158913
159351
|
submitter?: Maybe<User>;
|
|
158914
|
-
submitterId: Scalars['
|
|
159352
|
+
submitterId: Scalars['ID']['output'];
|
|
159353
|
+
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
159354
|
+
submittingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158915
159355
|
submittingTeam?: Maybe<TeamV2>;
|
|
158916
|
-
submittingTeamId?: Maybe<Scalars['
|
|
159356
|
+
submittingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158917
159357
|
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158918
159358
|
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158919
159359
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158920
159360
|
updatedBy?: Maybe<User>;
|
|
158921
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159361
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158922
159362
|
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158923
159363
|
url?: Maybe<Scalars['URL']['output']>;
|
|
158924
159364
|
};
|
|
@@ -158931,6 +159371,7 @@ export type MercuryAskCommentsArgs = {
|
|
|
158931
159371
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158932
159372
|
cloudId: Scalars['ID']['input'];
|
|
158933
159373
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159374
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
158934
159375
|
};
|
|
158935
159376
|
export type MercuryAskConnectedWorkArgs = {
|
|
158936
159377
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158958,10 +159399,10 @@ export type MercuryAskUpdatesArgs = {
|
|
|
158958
159399
|
export type MercuryAskActivity = {
|
|
158959
159400
|
__typename?: 'MercuryAskActivity';
|
|
158960
159401
|
askActivityType: MercuryAskActivityType;
|
|
158961
|
-
askId: Scalars['
|
|
159402
|
+
askId: Scalars['ID']['output'];
|
|
158962
159403
|
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158963
159404
|
askUpdatedByUser?: Maybe<User>;
|
|
158964
|
-
askUpdatedByUserId: Scalars['
|
|
159405
|
+
askUpdatedByUserId: Scalars['ID']['output'];
|
|
158965
159406
|
id: Scalars['ID']['output'];
|
|
158966
159407
|
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158967
159408
|
};
|
|
@@ -158975,9 +159416,11 @@ export declare enum MercuryAskActivityAttribute {
|
|
|
158975
159416
|
Owner = "OWNER",
|
|
158976
159417
|
Priority = "PRIORITY",
|
|
158977
159418
|
ProposedDate = "PROPOSED_DATE",
|
|
159419
|
+
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
158978
159420
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
158979
159421
|
Status = "STATUS",
|
|
158980
159422
|
Submitter = "SUBMITTER",
|
|
159423
|
+
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
158981
159424
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
158982
159425
|
TargetDate = "TARGET_DATE"
|
|
158983
159426
|
}
|
|
@@ -159037,6 +159480,14 @@ export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
|
159037
159480
|
newValue?: Maybe<MercuryAskActivityLink>;
|
|
159038
159481
|
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
159039
159482
|
};
|
|
159483
|
+
export type MercuryAskActivityUpdatedOrganization = MercuryAskActivityUpdatedValue & {
|
|
159484
|
+
__typename?: 'MercuryAskActivityUpdatedOrganization';
|
|
159485
|
+
attribute: MercuryAskActivityAttribute;
|
|
159486
|
+
newOrganization?: Maybe<MercuryOrganization>;
|
|
159487
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159488
|
+
oldOrganization?: Maybe<MercuryOrganization>;
|
|
159489
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159490
|
+
};
|
|
159040
159491
|
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
159041
159492
|
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
159042
159493
|
attribute: MercuryAskActivityAttribute;
|
|
@@ -159099,7 +159550,7 @@ export type MercuryAskConnectedWorkEdge = {
|
|
|
159099
159550
|
node?: Maybe<MercuryAskConnectedWork>;
|
|
159100
159551
|
};
|
|
159101
159552
|
export type MercuryAskConnectedWorkInput = {
|
|
159102
|
-
connectedWorkIds: Array<Scalars['
|
|
159553
|
+
connectedWorkIds: Array<Scalars['ID']['input']>;
|
|
159103
159554
|
id: Scalars['ID']['input'];
|
|
159104
159555
|
};
|
|
159105
159556
|
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
@@ -159121,9 +159572,9 @@ export type MercuryAskEdge = {
|
|
|
159121
159572
|
};
|
|
159122
159573
|
export type MercuryAskLink = Node & {
|
|
159123
159574
|
__typename?: 'MercuryAskLink';
|
|
159124
|
-
askId: Scalars['
|
|
159575
|
+
askId: Scalars['ID']['output'];
|
|
159125
159576
|
attachedByUser?: Maybe<User>;
|
|
159126
|
-
attachedByUserId?: Maybe<Scalars['
|
|
159577
|
+
attachedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159127
159578
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159128
159579
|
id: Scalars['ID']['output'];
|
|
159129
159580
|
linkText?: Maybe<Scalars['String']['output']>;
|
|
@@ -159163,7 +159614,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159163
159614
|
__typename?: 'MercuryAskStatusUpdate';
|
|
159164
159615
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159165
159616
|
createdBy?: Maybe<User>;
|
|
159166
|
-
createdByUserId?: Maybe<Scalars['
|
|
159617
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159167
159618
|
description?: Maybe<Scalars['String']['output']>;
|
|
159168
159619
|
id: Scalars['ID']['output'];
|
|
159169
159620
|
newProposedBy?: Maybe<User>;
|
|
@@ -159176,7 +159627,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159176
159627
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159177
159628
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159178
159629
|
updatedBy?: Maybe<User>;
|
|
159179
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159630
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159180
159631
|
};
|
|
159181
159632
|
export type MercuryAskStatusUpdateConnection = {
|
|
159182
159633
|
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
@@ -159218,7 +159669,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
159218
159669
|
}
|
|
159219
159670
|
export type MercuryAskTransition = {
|
|
159220
159671
|
__typename?: 'MercuryAskTransition';
|
|
159221
|
-
askId: Scalars['
|
|
159672
|
+
askId: Scalars['ID']['output'];
|
|
159222
159673
|
status?: Maybe<MercuryAskStatus>;
|
|
159223
159674
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159224
159675
|
};
|
|
@@ -159877,7 +160328,12 @@ export type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
|
159877
160328
|
commentType?: InputMaybe<MercuryCommentType>;
|
|
159878
160329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159879
160330
|
parentId: Scalars['ID']['input'];
|
|
160331
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
159880
160332
|
};
|
|
160333
|
+
export declare enum MercuryCommentSortOrder {
|
|
160334
|
+
Asc = "ASC",
|
|
160335
|
+
Desc = "DESC"
|
|
160336
|
+
}
|
|
159881
160337
|
export declare enum MercuryCommentType {
|
|
159882
160338
|
Funds = "FUNDS"
|
|
159883
160339
|
}
|
|
@@ -160027,15 +160483,15 @@ export type MercuryCostType = Node & {
|
|
|
160027
160483
|
export type MercuryCreateAskInput = {
|
|
160028
160484
|
cloudId: Scalars['ID']['input'];
|
|
160029
160485
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160030
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160486
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
160031
160487
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160032
160488
|
name: Scalars['String']['input'];
|
|
160033
|
-
ownerId?: InputMaybe<Scalars['
|
|
160489
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
160034
160490
|
priority: MercuryAskPriority;
|
|
160035
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160491
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160036
160492
|
status: MercuryAskStatus;
|
|
160037
|
-
submitterId: Scalars['
|
|
160038
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160493
|
+
submitterId: Scalars['ID']['input'];
|
|
160494
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160039
160495
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160040
160496
|
};
|
|
160041
160497
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
@@ -160047,16 +160503,16 @@ export type MercuryCreateAskStatusUpdateInput = {
|
|
|
160047
160503
|
};
|
|
160048
160504
|
export type MercuryCreateAsksAskInput = {
|
|
160049
160505
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160050
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160506
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
160051
160507
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160052
160508
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
160053
160509
|
name: Scalars['String']['input'];
|
|
160054
|
-
ownerId?: InputMaybe<Scalars['
|
|
160510
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
160055
160511
|
priority: MercuryAskPriority;
|
|
160056
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160512
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160057
160513
|
status: MercuryAskStatus;
|
|
160058
|
-
submitterId: Scalars['
|
|
160059
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160514
|
+
submitterId: Scalars['ID']['input'];
|
|
160515
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160060
160516
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160061
160517
|
};
|
|
160062
160518
|
export type MercuryCreateAsksAskLinkInput = {
|
|
@@ -160314,6 +160770,7 @@ export type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
160314
160770
|
export type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
160315
160771
|
cloudId: Scalars['ID']['input'];
|
|
160316
160772
|
focusAreaId: Scalars['ID']['input'];
|
|
160773
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
160317
160774
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
160318
160775
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
160319
160776
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161326,6 +161783,7 @@ export type MercuryFocusAreaFundsCommentsArgs = {
|
|
|
161326
161783
|
cloudId: Scalars['ID']['input'];
|
|
161327
161784
|
commentType?: MercuryCommentType;
|
|
161328
161785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161786
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
161329
161787
|
};
|
|
161330
161788
|
export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
161331
161789
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161523,6 +161981,9 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
161523
161981
|
Red = "RED",
|
|
161524
161982
|
Yellow = "YELLOW"
|
|
161525
161983
|
}
|
|
161984
|
+
export type MercuryFocusAreaHealthInput = {
|
|
161985
|
+
healthId?: InputMaybe<Scalars['ID']['input']>;
|
|
161986
|
+
};
|
|
161526
161987
|
export type MercuryFocusAreaHierarchy = Node & {
|
|
161527
161988
|
__typename?: 'MercuryFocusAreaHierarchy';
|
|
161528
161989
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -163225,6 +163686,28 @@ export type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
|
163225
163686
|
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
163226
163687
|
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
163227
163688
|
};
|
|
163689
|
+
export declare enum MercuryNotificationChannel {
|
|
163690
|
+
ChatApp = "CHAT_APP",
|
|
163691
|
+
Email = "EMAIL",
|
|
163692
|
+
InApp = "IN_APP"
|
|
163693
|
+
}
|
|
163694
|
+
export declare enum MercuryNotificationGroup {
|
|
163695
|
+
Digest = "DIGEST",
|
|
163696
|
+
RealTime = "REAL_TIME"
|
|
163697
|
+
}
|
|
163698
|
+
export type MercuryNotificationPreference = {
|
|
163699
|
+
__typename?: 'MercuryNotificationPreference';
|
|
163700
|
+
channel: MercuryNotificationChannel;
|
|
163701
|
+
enabled: Scalars['Boolean']['output'];
|
|
163702
|
+
group: MercuryNotificationGroup;
|
|
163703
|
+
type: MercuryNotificationType;
|
|
163704
|
+
};
|
|
163705
|
+
export declare enum MercuryNotificationType {
|
|
163706
|
+
MonthlyDigest = "MONTHLY_DIGEST",
|
|
163707
|
+
OwnerUpdated = "OWNER_UPDATED",
|
|
163708
|
+
StatusUpdateCreated = "STATUS_UPDATE_CREATED",
|
|
163709
|
+
WatcherAdded = "WATCHER_ADDED"
|
|
163710
|
+
}
|
|
163228
163711
|
export type MercuryNumberCustomField = MercuryCustomField & {
|
|
163229
163712
|
__typename?: 'MercuryNumberCustomField';
|
|
163230
163713
|
createdBy?: Maybe<User>;
|
|
@@ -163502,10 +163985,15 @@ export type MercuryOrganizationMembership = Node & {
|
|
|
163502
163985
|
id: Scalars['ID']['output'];
|
|
163503
163986
|
organization?: Maybe<MercuryOrganization>;
|
|
163504
163987
|
startDate: Scalars['Date']['output'];
|
|
163988
|
+
teams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
163505
163989
|
updatedBy?: Maybe<User>;
|
|
163506
163990
|
updatedDate: Scalars['DateTime']['output'];
|
|
163507
163991
|
user?: Maybe<User>;
|
|
163508
163992
|
};
|
|
163993
|
+
export type MercuryOrganizationMembershipTeamsArgs = {
|
|
163994
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163996
|
+
};
|
|
163509
163997
|
export type MercuryOrganizationMembershipConnection = {
|
|
163510
163998
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
163511
163999
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -163600,6 +164088,7 @@ export type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
|
163600
164088
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163601
164089
|
cloudId: Scalars['ID']['input'];
|
|
163602
164090
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164091
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
163603
164092
|
};
|
|
163604
164093
|
export type MercuryOrganizationStatusUpdateConnection = {
|
|
163605
164094
|
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
@@ -164483,7 +164972,7 @@ export type MercuryProjectType = {
|
|
|
164483
164972
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
164484
164973
|
};
|
|
164485
164974
|
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164486
|
-
connectedWorkId: Scalars['
|
|
164975
|
+
connectedWorkId: Scalars['ID']['input'];
|
|
164487
164976
|
id: Scalars['ID']['input'];
|
|
164488
164977
|
};
|
|
164489
164978
|
export type MercuryProposeChangesInput = {
|
|
@@ -164847,6 +165336,7 @@ export type MercuryQueryApi = {
|
|
|
164847
165336
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
164848
165337
|
focusAreaActivityHistoryByIds?: Maybe<Array<Maybe<MercuryFocusAreaActivityHistory>>>;
|
|
164849
165338
|
focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
165339
|
+
focusAreaCount?: Maybe<Scalars['Int']['output']>;
|
|
164850
165340
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
164851
165341
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
164852
165342
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
@@ -164866,6 +165356,7 @@ export type MercuryQueryApi = {
|
|
|
164866
165356
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
164867
165357
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
164868
165358
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
165359
|
+
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
164869
165360
|
workspaceContext: MercuryWorkspaceContext;
|
|
164870
165361
|
};
|
|
164871
165362
|
export type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
@@ -164932,6 +165423,10 @@ export type MercuryQueryApiFocusAreaAsksArgs = {
|
|
|
164932
165423
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164933
165424
|
focusAreaId: Scalars['ID']['input'];
|
|
164934
165425
|
};
|
|
165426
|
+
export type MercuryQueryApiFocusAreaCountArgs = {
|
|
165427
|
+
cloudId: Scalars['ID']['input'];
|
|
165428
|
+
q: Scalars['String']['input'];
|
|
165429
|
+
};
|
|
164935
165430
|
export type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
164936
165431
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164937
165432
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -165013,6 +165508,9 @@ export type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
165013
165508
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
165014
165509
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
165015
165510
|
};
|
|
165511
|
+
export type MercuryQueryApiUserNotificationSettingsArgs = {
|
|
165512
|
+
cloudId: Scalars['ID']['input'];
|
|
165513
|
+
};
|
|
165016
165514
|
export type MercuryQueryApiWorkspaceContextArgs = {
|
|
165017
165515
|
cloudId: Scalars['ID']['input'];
|
|
165018
165516
|
};
|
|
@@ -165235,6 +165733,7 @@ export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
|
165235
165733
|
};
|
|
165236
165734
|
export type MercuryRerankFocusAreasInput = {
|
|
165237
165735
|
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165736
|
+
beforeFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165238
165737
|
containerId: Scalars['ID']['input'];
|
|
165239
165738
|
containerType: MercuryRankingContainerType;
|
|
165240
165739
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -165316,6 +165815,7 @@ export type MercuryRiskCommentsArgs = {
|
|
|
165316
165815
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165317
165816
|
cloudId: Scalars['ID']['input'];
|
|
165318
165817
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165818
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
165319
165819
|
};
|
|
165320
165820
|
export type MercuryRiskRiskStatusUpdatesArgs = {
|
|
165321
165821
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166593,7 +167093,7 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
166593
167093
|
};
|
|
166594
167094
|
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166595
167095
|
id: Scalars['ID']['input'];
|
|
166596
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
167096
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
166597
167097
|
};
|
|
166598
167098
|
export type MercuryUpdateAskJustificationInput = {
|
|
166599
167099
|
id: Scalars['ID']['input'];
|
|
@@ -166605,7 +167105,7 @@ export type MercuryUpdateAskNameInput = {
|
|
|
166605
167105
|
};
|
|
166606
167106
|
export type MercuryUpdateAskOwnerInput = {
|
|
166607
167107
|
id: Scalars['ID']['input'];
|
|
166608
|
-
ownerId?: InputMaybe<Scalars['
|
|
167108
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
166609
167109
|
};
|
|
166610
167110
|
export type MercuryUpdateAskPriorityInput = {
|
|
166611
167111
|
id: Scalars['ID']['input'];
|
|
@@ -166613,25 +167113,25 @@ export type MercuryUpdateAskPriorityInput = {
|
|
|
166613
167113
|
};
|
|
166614
167114
|
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166615
167115
|
id: Scalars['ID']['input'];
|
|
166616
|
-
ownerId?: InputMaybe<Scalars['
|
|
166617
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167116
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
167117
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166618
167118
|
};
|
|
166619
167119
|
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166620
167120
|
id: Scalars['ID']['input'];
|
|
166621
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167121
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166622
167122
|
};
|
|
166623
167123
|
export type MercuryUpdateAskSubmitterInput = {
|
|
166624
167124
|
id: Scalars['ID']['input'];
|
|
166625
|
-
submitterId: Scalars['
|
|
167125
|
+
submitterId: Scalars['ID']['input'];
|
|
166626
167126
|
};
|
|
166627
167127
|
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166628
167128
|
id: Scalars['ID']['input'];
|
|
166629
|
-
submitterId: Scalars['
|
|
166630
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167129
|
+
submitterId: Scalars['ID']['input'];
|
|
167130
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166631
167131
|
};
|
|
166632
167132
|
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166633
167133
|
id: Scalars['ID']['input'];
|
|
166634
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167134
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166635
167135
|
};
|
|
166636
167136
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
166637
167137
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166926,6 +167426,7 @@ export type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
166926
167426
|
};
|
|
166927
167427
|
export type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
166928
167428
|
cloudId: Scalars['ID']['input'];
|
|
167429
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
166929
167430
|
id: Scalars['ID']['input'];
|
|
166930
167431
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
166931
167432
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167254,6 +167755,10 @@ export type MercuryUserEdge = {
|
|
|
167254
167755
|
cursor: Scalars['String']['output'];
|
|
167255
167756
|
node?: Maybe<User>;
|
|
167256
167757
|
};
|
|
167758
|
+
export type MercuryUserNotificationSettings = {
|
|
167759
|
+
__typename?: 'MercuryUserNotificationSettings';
|
|
167760
|
+
preferences?: Maybe<Array<MercuryNotificationPreference>>;
|
|
167761
|
+
};
|
|
167257
167762
|
export type MercuryValidateFocusAreasForRankingInput = {
|
|
167258
167763
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
167259
167764
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -168490,6 +168995,7 @@ export type Mutation = {
|
|
|
168490
168995
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168491
168996
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168492
168997
|
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
168998
|
+
globalApp_tmpPersonalAppSignForgeContextTokens?: Maybe<GlobalAppTmpPersonalAppSignForgeContextTokensResponse>;
|
|
168493
168999
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
168494
169000
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
168495
169001
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -168951,8 +169457,10 @@ export type Mutation = {
|
|
|
168951
169457
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
168952
169458
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
168953
169459
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
169460
|
+
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
168954
169461
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
168955
169462
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
169463
|
+
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
168956
169464
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
168957
169465
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
168958
169466
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -169124,6 +169632,7 @@ export type Mutation = {
|
|
|
169124
169632
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
169125
169633
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
169126
169634
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
169635
|
+
projects_removeWatchers?: Maybe<TownsquareProjectsRemoveWatchersPayload>;
|
|
169127
169636
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
169128
169637
|
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
169129
169638
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -169134,6 +169643,9 @@ export type Mutation = {
|
|
|
169134
169643
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
169135
169644
|
projects_updateSlackSubscription?: Maybe<TownsquareProjectsUpdateSlackSubscriptionPayload>;
|
|
169136
169645
|
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
169646
|
+
psm_finishOnboardTenant?: Maybe<PsmFinishOnboardTenantPayload>;
|
|
169647
|
+
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
169648
|
+
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
169137
169649
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
169138
169650
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
169139
169651
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -172164,6 +172676,9 @@ export type MutationGeneratePermsReportArgs = {
|
|
|
172164
172676
|
export type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
172165
172677
|
input: GlobalAppSignForgeContextTokensInput;
|
|
172166
172678
|
};
|
|
172679
|
+
export type MutationGlobalApp_TmpPersonalAppSignForgeContextTokensArgs = {
|
|
172680
|
+
input: GlobalAppTmpPersonalAppSignForgeContextTokensInput;
|
|
172681
|
+
};
|
|
172167
172682
|
export type MutationGoals_AddGoalTeamLinkArgs = {
|
|
172168
172683
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
172169
172684
|
};
|
|
@@ -173609,6 +174124,7 @@ export type MutationKitsune_CreateOrganizationFieldArgs = {
|
|
|
173609
174124
|
};
|
|
173610
174125
|
export type MutationKitsune_CreateSectionArgs = {
|
|
173611
174126
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174127
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173612
174128
|
name: Scalars['String']['input'];
|
|
173613
174129
|
spaceAri: Scalars['ID']['input'];
|
|
173614
174130
|
};
|
|
@@ -173625,6 +174141,7 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
173625
174141
|
export type MutationKitsune_CreateViewArgs = {
|
|
173626
174142
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173627
174143
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174144
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173628
174145
|
entityType?: InputMaybe<KitsuneEntityType>;
|
|
173629
174146
|
name: Scalars['String']['input'];
|
|
173630
174147
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -173641,6 +174158,10 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
173641
174158
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
173642
174159
|
insightAri: Scalars['ID']['input'];
|
|
173643
174160
|
};
|
|
174161
|
+
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
174162
|
+
ideaAri: Scalars['ID']['input'];
|
|
174163
|
+
insightIds: Array<Scalars['ID']['input']>;
|
|
174164
|
+
};
|
|
173644
174165
|
export type MutationKitsune_MoveSectionArgs = {
|
|
173645
174166
|
rank: KitsuneRankInput;
|
|
173646
174167
|
sectionAri: Scalars['ID']['input'];
|
|
@@ -173650,6 +174171,9 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
173650
174171
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
173651
174172
|
viewAri: Scalars['ID']['input'];
|
|
173652
174173
|
};
|
|
174174
|
+
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
174175
|
+
workspaceAri: Scalars['ID']['input'];
|
|
174176
|
+
};
|
|
173653
174177
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
173654
174178
|
ari: Scalars['ID']['input'];
|
|
173655
174179
|
};
|
|
@@ -173755,6 +174279,7 @@ export type MutationKitsune_UpdateOrganizationFieldArgs = {
|
|
|
173755
174279
|
};
|
|
173756
174280
|
export type MutationKitsune_UpdateSectionArgs = {
|
|
173757
174281
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174282
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173758
174283
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173759
174284
|
sectionAri: Scalars['ID']['input'];
|
|
173760
174285
|
};
|
|
@@ -173771,6 +174296,7 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
173771
174296
|
export type MutationKitsune_UpdateViewArgs = {
|
|
173772
174297
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173773
174298
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174299
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173774
174300
|
id: Scalars['ID']['input'];
|
|
173775
174301
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173776
174302
|
};
|
|
@@ -174174,6 +174700,9 @@ export type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
174174
174700
|
export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
174175
174701
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
174176
174702
|
};
|
|
174703
|
+
export type MutationProjects_RemoveWatchersArgs = {
|
|
174704
|
+
input: TownsquareProjectsRemoveWatchersInput;
|
|
174705
|
+
};
|
|
174177
174706
|
export type MutationProjects_RevokeAccessArgs = {
|
|
174178
174707
|
input: TownsquareProjectRevokeAccessInput;
|
|
174179
174708
|
};
|
|
@@ -174201,6 +174730,17 @@ export type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
|
174201
174730
|
export type MutationProjects_UpdateSlackSubscriptionArgs = {
|
|
174202
174731
|
input: TownsquareProjectsUpdateSlackSubscriptionInput;
|
|
174203
174732
|
};
|
|
174733
|
+
export type MutationPsm_FinishOnboardTenantArgs = {
|
|
174734
|
+
cloudId: Scalars['ID']['input'];
|
|
174735
|
+
input: PsmFinishOnboardTenantInput;
|
|
174736
|
+
};
|
|
174737
|
+
export type MutationPsm_OnboardTenantArgs = {
|
|
174738
|
+
cloudId: Scalars['ID']['input'];
|
|
174739
|
+
input: PsmOnboardTenantInput;
|
|
174740
|
+
};
|
|
174741
|
+
export type MutationPsm_RegisterDeviceArgs = {
|
|
174742
|
+
input: PsmRegisterDeviceInput;
|
|
174743
|
+
};
|
|
174204
174744
|
export type MutationPublicLinkPagesAdminActionArgs = {
|
|
174205
174745
|
action: PublicLinkAdminAction;
|
|
174206
174746
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -177895,6 +178435,9 @@ export type ProactiveAiRovoInsightsStatusResponse = {
|
|
|
177895
178435
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
177896
178436
|
insightsAvailable: Scalars['Boolean']['output'];
|
|
177897
178437
|
};
|
|
178438
|
+
export type ProactiveAiStratusTestInsightsAccountIdOverride = {
|
|
178439
|
+
accountId: Scalars['String']['input'];
|
|
178440
|
+
};
|
|
177898
178441
|
export type ProactiveAiStratusTestInsightsMinion = {
|
|
177899
178442
|
__typename?: 'ProactiveAiStratusTestInsightsMinion';
|
|
177900
178443
|
name: Scalars['String']['output'];
|
|
@@ -177985,6 +178528,88 @@ export type ProvisionDemoSiteResponse = {
|
|
|
177985
178528
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
177986
178529
|
xnId?: Maybe<Scalars['String']['output']>;
|
|
177987
178530
|
};
|
|
178531
|
+
export type PsmDevice = {
|
|
178532
|
+
__typename?: 'PsmDevice';
|
|
178533
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
178534
|
+
cloudId: Scalars['ID']['output'];
|
|
178535
|
+
createdAt: Scalars['DateTime']['output'];
|
|
178536
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
178537
|
+
providerSystemId?: Maybe<Scalars['ID']['output']>;
|
|
178538
|
+
serialNumber: Scalars['String']['output'];
|
|
178539
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
178540
|
+
status: PsmDeviceStatus;
|
|
178541
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
178542
|
+
};
|
|
178543
|
+
export type PsmDeviceConnection = {
|
|
178544
|
+
__typename?: 'PsmDeviceConnection';
|
|
178545
|
+
edges?: Maybe<Array<PsmDeviceEdge>>;
|
|
178546
|
+
errors?: Maybe<Array<QueryError>>;
|
|
178547
|
+
nodes?: Maybe<Array<Maybe<PsmDevice>>>;
|
|
178548
|
+
pageInfo: PageInfo;
|
|
178549
|
+
};
|
|
178550
|
+
export type PsmDeviceEdge = {
|
|
178551
|
+
__typename?: 'PsmDeviceEdge';
|
|
178552
|
+
cursor: Scalars['String']['output'];
|
|
178553
|
+
node?: Maybe<PsmDevice>;
|
|
178554
|
+
};
|
|
178555
|
+
export declare enum PsmDeviceStatus {
|
|
178556
|
+
Active = "ACTIVE",
|
|
178557
|
+
Offline = "OFFLINE",
|
|
178558
|
+
Orphan = "ORPHAN",
|
|
178559
|
+
Unmapped = "UNMAPPED"
|
|
178560
|
+
}
|
|
178561
|
+
export type PsmFinishOnboardTenantInput = {
|
|
178562
|
+
spaceId: Scalars['ID']['input'];
|
|
178563
|
+
};
|
|
178564
|
+
export type PsmFinishOnboardTenantPayload = Payload & {
|
|
178565
|
+
__typename?: 'PsmFinishOnboardTenantPayload';
|
|
178566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178567
|
+
success: Scalars['Boolean']['output'];
|
|
178568
|
+
tenant?: Maybe<PsmTenant>;
|
|
178569
|
+
};
|
|
178570
|
+
export type PsmOnboardTenantInput = {
|
|
178571
|
+
spaceId: Scalars['ID']['input'];
|
|
178572
|
+
};
|
|
178573
|
+
export type PsmOnboardTenantPayload = Payload & {
|
|
178574
|
+
__typename?: 'PsmOnboardTenantPayload';
|
|
178575
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178576
|
+
success: Scalars['Boolean']['output'];
|
|
178577
|
+
tenant?: Maybe<PsmTenant>;
|
|
178578
|
+
};
|
|
178579
|
+
export declare enum PsmOnboardTenantStatus {
|
|
178580
|
+
ConfigurationUploadSuccess = "CONFIGURATION_UPLOAD_SUCCESS",
|
|
178581
|
+
Failed = "FAILED",
|
|
178582
|
+
Initiated = "INITIATED",
|
|
178583
|
+
Onboarded = "ONBOARDED"
|
|
178584
|
+
}
|
|
178585
|
+
export type PsmOnboardTenantStatusInput = {
|
|
178586
|
+
spaceId: Scalars['ID']['input'];
|
|
178587
|
+
};
|
|
178588
|
+
export type PsmOnboardTenantStatusResult = {
|
|
178589
|
+
__typename?: 'PsmOnboardTenantStatusResult';
|
|
178590
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178591
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178592
|
+
spaceId: Scalars['ID']['output'];
|
|
178593
|
+
status: PsmOnboardTenantStatus;
|
|
178594
|
+
};
|
|
178595
|
+
export type PsmRegisterDeviceInput = {
|
|
178596
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
178597
|
+
cloudId: Scalars['ID']['input'];
|
|
178598
|
+
serialNumber: Scalars['String']['input'];
|
|
178599
|
+
};
|
|
178600
|
+
export type PsmRegisterDevicePayload = Payload & {
|
|
178601
|
+
__typename?: 'PsmRegisterDevicePayload';
|
|
178602
|
+
device?: Maybe<PsmDevice>;
|
|
178603
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178604
|
+
success: Scalars['Boolean']['output'];
|
|
178605
|
+
};
|
|
178606
|
+
export type PsmTenant = {
|
|
178607
|
+
__typename?: 'PsmTenant';
|
|
178608
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178609
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178610
|
+
spaceId: Scalars['ID']['output'];
|
|
178611
|
+
status: PsmOnboardTenantStatus;
|
|
178612
|
+
};
|
|
177988
178613
|
export type PublicLink = {
|
|
177989
178614
|
__typename?: 'PublicLink';
|
|
177990
178615
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -178434,6 +179059,7 @@ export type Query = {
|
|
|
178434
179059
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
178435
179060
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
178436
179061
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
179062
|
+
agentWorkspace_serviceOptions?: Maybe<AgentWorkspaceServiceOptionsPage>;
|
|
178437
179063
|
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178438
179064
|
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178439
179065
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
@@ -178564,6 +179190,7 @@ export type Query = {
|
|
|
178564
179190
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
178565
179191
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
178566
179192
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
179193
|
+
assetsDM_objectsListDataRowsV2?: Maybe<AssetsDmObjectsListDataRows>;
|
|
178567
179194
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
178568
179195
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
178569
179196
|
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
@@ -178572,6 +179199,7 @@ export type Query = {
|
|
|
178572
179199
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
178573
179200
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
178574
179201
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
179202
|
+
assetsDM_savedSearchDetailsV2?: Maybe<AssetsDmSavedSearchDetailsV2>;
|
|
178575
179203
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
178576
179204
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
178577
179205
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
@@ -178602,8 +179230,9 @@ export type Query = {
|
|
|
178602
179230
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
178603
179231
|
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
178604
179232
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
178605
|
-
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<
|
|
178606
|
-
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<
|
|
179233
|
+
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179234
|
+
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179235
|
+
assetsVertical_nonConfiguredItemMappings?: Maybe<AssetsVerticalNonConfiguredItemMappingConnection>;
|
|
178607
179236
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
178608
179237
|
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
178609
179238
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
@@ -179166,6 +179795,9 @@ export type Query = {
|
|
|
179166
179795
|
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
179167
179796
|
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179168
179797
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179798
|
+
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
179799
|
+
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
179800
|
+
globalApp_isProductAdmin?: Maybe<GlobalAppIsProductAdminResponse>;
|
|
179169
179801
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
179170
179802
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
179171
179803
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -181476,10 +182108,12 @@ export type Query = {
|
|
|
181476
182108
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
181477
182109
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
181478
182110
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
182111
|
+
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
181479
182112
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
181480
182113
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
181481
182114
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
181482
182115
|
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
182116
|
+
jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
|
|
181483
182117
|
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
181484
182118
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
181485
182119
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
@@ -181548,6 +182182,7 @@ export type Query = {
|
|
|
181548
182182
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
181549
182183
|
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
181550
182184
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
182185
|
+
loom_currentUserVideos?: Maybe<LoomCurrentUserVideosPayload>;
|
|
181551
182186
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
181552
182187
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
181553
182188
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
@@ -181704,6 +182339,9 @@ export type Query = {
|
|
|
181704
182339
|
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
181705
182340
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
181706
182341
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
182342
|
+
psm_device?: Maybe<PsmDevice>;
|
|
182343
|
+
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
182344
|
+
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
181707
182345
|
ptpage?: Maybe<PtPage>;
|
|
181708
182346
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
181709
182347
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -182483,6 +183121,7 @@ export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
|
182483
183121
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182484
183122
|
cloudId: Scalars['String']['input'];
|
|
182485
183123
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183124
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
182486
183125
|
};
|
|
182487
183126
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
182488
183127
|
cloudId: Scalars['String']['input'];
|
|
@@ -182791,6 +183430,15 @@ export type QueryAgentWorkspace_SchedulesArgs = {
|
|
|
182791
183430
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
182792
183431
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
182793
183432
|
};
|
|
183433
|
+
export type QueryAgentWorkspace_ServiceOptionsArgs = {
|
|
183434
|
+
cloudId: Scalars['ID']['input'];
|
|
183435
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
183436
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
183437
|
+
projectId: Scalars['ID']['input'];
|
|
183438
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
183439
|
+
serviceFieldId: Scalars['ID']['input'];
|
|
183440
|
+
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
183441
|
+
};
|
|
182794
183442
|
export type QueryAgentWorkspace_ServicesArgs = {
|
|
182795
183443
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182796
183444
|
cloudId: Scalars['ID']['input'];
|
|
@@ -183499,6 +184147,14 @@ export type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
183499
184147
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
183500
184148
|
workspaceId: Scalars['ID']['input'];
|
|
183501
184149
|
};
|
|
184150
|
+
export type QueryAssetsDm_ObjectsListDataRowsV2Args = {
|
|
184151
|
+
cloudId: Scalars['ID']['input'];
|
|
184152
|
+
objectId: Scalars['ID']['input'];
|
|
184153
|
+
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
184154
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
184155
|
+
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
184156
|
+
workspaceId: Scalars['ID']['input'];
|
|
184157
|
+
};
|
|
183502
184158
|
export type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
183503
184159
|
cloudId: Scalars['ID']['input'];
|
|
183504
184160
|
name: Scalars['String']['input'];
|
|
@@ -183552,6 +184208,11 @@ export type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
|
183552
184208
|
savedSearchId: Scalars['ID']['input'];
|
|
183553
184209
|
workspaceId: Scalars['ID']['input'];
|
|
183554
184210
|
};
|
|
184211
|
+
export type QueryAssetsDm_SavedSearchDetailsV2Args = {
|
|
184212
|
+
cloudId: Scalars['ID']['input'];
|
|
184213
|
+
savedSearchId: Scalars['ID']['input'];
|
|
184214
|
+
workspaceId: Scalars['ID']['input'];
|
|
184215
|
+
};
|
|
183555
184216
|
export type QueryAssetsDm_SavedSearchesListArgs = {
|
|
183556
184217
|
cloudId: Scalars['ID']['input'];
|
|
183557
184218
|
objectId: Scalars['ID']['input'];
|
|
@@ -183690,13 +184351,24 @@ export type QueryAssetsVertical_ModelObjectsArgs = {
|
|
|
183690
184351
|
input: AssetsVerticalModelObjectsInput;
|
|
183691
184352
|
};
|
|
183692
184353
|
export type QueryAssetsVertical_NonConfiguredAssetTypesTrackingsArgs = {
|
|
184354
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183693
184355
|
cloudId: Scalars['ID']['input'];
|
|
184356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183694
184357
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
183695
184358
|
};
|
|
183696
184359
|
export type QueryAssetsVertical_NonConfiguredDepreciationRuleAssetTypesArgs = {
|
|
184360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183697
184361
|
cloudId: Scalars['ID']['input'];
|
|
184362
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183698
184363
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
183699
184364
|
};
|
|
184365
|
+
export type QueryAssetsVertical_NonConfiguredItemMappingsArgs = {
|
|
184366
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
184367
|
+
cloudId: Scalars['ID']['input'];
|
|
184368
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
184369
|
+
spaceId: Scalars['ID']['input'];
|
|
184370
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
184371
|
+
};
|
|
183700
184372
|
export type QueryAssetsVertical_ObjectsArgs = {
|
|
183701
184373
|
cloudId: Scalars['ID']['input'];
|
|
183702
184374
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -186211,6 +186883,15 @@ export type QueryGetSummaryArgs = {
|
|
|
186211
186883
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
186212
186884
|
responseType?: InputMaybe<ResponseType>;
|
|
186213
186885
|
};
|
|
186886
|
+
export type QueryGlobalApp_ExtensionsByContextAriArgs = {
|
|
186887
|
+
contextAri: Scalars['ID']['input'];
|
|
186888
|
+
};
|
|
186889
|
+
export type QueryGlobalApp_ExtensionsByInstallationIdArgs = {
|
|
186890
|
+
installationId: Scalars['ID']['input'];
|
|
186891
|
+
};
|
|
186892
|
+
export type QueryGlobalApp_IsProductAdminArgs = {
|
|
186893
|
+
contextAri: Scalars['ID']['input'];
|
|
186894
|
+
};
|
|
186214
186895
|
export type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
186215
186896
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186216
186897
|
containerId: Scalars['ID']['input'];
|
|
@@ -202661,6 +203342,10 @@ export type QueryJsmTelemetry_DashboardArgs = {
|
|
|
202661
203342
|
incidentId: Scalars['ID']['input'];
|
|
202662
203343
|
input: JsmTelemetryDashboardQueryInput;
|
|
202663
203344
|
};
|
|
203345
|
+
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
203346
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203347
|
+
incidentId: Scalars['ID']['input'];
|
|
203348
|
+
};
|
|
202664
203349
|
export type QueryJsmTelemetry_GetMetricAttributeValuesArgs = {
|
|
202665
203350
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202666
203351
|
incidentId: Scalars['ID']['input'];
|
|
@@ -202682,6 +203367,10 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
|
202682
203367
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202683
203368
|
id: Scalars['ID']['input'];
|
|
202684
203369
|
};
|
|
203370
|
+
export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
203371
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203372
|
+
incidentId: Scalars['ID']['input'];
|
|
203373
|
+
};
|
|
202685
203374
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
202686
203375
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202687
203376
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
@@ -202947,6 +203636,9 @@ export type QueryLoom_CreateSpaceArgs = {
|
|
|
202947
203636
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
202948
203637
|
siteId: Scalars['ID']['input'];
|
|
202949
203638
|
};
|
|
203639
|
+
export type QueryLoom_CurrentUserVideosArgs = {
|
|
203640
|
+
input: LoomCurrentUserVideosInput;
|
|
203641
|
+
};
|
|
202950
203642
|
export type QueryLoom_FoldersSearchArgs = {
|
|
202951
203643
|
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202952
203644
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203348,6 +204040,7 @@ export type QueryProactiveAi_RovoInsightsStatusArgs = {
|
|
|
203348
204040
|
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203349
204041
|
};
|
|
203350
204042
|
export type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
204043
|
+
accountIdOverride?: InputMaybe<ProactiveAiStratusTestInsightsAccountIdOverride>;
|
|
203351
204044
|
cloudId: Scalars['ID']['input'];
|
|
203352
204045
|
variables?: InputMaybe<Array<InputMaybe<ProactiveAiStratusTestInsightsPromptVariable>>>;
|
|
203353
204046
|
};
|
|
@@ -203475,6 +204168,20 @@ export type QueryProjects_StatusSummaryForTagArgs = {
|
|
|
203475
204168
|
export type QueryProjects_UpdatesByIdsArgs = {
|
|
203476
204169
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
203477
204170
|
};
|
|
204171
|
+
export type QueryPsm_DeviceArgs = {
|
|
204172
|
+
cloudId: Scalars['ID']['input'];
|
|
204173
|
+
serialNumber: Scalars['String']['input'];
|
|
204174
|
+
};
|
|
204175
|
+
export type QueryPsm_DevicesArgs = {
|
|
204176
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204177
|
+
cloudId: Scalars['ID']['input'];
|
|
204178
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204179
|
+
spaceId: Scalars['ID']['input'];
|
|
204180
|
+
};
|
|
204181
|
+
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
204182
|
+
cloudId: Scalars['ID']['input'];
|
|
204183
|
+
input: PsmOnboardTenantStatusInput;
|
|
204184
|
+
};
|
|
203478
204185
|
export type QueryPtpageArgs = {
|
|
203479
204186
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203480
204187
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -205419,10 +206126,10 @@ export type RadarSkill = Node & {
|
|
|
205419
206126
|
description?: Maybe<Scalars['String']['output']>;
|
|
205420
206127
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
205421
206128
|
id: Scalars['ID']['output'];
|
|
205422
|
-
level?: Maybe<Scalars['Int']['output']>;
|
|
205423
206129
|
name: Scalars['String']['output'];
|
|
205424
206130
|
parent?: Maybe<RadarSkill>;
|
|
205425
206131
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
206132
|
+
pathIds: Array<Scalars['ID']['output']>;
|
|
205426
206133
|
updatedAt: Scalars['DateTime']['output'];
|
|
205427
206134
|
};
|
|
205428
206135
|
export type RadarSkillAssignmentInput = {
|
|
@@ -228643,9 +229350,16 @@ export type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
|
228643
229350
|
export type SmartsRecommendedUser = {
|
|
228644
229351
|
__typename?: 'SmartsRecommendedUser';
|
|
228645
229352
|
id: Scalars['ID']['output'];
|
|
229353
|
+
linkedThirdPartyUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
228646
229354
|
score?: Maybe<Scalars['Float']['output']>;
|
|
228647
229355
|
user?: Maybe<User>;
|
|
228648
229356
|
};
|
|
229357
|
+
export type SmartsRecommendedUserLinkedThirdPartyUsersArgs = {
|
|
229358
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
229359
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
229360
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
229361
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
229362
|
+
};
|
|
228649
229363
|
export type SmartsThirdPartyContext = {
|
|
228650
229364
|
__typename?: 'SmartsThirdPartyContext';
|
|
228651
229365
|
ari: Scalars['ID']['output'];
|
|
@@ -232564,10 +233278,10 @@ export type Subscription = {
|
|
|
232564
233278
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
232565
233279
|
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
232566
233280
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
233281
|
+
psm_dummy?: Maybe<Scalars['String']['output']>;
|
|
232567
233282
|
sandbox: SandboxSubscription;
|
|
232568
233283
|
signup: SignupSubscriptionApi;
|
|
232569
233284
|
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
232570
|
-
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
232571
233285
|
testing?: Maybe<TestingSubscription>;
|
|
232572
233286
|
trello: TrelloSubscriptionApi;
|
|
232573
233287
|
};
|
|
@@ -232704,9 +233418,6 @@ export type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
|
232704
233418
|
export type SubscriptionSpf_OnPlanUpdateArgs = {
|
|
232705
233419
|
id: Scalars['ID']['input'];
|
|
232706
233420
|
};
|
|
232707
|
-
export type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
232708
|
-
changeRequestId: Scalars['ID']['input'];
|
|
232709
|
-
};
|
|
232710
233421
|
export declare enum SummaryType {
|
|
232711
233422
|
Blogpost = "BLOGPOST",
|
|
232712
233423
|
Page = "PAGE"
|
|
@@ -235199,6 +235910,7 @@ export type TownsquareCreateGoalInput = {
|
|
|
235199
235910
|
name: Scalars['String']['input'];
|
|
235200
235911
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
235201
235912
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
235913
|
+
subGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
235202
235914
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
235203
235915
|
};
|
|
235204
235916
|
export type TownsquareCreateGoalPayload = {
|
|
@@ -236331,6 +237043,7 @@ export type TownsquareGoalsCreateInput = {
|
|
|
236331
237043
|
name: Scalars['String']['input'];
|
|
236332
237044
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
236333
237045
|
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
237046
|
+
subGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
236334
237047
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
236335
237048
|
};
|
|
236336
237049
|
export type TownsquareGoalsCreateLearningInput = {
|
|
@@ -237147,6 +237860,7 @@ export type TownsquareMetricUpdateInput = {
|
|
|
237147
237860
|
export type TownsquareMetricValue = Node & {
|
|
237148
237861
|
__typename?: 'TownsquareMetricValue';
|
|
237149
237862
|
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
237863
|
+
creator?: Maybe<User>;
|
|
237150
237864
|
id: Scalars['ID']['output'];
|
|
237151
237865
|
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
237152
237866
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -238422,6 +239136,17 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
238422
239136
|
success: Scalars['Boolean']['output'];
|
|
238423
239137
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
238424
239138
|
};
|
|
239139
|
+
export type TownsquareProjectsRemoveWatchersInput = {
|
|
239140
|
+
projectId: Scalars['ID']['input'];
|
|
239141
|
+
watcherIds: Array<Scalars['ID']['input']>;
|
|
239142
|
+
};
|
|
239143
|
+
export type TownsquareProjectsRemoveWatchersPayload = {
|
|
239144
|
+
__typename?: 'TownsquareProjectsRemoveWatchersPayload';
|
|
239145
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239146
|
+
project?: Maybe<TownsquareProject>;
|
|
239147
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
239148
|
+
success: Scalars['Boolean']['output'];
|
|
239149
|
+
};
|
|
238425
239150
|
export type TownsquareProjectsSetDefaultAccessLevelInput = {
|
|
238426
239151
|
accessLevel: TownsquareProjectAccessLevel;
|
|
238427
239152
|
containerId: Scalars['ID']['input'];
|
|
@@ -239521,6 +240246,31 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239521
240246
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239522
240247
|
id: Scalars['ID']['output'];
|
|
239523
240248
|
};
|
|
240249
|
+
export type TrelloAgentTask = {
|
|
240250
|
+
__typename?: 'TrelloAgentTask';
|
|
240251
|
+
id: Scalars['ID']['output'];
|
|
240252
|
+
key: Scalars['String']['output'];
|
|
240253
|
+
objectId: Scalars['ID']['output'];
|
|
240254
|
+
status: TrelloAgentTaskStatus;
|
|
240255
|
+
};
|
|
240256
|
+
export declare enum TrelloAgentTaskState {
|
|
240257
|
+
ApprovalRequired = "APPROVAL_REQUIRED",
|
|
240258
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
240259
|
+
Canceled = "CANCELED",
|
|
240260
|
+
Completed = "COMPLETED",
|
|
240261
|
+
Failed = "FAILED",
|
|
240262
|
+
InputRequired = "INPUT_REQUIRED",
|
|
240263
|
+
Rejected = "REJECTED",
|
|
240264
|
+
Submitted = "SUBMITTED",
|
|
240265
|
+
Unspecified = "UNSPECIFIED",
|
|
240266
|
+
Working = "WORKING"
|
|
240267
|
+
}
|
|
240268
|
+
export type TrelloAgentTaskStatus = {
|
|
240269
|
+
__typename?: 'TrelloAgentTaskStatus';
|
|
240270
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
240271
|
+
state: TrelloAgentTaskState;
|
|
240272
|
+
timestamp: Scalars['DateTime']['output'];
|
|
240273
|
+
};
|
|
239524
240274
|
export type TrelloAgenticActivity = {
|
|
239525
240275
|
__typename?: 'TrelloAgenticActivity';
|
|
239526
240276
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241387,6 +242137,7 @@ export type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
241387
242137
|
boardV2?: Maybe<TrelloBaseBoard>;
|
|
241388
242138
|
errors?: Maybe<Array<MutationError>>;
|
|
241389
242139
|
success: Scalars['Boolean']['output'];
|
|
242140
|
+
task?: Maybe<TrelloAgentTask>;
|
|
241390
242141
|
};
|
|
241391
242142
|
export type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
241392
242143
|
__typename?: 'TrelloCreateCardAction';
|
|
@@ -242005,6 +242756,11 @@ export type TrelloEnterprisePrefs = {
|
|
|
242005
242756
|
__typename?: 'TrelloEnterprisePrefs';
|
|
242006
242757
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
242007
242758
|
};
|
|
242759
|
+
export type TrelloExistingLabelSuggestion = {
|
|
242760
|
+
__typename?: 'TrelloExistingLabelSuggestion';
|
|
242761
|
+
label?: Maybe<TrelloLabel>;
|
|
242762
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
242763
|
+
};
|
|
242008
242764
|
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
242009
242765
|
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
242010
242766
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -243125,6 +243881,8 @@ export type TrelloMutationApi = {
|
|
|
243125
243881
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
243126
243882
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
243127
243883
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
243884
|
+
suggestExistingLabelsForCard?: Maybe<TrelloSuggestExistingLabelsForCardPayload>;
|
|
243885
|
+
suggestNewLabelsForCard?: Maybe<TrelloSuggestNewLabelsForCardPayload>;
|
|
243128
243886
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
243129
243887
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
243130
243888
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -243447,6 +244205,12 @@ export type TrelloMutationApiSortListCardsArgs = {
|
|
|
243447
244205
|
export type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
243448
244206
|
input: TrelloCardBatchSpecificationInput;
|
|
243449
244207
|
};
|
|
244208
|
+
export type TrelloMutationApiSuggestExistingLabelsForCardArgs = {
|
|
244209
|
+
input: TrelloSuggestExistingLabelsForCardInput;
|
|
244210
|
+
};
|
|
244211
|
+
export type TrelloMutationApiSuggestNewLabelsForCardArgs = {
|
|
244212
|
+
input: TrelloSuggestNewLabelsForCardInput;
|
|
244213
|
+
};
|
|
243450
244214
|
export type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
243451
244215
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
243452
244216
|
};
|
|
@@ -243600,6 +244364,12 @@ export type TrelloNewCustomFieldOptionInput = {
|
|
|
243600
244364
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
243601
244365
|
value: TrelloCustomFieldOptionValueInput;
|
|
243602
244366
|
};
|
|
244367
|
+
export type TrelloNewLabelSuggestion = {
|
|
244368
|
+
__typename?: 'TrelloNewLabelSuggestion';
|
|
244369
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
244370
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
244371
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
244372
|
+
};
|
|
243603
244373
|
export type TrelloNewYearsResolutionAiBoardInput = {
|
|
243604
244374
|
resolution: Scalars['String']['input'];
|
|
243605
244375
|
};
|
|
@@ -245149,6 +245919,24 @@ export type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
|
245149
245919
|
id: Scalars['ID']['input'];
|
|
245150
245920
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245151
245921
|
};
|
|
245922
|
+
export type TrelloSuggestExistingLabelsForCardInput = {
|
|
245923
|
+
cardId: Scalars['ID']['input'];
|
|
245924
|
+
};
|
|
245925
|
+
export type TrelloSuggestExistingLabelsForCardPayload = Payload & {
|
|
245926
|
+
__typename?: 'TrelloSuggestExistingLabelsForCardPayload';
|
|
245927
|
+
errors?: Maybe<Array<MutationError>>;
|
|
245928
|
+
success: Scalars['Boolean']['output'];
|
|
245929
|
+
suggestedLabels?: Maybe<Array<TrelloExistingLabelSuggestion>>;
|
|
245930
|
+
};
|
|
245931
|
+
export type TrelloSuggestNewLabelsForCardInput = {
|
|
245932
|
+
cardId: Scalars['ID']['input'];
|
|
245933
|
+
};
|
|
245934
|
+
export type TrelloSuggestNewLabelsForCardPayload = Payload & {
|
|
245935
|
+
__typename?: 'TrelloSuggestNewLabelsForCardPayload';
|
|
245936
|
+
errors?: Maybe<Array<MutationError>>;
|
|
245937
|
+
success: Scalars['Boolean']['output'];
|
|
245938
|
+
suggestedLabels?: Maybe<Array<TrelloNewLabelSuggestion>>;
|
|
245939
|
+
};
|
|
245152
245940
|
export declare enum TrelloSupportedPlannerProviders {
|
|
245153
245941
|
Google = "GOOGLE",
|
|
245154
245942
|
Outlook = "OUTLOOK"
|