@forge/cli-shared 9.2.0-next.5-experimental-a1600ff → 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 +2 -14
- package/out/apps/create-an-app.d.ts +4 -4
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +2 -8
- package/out/apps/register-app.d.ts +1 -2
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +834 -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 -4
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -8
- package/package.json +2 -2
|
@@ -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
|
};
|
|
@@ -11815,7 +11820,8 @@ export type AssetsBundle = {
|
|
|
11815
11820
|
export type AssetsBundleInstantiation = {
|
|
11816
11821
|
__typename?: 'AssetsBundleInstantiation';
|
|
11817
11822
|
bundle: AssetsBundle;
|
|
11818
|
-
|
|
11823
|
+
dependencyInstantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11824
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11819
11825
|
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11820
11826
|
};
|
|
11821
11827
|
export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
@@ -13833,6 +13839,19 @@ export type AssetsDmObjectsListSearchGroupOutput = {
|
|
|
13833
13839
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13834
13840
|
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
13835
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
|
+
};
|
|
13836
13855
|
export type AssetsDmObjectsListSearchItem = {
|
|
13837
13856
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13838
13857
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -13858,6 +13877,48 @@ export type AssetsDmObjectsListSearchItemOutput = {
|
|
|
13858
13877
|
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13859
13878
|
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13860
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
|
+
};
|
|
13861
13922
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
13862
13923
|
AfterNext = "AFTER_NEXT",
|
|
13863
13924
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -13988,9 +14049,30 @@ export type AssetsDmSavedSearchDetails = {
|
|
|
13988
14049
|
savedSearchId: Scalars['ID']['output'];
|
|
13989
14050
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13990
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
|
+
};
|
|
13991
14066
|
export type AssetsDmSavedSearchInput = {
|
|
13992
14067
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
13993
14068
|
};
|
|
14069
|
+
export type AssetsDmSavedSearchSubtreeInputV2 = {
|
|
14070
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
14071
|
+
};
|
|
14072
|
+
export type AssetsDmSavedSearchSubtreeV2 = {
|
|
14073
|
+
__typename?: 'AssetsDMSavedSearchSubtreeV2';
|
|
14074
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14075
|
+
};
|
|
13994
14076
|
export type AssetsDmSavedSearchesCreateResponse = {
|
|
13995
14077
|
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
13996
14078
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -14460,6 +14542,7 @@ export type AssetsObjectType = Node & {
|
|
|
14460
14542
|
links?: Maybe<AssetsLinks>;
|
|
14461
14543
|
name?: Maybe<Scalars['String']['output']>;
|
|
14462
14544
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
14545
|
+
parentObjectType?: Maybe<AssetsObjectType>;
|
|
14463
14546
|
schema?: Maybe<AssetsSchema>;
|
|
14464
14547
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
14465
14548
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -14789,6 +14872,7 @@ export type AssetsVerticalAssetTypesTrackingConnection = {
|
|
|
14789
14872
|
__typename?: 'AssetsVerticalAssetTypesTrackingConnection';
|
|
14790
14873
|
edges: Array<AssetsVerticalAssetTypesTrackingEdge>;
|
|
14791
14874
|
pageInfo: PageInfo;
|
|
14875
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14792
14876
|
};
|
|
14793
14877
|
export type AssetsVerticalAssetTypesTrackingEdge = {
|
|
14794
14878
|
__typename?: 'AssetsVerticalAssetTypesTrackingEdge';
|
|
@@ -15413,7 +15497,9 @@ export type AssetsVerticalItemMapping = {
|
|
|
15413
15497
|
id: Scalars['ID']['output'];
|
|
15414
15498
|
itemId: Scalars['ID']['output'];
|
|
15415
15499
|
itemType: AssetsVerticalItemType;
|
|
15500
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
15416
15501
|
siteId: Scalars['ID']['output'];
|
|
15502
|
+
space?: Maybe<JiraProject>;
|
|
15417
15503
|
spaceId: Scalars['ID']['output'];
|
|
15418
15504
|
workspaceId: Scalars['ID']['output'];
|
|
15419
15505
|
};
|
|
@@ -15421,6 +15507,7 @@ export type AssetsVerticalItemMappingConnection = {
|
|
|
15421
15507
|
__typename?: 'AssetsVerticalItemMappingConnection';
|
|
15422
15508
|
edges: Array<AssetsVerticalItemMappingEdge>;
|
|
15423
15509
|
pageInfo: PageInfo;
|
|
15510
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15424
15511
|
};
|
|
15425
15512
|
export type AssetsVerticalItemMappingEdge = {
|
|
15426
15513
|
__typename?: 'AssetsVerticalItemMappingEdge';
|
|
@@ -15502,11 +15589,34 @@ export type AssetsVerticalNonConfiguredAssetType = {
|
|
|
15502
15589
|
objSchema?: Maybe<AssetsSchema>;
|
|
15503
15590
|
objType?: Maybe<AssetsObjectType>;
|
|
15504
15591
|
};
|
|
15505
|
-
export type
|
|
15506
|
-
__typename?: '
|
|
15507
|
-
|
|
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;
|
|
15508
15619
|
};
|
|
15509
|
-
export type AssetsVerticalNonConfiguredAssetTypesResult = AssetsVerticalNonConfiguredAssetTypesPayload | QueryError;
|
|
15510
15620
|
export type AssetsVerticalObjectType = {
|
|
15511
15621
|
__typename?: 'AssetsVerticalObjectType';
|
|
15512
15622
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15711,6 +15821,10 @@ export type AssetsVerticalSchemaTemplate = {
|
|
|
15711
15821
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
15712
15822
|
type: Scalars['String']['output'];
|
|
15713
15823
|
};
|
|
15824
|
+
export type AssetsVerticalSpaceDetails = {
|
|
15825
|
+
__typename?: 'AssetsVerticalSpaceDetails';
|
|
15826
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15827
|
+
};
|
|
15714
15828
|
export type AssetsVerticalStatusCount = {
|
|
15715
15829
|
__typename?: 'AssetsVerticalStatusCount';
|
|
15716
15830
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -15833,6 +15947,7 @@ export type AssetsVerticalVerticalInstantiationCategory = {
|
|
|
15833
15947
|
cloudId: Scalars['ID']['output'];
|
|
15834
15948
|
id: Scalars['ID']['output'];
|
|
15835
15949
|
items?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
15950
|
+
spaceDetails?: Maybe<AssetsVerticalSpaceDetails>;
|
|
15836
15951
|
status: AssetsVerticalVerticalInstantiationCategoryStatus;
|
|
15837
15952
|
verticalInstantiationId: Scalars['ID']['output'];
|
|
15838
15953
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -17204,7 +17319,7 @@ export type CcpAllowancePoolAllocationsResponse = {
|
|
|
17204
17319
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
17205
17320
|
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
17206
17321
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
17207
|
-
id?: Maybe<Scalars['
|
|
17322
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17208
17323
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
17209
17324
|
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
17210
17325
|
poolId?: Maybe<Scalars['String']['output']>;
|
|
@@ -17525,7 +17640,7 @@ export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
|
17525
17640
|
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
17526
17641
|
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
17527
17642
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
17528
|
-
id?: Maybe<Scalars['
|
|
17643
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17529
17644
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
17530
17645
|
};
|
|
17531
17646
|
export type CcpConcessionBenefit = {
|
|
@@ -17934,6 +18049,9 @@ export type CcpEntitlementExperienceCapabilitiesPlaceOrderLiteArgs = {
|
|
|
17934
18049
|
source: Scalars['String']['input'];
|
|
17935
18050
|
targetOffering: CcpPlaceOrderLiteTargetOfferingInput;
|
|
17936
18051
|
};
|
|
18052
|
+
export type CcpEntitlementExperienceCapabilitiesSetUsageLimitArgs = {
|
|
18053
|
+
action?: InputMaybe<CcpSetUsageLimitAction>;
|
|
18054
|
+
};
|
|
17937
18055
|
export type CcpEntitlementOfferingTransition = {
|
|
17938
18056
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
17939
18057
|
id: Scalars['ID']['output'];
|
|
@@ -18333,7 +18451,7 @@ export type CcpOfferingRelationship = {
|
|
|
18333
18451
|
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
18334
18452
|
description?: Maybe<Scalars['String']['output']>;
|
|
18335
18453
|
from?: Maybe<CcpRelationshipNode>;
|
|
18336
|
-
id?: Maybe<Scalars['
|
|
18454
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18337
18455
|
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
18338
18456
|
relationshipType?: Maybe<CcpRelationshipType>;
|
|
18339
18457
|
status?: Maybe<CcpRelationshipStatus>;
|
|
@@ -18710,7 +18828,7 @@ export type CcpPromotionAndOrRuleCondition = {
|
|
|
18710
18828
|
};
|
|
18711
18829
|
export type CcpPromotionApplicationReason = {
|
|
18712
18830
|
__typename?: 'CcpPromotionApplicationReason';
|
|
18713
|
-
id?: Maybe<Scalars['
|
|
18831
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18714
18832
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18715
18833
|
};
|
|
18716
18834
|
export type CcpPromotionApplicationReasonSetLimiter = {
|
|
@@ -18721,7 +18839,7 @@ export type CcpPromotionApplicationReasonSetLimiter = {
|
|
|
18721
18839
|
export type CcpPromotionApplicationReasonWithCustomisable = {
|
|
18722
18840
|
__typename?: 'CcpPromotionApplicationReasonWithCustomisable';
|
|
18723
18841
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
18724
|
-
id?: Maybe<Scalars['
|
|
18842
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18725
18843
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18726
18844
|
};
|
|
18727
18845
|
export type CcpPromotionBenefit = {
|
|
@@ -19426,6 +19544,10 @@ export type CcpSearchTimestampBoundsInput = {
|
|
|
19426
19544
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
19427
19545
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
19428
19546
|
};
|
|
19547
|
+
export declare enum CcpSetUsageLimitAction {
|
|
19548
|
+
Disable = "DISABLE",
|
|
19549
|
+
Set = "SET"
|
|
19550
|
+
}
|
|
19429
19551
|
export type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
19430
19552
|
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
19431
19553
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19494,7 +19616,7 @@ export declare enum CcpSupportedBillingSystems {
|
|
|
19494
19616
|
}
|
|
19495
19617
|
export type CcpTaxId = {
|
|
19496
19618
|
__typename?: 'CcpTaxId';
|
|
19497
|
-
id?: Maybe<Scalars['
|
|
19619
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19498
19620
|
label?: Maybe<Scalars['String']['output']>;
|
|
19499
19621
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
19500
19622
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -44047,6 +44169,25 @@ export type DevAiAutodevNextScanScheduleInput = {
|
|
|
44047
44169
|
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
44048
44170
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44049
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
|
+
};
|
|
44050
44191
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
44051
44192
|
repositoryAris: Array<Scalars['ID']['input']>;
|
|
44052
44193
|
standardId: Scalars['ID']['input'];
|
|
@@ -44251,6 +44392,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
44251
44392
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
44252
44393
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
44253
44394
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44395
|
+
scanScheduleConfiguration?: Maybe<DevAiAutodevNextScanSchedules>;
|
|
44254
44396
|
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
44255
44397
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
44256
44398
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -44271,6 +44413,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
44271
44413
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
44272
44414
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
44273
44415
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44416
|
+
scanScheduleConfiguration?: InputMaybe<DevAiAutodevNextScanSchedulesInput>;
|
|
44274
44417
|
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
44275
44418
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
44276
44419
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -50063,6 +50206,7 @@ export type ExternalTeam = Node & {
|
|
|
50063
50206
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
50064
50207
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
50065
50208
|
id: Scalars['ID']['output'];
|
|
50209
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
50066
50210
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50067
50211
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
50068
50212
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -50073,6 +50217,7 @@ export type ExternalTeam = Node & {
|
|
|
50073
50217
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50074
50218
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50075
50219
|
url?: Maybe<Scalars['String']['output']>;
|
|
50220
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
50076
50221
|
};
|
|
50077
50222
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
50078
50223
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
@@ -50281,6 +50426,7 @@ export type ExternalVideo = Node & {
|
|
|
50281
50426
|
provider?: Maybe<ExternalProvider>;
|
|
50282
50427
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
50283
50428
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
50429
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50284
50430
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
50285
50431
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50286
50432
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -52091,12 +52237,20 @@ export type GlobalAppExtensionContextInput = {
|
|
|
52091
52237
|
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52092
52238
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52093
52239
|
};
|
|
52240
|
+
export type GlobalAppExtensionsResponse = {
|
|
52241
|
+
__typename?: 'GlobalAppExtensionsResponse';
|
|
52242
|
+
extensions?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
52243
|
+
};
|
|
52094
52244
|
export type GlobalAppForgeContextToken = {
|
|
52095
52245
|
__typename?: 'GlobalAppForgeContextToken';
|
|
52096
52246
|
expiresAt: Scalars['String']['output'];
|
|
52097
52247
|
extensionId: Scalars['ID']['output'];
|
|
52098
52248
|
jwt: Scalars['String']['output'];
|
|
52099
52249
|
};
|
|
52250
|
+
export type GlobalAppIsProductAdminResponse = {
|
|
52251
|
+
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52252
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
52253
|
+
};
|
|
52100
52254
|
export type GlobalAppSignForgeContextTokensInput = {
|
|
52101
52255
|
contextIds: Array<Scalars['ID']['input']>;
|
|
52102
52256
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
@@ -52108,6 +52262,30 @@ export type GlobalAppSignForgeContextTokensResponse = Payload & {
|
|
|
52108
52262
|
success: Scalars['Boolean']['output'];
|
|
52109
52263
|
tokens: Array<GlobalAppForgeContextToken>;
|
|
52110
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
|
+
};
|
|
52111
52289
|
export type GlobalCardCreateAdditionalFields = {
|
|
52112
52290
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
52113
52291
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -53157,6 +53335,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
53157
53335
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53158
53336
|
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
53159
53337
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
53338
|
+
weightVersion?: InputMaybe<Scalars['String']['input']>;
|
|
53160
53339
|
};
|
|
53161
53340
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
53162
53341
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -53307,6 +53486,7 @@ export type GraphInferenceJiraEntityContextMeta = {
|
|
|
53307
53486
|
servedBy: Scalars['String']['output'];
|
|
53308
53487
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
53309
53488
|
warnings: Array<Scalars['String']['output']>;
|
|
53489
|
+
weightVersion: Scalars['String']['output'];
|
|
53310
53490
|
};
|
|
53311
53491
|
export type GraphInferenceJiraEntityContextProperty = {
|
|
53312
53492
|
__typename?: 'GraphInferenceJiraEntityContextProperty';
|
|
@@ -53410,6 +53590,7 @@ export type GraphIntegrationActionDirectoryItem = {
|
|
|
53410
53590
|
displayName: Scalars['String']['output'];
|
|
53411
53591
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53412
53592
|
id: Scalars['ID']['output'];
|
|
53593
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
53413
53594
|
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
53414
53595
|
name: Scalars['String']['output'];
|
|
53415
53596
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
@@ -53492,6 +53673,7 @@ export type GraphIntegrationDirectoryFilterDimension = {
|
|
|
53492
53673
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53493
53674
|
id: Scalars['ID']['output'];
|
|
53494
53675
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
53676
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
53495
53677
|
};
|
|
53496
53678
|
export type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
53497
53679
|
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
@@ -116619,6 +116801,11 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
116619
116801
|
success: Scalars['Boolean']['output'];
|
|
116620
116802
|
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
116621
116803
|
};
|
|
116804
|
+
export type HelpCenterDeleteHubTranslationsInput = {
|
|
116805
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116806
|
+
locale: Scalars['String']['input'];
|
|
116807
|
+
parentId: Scalars['ID']['input'];
|
|
116808
|
+
};
|
|
116622
116809
|
export type HelpCenterDeleteInput = {
|
|
116623
116810
|
helpCenterAri: Scalars['String']['input'];
|
|
116624
116811
|
};
|
|
@@ -116663,6 +116850,16 @@ export type HelpCenterHomePageTitleInput = {
|
|
|
116663
116850
|
default: Scalars['String']['input'];
|
|
116664
116851
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
116665
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
|
+
};
|
|
116666
116863
|
export type HelpCenterHubProductEntityResult = {
|
|
116667
116864
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
116668
116865
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
@@ -116673,9 +116870,35 @@ export type HelpCenterHubProductEntityResult = {
|
|
|
116673
116870
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
116674
116871
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
116675
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
|
+
};
|
|
116676
116898
|
export type HelpCenterLayoutAdf = {
|
|
116677
116899
|
__typename?: 'HelpCenterLayoutAdf';
|
|
116678
116900
|
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
116901
|
+
translatableBlocksSchema: Array<HelpCenterTranslatableBlock>;
|
|
116679
116902
|
};
|
|
116680
116903
|
export type HelpCenterLayoutAdfContentArgs = {
|
|
116681
116904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -116726,7 +116949,9 @@ export type HelpCenterMutationApi = {
|
|
|
116726
116949
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
116727
116950
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
116728
116951
|
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
116952
|
+
deleteLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116729
116953
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
116954
|
+
setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116730
116955
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
116731
116956
|
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
116732
116957
|
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
@@ -116752,9 +116977,15 @@ export type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
|
116752
116977
|
export type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
|
|
116753
116978
|
input: HelpCenterPageDeleteInput;
|
|
116754
116979
|
};
|
|
116980
|
+
export type HelpCenterMutationApiDeleteLayoutTranslationsArgs = {
|
|
116981
|
+
input: HelpCenterDeleteHubTranslationsInput;
|
|
116982
|
+
};
|
|
116755
116983
|
export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
116756
116984
|
input: HelpCenterBulkDeleteTopicInput;
|
|
116757
116985
|
};
|
|
116986
|
+
export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
|
|
116987
|
+
input: HelpCenterHubTranslationsInput;
|
|
116988
|
+
};
|
|
116758
116989
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
116759
116990
|
input: HelpCenterUpdateInput;
|
|
116760
116991
|
};
|
|
@@ -116828,6 +117059,7 @@ export type HelpCenterPage = Node & {
|
|
|
116828
117059
|
name?: Maybe<HelpCenterPageName>;
|
|
116829
117060
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
116830
117061
|
pageType?: Maybe<HelpCenterPageType>;
|
|
117062
|
+
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
116831
117063
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
116832
117064
|
};
|
|
116833
117065
|
export type HelpCenterPageCreateInput = {
|
|
@@ -116883,6 +117115,12 @@ export type HelpCenterPageQueryResultEdge = {
|
|
|
116883
117115
|
cursor: Scalars['String']['output'];
|
|
116884
117116
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
116885
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
|
+
};
|
|
116886
117124
|
export declare enum HelpCenterPageType {
|
|
116887
117125
|
Custom = "CUSTOM",
|
|
116888
117126
|
CustomHome = "CUSTOM_HOME",
|
|
@@ -117085,6 +117323,7 @@ export type HelpCenterQueryApi = {
|
|
|
117085
117323
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
117086
117324
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
117087
117325
|
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
117326
|
+
layoutTranslations: Array<HelpCenterHubLayoutTranslations>;
|
|
117088
117327
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
117089
117328
|
};
|
|
117090
117329
|
export type HelpCenterQueryApiCustomerExperiencesArgs = {
|
|
@@ -117160,6 +117399,10 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
|
117160
117399
|
helpCenterAri: Scalars['ID']['input'];
|
|
117161
117400
|
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
117162
117401
|
};
|
|
117402
|
+
export type HelpCenterQueryApiLayoutTranslationsArgs = {
|
|
117403
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117404
|
+
parentId: Scalars['ID']['input'];
|
|
117405
|
+
};
|
|
117163
117406
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
117164
117407
|
helpCenterAri: Scalars['ID']['input'];
|
|
117165
117408
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -117269,6 +117512,32 @@ export type HelpCenterTopicItemInput = {
|
|
|
117269
117512
|
ari: Scalars['ID']['input'];
|
|
117270
117513
|
};
|
|
117271
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
|
+
}
|
|
117272
117541
|
export type HelpCenterTranslation = {
|
|
117273
117542
|
__typename?: 'HelpCenterTranslation';
|
|
117274
117543
|
locale: Scalars['String']['output'];
|
|
@@ -120168,6 +120437,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
120168
120437
|
Unknown = "UNKNOWN"
|
|
120169
120438
|
}
|
|
120170
120439
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
120440
|
+
AgentReadiness = "AGENT_READINESS",
|
|
120171
120441
|
Planning = "PLANNING"
|
|
120172
120442
|
}
|
|
120173
120443
|
export declare enum JiraAgentSessionState {
|
|
@@ -120317,17 +120587,6 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
120317
120587
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
120318
120588
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
120319
120589
|
};
|
|
120320
|
-
export declare enum JiraAiAgentConversationState {
|
|
120321
|
-
ArtefactReady = "ARTEFACT_READY",
|
|
120322
|
-
AuthRequired = "AUTH_REQUIRED",
|
|
120323
|
-
Cancelled = "CANCELLED",
|
|
120324
|
-
Completed = "COMPLETED",
|
|
120325
|
-
Failed = "FAILED",
|
|
120326
|
-
InputRequired = "INPUT_REQUIRED",
|
|
120327
|
-
Rejected = "REJECTED",
|
|
120328
|
-
Unknown = "UNKNOWN",
|
|
120329
|
-
Working = "WORKING"
|
|
120330
|
-
}
|
|
120331
120590
|
export type JiraAiAgentSession = {
|
|
120332
120591
|
__typename?: 'JiraAiAgentSession';
|
|
120333
120592
|
agent?: Maybe<User>;
|
|
@@ -120352,11 +120611,6 @@ export type JiraAiAgentSessionEnrichmentInput = {
|
|
|
120352
120611
|
conversationId: Scalars['String']['input'];
|
|
120353
120612
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
120354
120613
|
};
|
|
120355
|
-
export type JiraAiAgentSessionStatus = {
|
|
120356
|
-
__typename?: 'JiraAiAgentSessionStatus';
|
|
120357
|
-
conversationId: Scalars['ID']['output'];
|
|
120358
|
-
state: JiraAiAgentConversationState;
|
|
120359
|
-
};
|
|
120360
120614
|
export declare enum JiraAiContextPanel {
|
|
120361
120615
|
None = "NONE",
|
|
120362
120616
|
ResolutionPlan = "RESOLUTION_PLAN",
|
|
@@ -122412,6 +122666,7 @@ export type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
|
122412
122666
|
};
|
|
122413
122667
|
export type JiraBoardViewSprintsArgs = {
|
|
122414
122668
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122669
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
122415
122670
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122416
122671
|
};
|
|
122417
122672
|
export type JiraBoardViewUnmappedStatusesArgs = {
|
|
@@ -128984,11 +129239,9 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128984
129239
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
128985
129240
|
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
128986
129241
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
128987
|
-
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
128988
129242
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
128989
129243
|
archivedBy?: Maybe<User>;
|
|
128990
129244
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
128991
|
-
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
128992
129245
|
assignee?: Maybe<User>;
|
|
128993
129246
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
128994
129247
|
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
@@ -129198,11 +129451,6 @@ export type JiraIssueAllActivitiesArgs = {
|
|
|
129198
129451
|
first: Scalars['Int']['input'];
|
|
129199
129452
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
129200
129453
|
};
|
|
129201
|
-
export type JiraIssueAllAgentSessionsArgs = {
|
|
129202
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
129203
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129204
|
-
sort?: InputMaybe<Scalars['String']['input']>;
|
|
129205
|
-
};
|
|
129206
129454
|
export type JiraIssueApprovalActivitiesArgs = {
|
|
129207
129455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129208
129456
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130971,6 +131219,7 @@ export type JiraIssueNextActionSuggestions = {
|
|
|
130971
131219
|
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
130972
131220
|
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
130973
131221
|
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
131222
|
+
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
130974
131223
|
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
130975
131224
|
};
|
|
130976
131225
|
export type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
@@ -134105,6 +134354,7 @@ export type JiraMutation = {
|
|
|
134105
134354
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
134106
134355
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
134107
134356
|
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
134357
|
+
jira_updateProjectPolicyAssociatedProjects?: Maybe<JiraUpdateProjectPolicyAssociatedProjectsPayload>;
|
|
134108
134358
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
134109
134359
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
134110
134360
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -134561,6 +134811,9 @@ export type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
134561
134811
|
export type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
134562
134812
|
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
134563
134813
|
};
|
|
134814
|
+
export type JiraMutationJira_UpdateProjectPolicyAssociatedProjectsArgs = {
|
|
134815
|
+
input: JiraUpdateProjectPolicyAssociatedProjectsInput;
|
|
134816
|
+
};
|
|
134564
134817
|
export type JiraMutationJwmAssociateFieldArgs = {
|
|
134565
134818
|
cloudId: Scalars['ID']['input'];
|
|
134566
134819
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -135217,6 +135470,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
135217
135470
|
Reports = "REPORTS",
|
|
135218
135471
|
Requests = "REQUESTS",
|
|
135219
135472
|
Security = "SECURITY",
|
|
135473
|
+
Sessions = "SESSIONS",
|
|
135220
135474
|
Shortcuts = "SHORTCUTS",
|
|
135221
135475
|
Summary = "SUMMARY",
|
|
135222
135476
|
Teams = "TEAMS",
|
|
@@ -135244,7 +135498,8 @@ export declare enum JiraNextActionContentType {
|
|
|
135244
135498
|
export declare enum JiraNextActionGroup {
|
|
135245
135499
|
AiFeatures = "AI_FEATURES",
|
|
135246
135500
|
LoomUpdates = "LOOM_UPDATES",
|
|
135247
|
-
Sdlc = "SDLC"
|
|
135501
|
+
Sdlc = "SDLC",
|
|
135502
|
+
TriageAgent = "TRIAGE_AGENT"
|
|
135248
135503
|
}
|
|
135249
135504
|
export declare enum JiraNextActionInteractionType {
|
|
135250
135505
|
ActionNudge = "ACTION_NUDGE",
|
|
@@ -136177,6 +136432,26 @@ export type JiraPermissionGrantHolder = {
|
|
|
136177
136432
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
136178
136433
|
permission: JiraProjectPermission;
|
|
136179
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
|
+
};
|
|
136180
136455
|
export type JiraPermissionGrantValue = {
|
|
136181
136456
|
__typename?: 'JiraPermissionGrantValue';
|
|
136182
136457
|
id: Scalars['ID']['output'];
|
|
@@ -137021,6 +137296,9 @@ export type JiraProjectBoardsArgs = {
|
|
|
137021
137296
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137022
137297
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137023
137298
|
};
|
|
137299
|
+
export type JiraProjectCapabilitiesArgs = {
|
|
137300
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
137301
|
+
};
|
|
137024
137302
|
export type JiraProjectComponentsArgs = {
|
|
137025
137303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137026
137304
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -137780,6 +138058,7 @@ export type JiraProjectPolicyRuleViolation = {
|
|
|
137780
138058
|
message?: Maybe<Scalars['String']['output']>;
|
|
137781
138059
|
policy?: Maybe<JiraProjectPolicy>;
|
|
137782
138060
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
138061
|
+
ruleTypeId?: Maybe<Scalars['String']['output']>;
|
|
137783
138062
|
};
|
|
137784
138063
|
export type JiraProjectPolicyRuleViolationConnection = HasPageInfo & HasTotal & {
|
|
137785
138064
|
__typename?: 'JiraProjectPolicyRuleViolationConnection';
|
|
@@ -138390,6 +138669,7 @@ export type JiraQuery = {
|
|
|
138390
138669
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
138391
138670
|
resourceUsageMetricsV2?: Maybe<JiraResourceUsageMetricConnectionV2>;
|
|
138392
138671
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
138672
|
+
rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
138393
138673
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
138394
138674
|
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
138395
138675
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -139645,6 +139925,9 @@ export type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
139645
139925
|
category: JiraRecommendationCategory;
|
|
139646
139926
|
cloudId: Scalars['ID']['input'];
|
|
139647
139927
|
};
|
|
139928
|
+
export type JiraQueryRovoEnablementStatusArgs = {
|
|
139929
|
+
cloudId: Scalars['ID']['input'];
|
|
139930
|
+
};
|
|
139648
139931
|
export type JiraQuerySavedFiltersArgs = {
|
|
139649
139932
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139650
139933
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -139871,8 +140154,10 @@ export type JiraRecentItemsFilter = {
|
|
|
139871
140154
|
export declare enum JiraRecommendationCategory {
|
|
139872
140155
|
CustomField = "CUSTOM_FIELD",
|
|
139873
140156
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
140157
|
+
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
139874
140158
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
139875
|
-
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
140159
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
140160
|
+
WorkflowScheme = "WORKFLOW_SCHEME"
|
|
139876
140161
|
}
|
|
139877
140162
|
export type JiraRecommendedAction = {
|
|
139878
140163
|
__typename?: 'JiraRecommendedAction';
|
|
@@ -140020,7 +140305,6 @@ export type JiraReleaseHistoryItem = {
|
|
|
140020
140305
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
140021
140306
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
140022
140307
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
140023
|
-
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
140024
140308
|
i18nFieldName?: Maybe<Scalars['String']['output']>;
|
|
140025
140309
|
id: Scalars['ID']['output'];
|
|
140026
140310
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -145261,6 +145545,8 @@ export type JiraTimelineIssueSearchCustomInput = {
|
|
|
145261
145545
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
145262
145546
|
boardId: Scalars['ID']['input'];
|
|
145263
145547
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145548
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145549
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
145264
145550
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145265
145551
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145266
145552
|
};
|
|
@@ -145565,6 +145851,58 @@ export type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
145565
145851
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
145566
145852
|
success: Scalars['Boolean']['output'];
|
|
145567
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
|
+
};
|
|
145568
145906
|
export type JiraUiExposedError = {
|
|
145569
145907
|
__typename?: 'JiraUIExposedError';
|
|
145570
145908
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -146131,6 +146469,17 @@ export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
|
146131
146469
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
146132
146470
|
success: Scalars['Boolean']['output'];
|
|
146133
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
|
+
};
|
|
146134
146483
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
146135
146484
|
id: Scalars['ID']['input'];
|
|
146136
146485
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -147937,6 +148286,26 @@ export type JiraWorkTypeUsageMetricValuesArgs = {
|
|
|
147937
148286
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147938
148287
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
147939
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
|
+
};
|
|
147940
148309
|
export type JiraWorklog = Node & {
|
|
147941
148310
|
__typename?: 'JiraWorklog';
|
|
147942
148311
|
author?: Maybe<User>;
|
|
@@ -150215,6 +150584,26 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
150215
150584
|
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
150216
150585
|
ValidationError = "VALIDATION_ERROR"
|
|
150217
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
|
+
};
|
|
150218
150607
|
export type JsmTelemetryMetricAggregation = {
|
|
150219
150608
|
__typename?: 'JsmTelemetryMetricAggregation';
|
|
150220
150609
|
function: JsmTelemetryMetricAggregationFunction;
|
|
@@ -150328,6 +150717,7 @@ export type JsmTelemetryMetricMetadata = {
|
|
|
150328
150717
|
__typename?: 'JsmTelemetryMetricMetadata';
|
|
150329
150718
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
150330
150719
|
metricName: Scalars['String']['output'];
|
|
150720
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
150331
150721
|
type?: Maybe<JsmTelemetryMetricType>;
|
|
150332
150722
|
unit?: Maybe<Scalars['String']['output']>;
|
|
150333
150723
|
};
|
|
@@ -151187,6 +151577,7 @@ export declare enum KitsuneJobType {
|
|
|
151187
151577
|
ImportCustomer = "IMPORT_CUSTOMER",
|
|
151188
151578
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
151189
151579
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
151580
|
+
RefreshInsightCounters = "REFRESH_INSIGHT_COUNTERS",
|
|
151190
151581
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
151191
151582
|
ResyncInsights = "RESYNC_INSIGHTS",
|
|
151192
151583
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
@@ -151283,6 +151674,7 @@ export type KitsuneSection = Node & {
|
|
|
151283
151674
|
__typename?: 'KitsuneSection';
|
|
151284
151675
|
createdAt: Scalars['DateTime']['output'];
|
|
151285
151676
|
description?: Maybe<Scalars['String']['output']>;
|
|
151677
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151286
151678
|
id: Scalars['ID']['output'];
|
|
151287
151679
|
name: Scalars['String']['output'];
|
|
151288
151680
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -151602,6 +151994,7 @@ export type KitsuneView = Node & {
|
|
|
151602
151994
|
__typename?: 'KitsuneView';
|
|
151603
151995
|
config?: Maybe<KitsuneViewConfig>;
|
|
151604
151996
|
description?: Maybe<Scalars['String']['output']>;
|
|
151997
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151605
151998
|
entityType: KitsuneEntityType;
|
|
151606
151999
|
id: Scalars['ID']['output'];
|
|
151607
152000
|
name: Scalars['String']['output'];
|
|
@@ -153688,6 +154081,29 @@ export type LoomCreateVideoReactionPayload = {
|
|
|
153688
154081
|
reaction?: Maybe<LoomVideoReaction>;
|
|
153689
154082
|
success: Scalars['Boolean']['output'];
|
|
153690
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
|
+
};
|
|
153691
154107
|
export type LoomDeleteVideo = {
|
|
153692
154108
|
__typename?: 'LoomDeleteVideo';
|
|
153693
154109
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -158912,33 +159328,37 @@ export type MercuryAsk = Node & {
|
|
|
158912
159328
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158913
159329
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158914
159330
|
createdBy?: Maybe<User>;
|
|
158915
|
-
createdByUserId?: Maybe<Scalars['
|
|
159331
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158916
159332
|
description?: Maybe<Scalars['String']['output']>;
|
|
158917
159333
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158918
159334
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158919
159335
|
id: Scalars['ID']['output'];
|
|
158920
159336
|
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158921
|
-
impactedWorkId?: Maybe<Scalars['
|
|
159337
|
+
impactedWorkId?: Maybe<Scalars['ID']['output']>;
|
|
158922
159338
|
justification?: Maybe<Scalars['String']['output']>;
|
|
158923
159339
|
links?: Maybe<MercuryAskLinkConnection>;
|
|
158924
159340
|
name: Scalars['String']['output'];
|
|
158925
159341
|
owner?: Maybe<User>;
|
|
158926
|
-
ownerId?: Maybe<Scalars['
|
|
159342
|
+
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
158927
159343
|
priority: MercuryAskPriority;
|
|
158928
159344
|
proposedBy?: Maybe<User>;
|
|
158929
159345
|
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159346
|
+
receivingOrganization?: Maybe<MercuryOrganization>;
|
|
159347
|
+
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158930
159348
|
receivingTeam?: Maybe<TeamV2>;
|
|
158931
|
-
receivingTeamId?: Maybe<Scalars['
|
|
159349
|
+
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158932
159350
|
status: MercuryAskStatus;
|
|
158933
159351
|
submitter?: Maybe<User>;
|
|
158934
|
-
submitterId: Scalars['
|
|
159352
|
+
submitterId: Scalars['ID']['output'];
|
|
159353
|
+
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
159354
|
+
submittingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158935
159355
|
submittingTeam?: Maybe<TeamV2>;
|
|
158936
|
-
submittingTeamId?: Maybe<Scalars['
|
|
159356
|
+
submittingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158937
159357
|
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158938
159358
|
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158939
159359
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158940
159360
|
updatedBy?: Maybe<User>;
|
|
158941
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159361
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158942
159362
|
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158943
159363
|
url?: Maybe<Scalars['URL']['output']>;
|
|
158944
159364
|
};
|
|
@@ -158951,6 +159371,7 @@ export type MercuryAskCommentsArgs = {
|
|
|
158951
159371
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158952
159372
|
cloudId: Scalars['ID']['input'];
|
|
158953
159373
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159374
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
158954
159375
|
};
|
|
158955
159376
|
export type MercuryAskConnectedWorkArgs = {
|
|
158956
159377
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158978,10 +159399,10 @@ export type MercuryAskUpdatesArgs = {
|
|
|
158978
159399
|
export type MercuryAskActivity = {
|
|
158979
159400
|
__typename?: 'MercuryAskActivity';
|
|
158980
159401
|
askActivityType: MercuryAskActivityType;
|
|
158981
|
-
askId: Scalars['
|
|
159402
|
+
askId: Scalars['ID']['output'];
|
|
158982
159403
|
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158983
159404
|
askUpdatedByUser?: Maybe<User>;
|
|
158984
|
-
askUpdatedByUserId: Scalars['
|
|
159405
|
+
askUpdatedByUserId: Scalars['ID']['output'];
|
|
158985
159406
|
id: Scalars['ID']['output'];
|
|
158986
159407
|
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158987
159408
|
};
|
|
@@ -158995,9 +159416,11 @@ export declare enum MercuryAskActivityAttribute {
|
|
|
158995
159416
|
Owner = "OWNER",
|
|
158996
159417
|
Priority = "PRIORITY",
|
|
158997
159418
|
ProposedDate = "PROPOSED_DATE",
|
|
159419
|
+
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
158998
159420
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
158999
159421
|
Status = "STATUS",
|
|
159000
159422
|
Submitter = "SUBMITTER",
|
|
159423
|
+
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
159001
159424
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
159002
159425
|
TargetDate = "TARGET_DATE"
|
|
159003
159426
|
}
|
|
@@ -159057,6 +159480,14 @@ export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
|
159057
159480
|
newValue?: Maybe<MercuryAskActivityLink>;
|
|
159058
159481
|
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
159059
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
|
+
};
|
|
159060
159491
|
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
159061
159492
|
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
159062
159493
|
attribute: MercuryAskActivityAttribute;
|
|
@@ -159119,7 +159550,7 @@ export type MercuryAskConnectedWorkEdge = {
|
|
|
159119
159550
|
node?: Maybe<MercuryAskConnectedWork>;
|
|
159120
159551
|
};
|
|
159121
159552
|
export type MercuryAskConnectedWorkInput = {
|
|
159122
|
-
connectedWorkIds: Array<Scalars['
|
|
159553
|
+
connectedWorkIds: Array<Scalars['ID']['input']>;
|
|
159123
159554
|
id: Scalars['ID']['input'];
|
|
159124
159555
|
};
|
|
159125
159556
|
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
@@ -159141,9 +159572,9 @@ export type MercuryAskEdge = {
|
|
|
159141
159572
|
};
|
|
159142
159573
|
export type MercuryAskLink = Node & {
|
|
159143
159574
|
__typename?: 'MercuryAskLink';
|
|
159144
|
-
askId: Scalars['
|
|
159575
|
+
askId: Scalars['ID']['output'];
|
|
159145
159576
|
attachedByUser?: Maybe<User>;
|
|
159146
|
-
attachedByUserId?: Maybe<Scalars['
|
|
159577
|
+
attachedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159147
159578
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159148
159579
|
id: Scalars['ID']['output'];
|
|
159149
159580
|
linkText?: Maybe<Scalars['String']['output']>;
|
|
@@ -159183,7 +159614,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159183
159614
|
__typename?: 'MercuryAskStatusUpdate';
|
|
159184
159615
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159185
159616
|
createdBy?: Maybe<User>;
|
|
159186
|
-
createdByUserId?: Maybe<Scalars['
|
|
159617
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159187
159618
|
description?: Maybe<Scalars['String']['output']>;
|
|
159188
159619
|
id: Scalars['ID']['output'];
|
|
159189
159620
|
newProposedBy?: Maybe<User>;
|
|
@@ -159196,7 +159627,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159196
159627
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159197
159628
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159198
159629
|
updatedBy?: Maybe<User>;
|
|
159199
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159630
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159200
159631
|
};
|
|
159201
159632
|
export type MercuryAskStatusUpdateConnection = {
|
|
159202
159633
|
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
@@ -159238,7 +159669,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
159238
159669
|
}
|
|
159239
159670
|
export type MercuryAskTransition = {
|
|
159240
159671
|
__typename?: 'MercuryAskTransition';
|
|
159241
|
-
askId: Scalars['
|
|
159672
|
+
askId: Scalars['ID']['output'];
|
|
159242
159673
|
status?: Maybe<MercuryAskStatus>;
|
|
159243
159674
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159244
159675
|
};
|
|
@@ -159897,7 +160328,12 @@ export type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
|
159897
160328
|
commentType?: InputMaybe<MercuryCommentType>;
|
|
159898
160329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159899
160330
|
parentId: Scalars['ID']['input'];
|
|
160331
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
159900
160332
|
};
|
|
160333
|
+
export declare enum MercuryCommentSortOrder {
|
|
160334
|
+
Asc = "ASC",
|
|
160335
|
+
Desc = "DESC"
|
|
160336
|
+
}
|
|
159901
160337
|
export declare enum MercuryCommentType {
|
|
159902
160338
|
Funds = "FUNDS"
|
|
159903
160339
|
}
|
|
@@ -160047,15 +160483,15 @@ export type MercuryCostType = Node & {
|
|
|
160047
160483
|
export type MercuryCreateAskInput = {
|
|
160048
160484
|
cloudId: Scalars['ID']['input'];
|
|
160049
160485
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160050
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160486
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
160051
160487
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160052
160488
|
name: Scalars['String']['input'];
|
|
160053
|
-
ownerId?: InputMaybe<Scalars['
|
|
160489
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
160054
160490
|
priority: MercuryAskPriority;
|
|
160055
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160491
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160056
160492
|
status: MercuryAskStatus;
|
|
160057
|
-
submitterId: Scalars['
|
|
160058
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160493
|
+
submitterId: Scalars['ID']['input'];
|
|
160494
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160059
160495
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160060
160496
|
};
|
|
160061
160497
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
@@ -160067,16 +160503,16 @@ export type MercuryCreateAskStatusUpdateInput = {
|
|
|
160067
160503
|
};
|
|
160068
160504
|
export type MercuryCreateAsksAskInput = {
|
|
160069
160505
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160070
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160506
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
160071
160507
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160072
160508
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
160073
160509
|
name: Scalars['String']['input'];
|
|
160074
|
-
ownerId?: InputMaybe<Scalars['
|
|
160510
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
160075
160511
|
priority: MercuryAskPriority;
|
|
160076
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160512
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160077
160513
|
status: MercuryAskStatus;
|
|
160078
|
-
submitterId: Scalars['
|
|
160079
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160514
|
+
submitterId: Scalars['ID']['input'];
|
|
160515
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160080
160516
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160081
160517
|
};
|
|
160082
160518
|
export type MercuryCreateAsksAskLinkInput = {
|
|
@@ -160334,6 +160770,7 @@ export type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
160334
160770
|
export type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
160335
160771
|
cloudId: Scalars['ID']['input'];
|
|
160336
160772
|
focusAreaId: Scalars['ID']['input'];
|
|
160773
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
160337
160774
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
160338
160775
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
160339
160776
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161346,6 +161783,7 @@ export type MercuryFocusAreaFundsCommentsArgs = {
|
|
|
161346
161783
|
cloudId: Scalars['ID']['input'];
|
|
161347
161784
|
commentType?: MercuryCommentType;
|
|
161348
161785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161786
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
161349
161787
|
};
|
|
161350
161788
|
export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
161351
161789
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161543,6 +161981,9 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
161543
161981
|
Red = "RED",
|
|
161544
161982
|
Yellow = "YELLOW"
|
|
161545
161983
|
}
|
|
161984
|
+
export type MercuryFocusAreaHealthInput = {
|
|
161985
|
+
healthId?: InputMaybe<Scalars['ID']['input']>;
|
|
161986
|
+
};
|
|
161546
161987
|
export type MercuryFocusAreaHierarchy = Node & {
|
|
161547
161988
|
__typename?: 'MercuryFocusAreaHierarchy';
|
|
161548
161989
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -163245,6 +163686,28 @@ export type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
|
163245
163686
|
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
163246
163687
|
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
163247
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
|
+
}
|
|
163248
163711
|
export type MercuryNumberCustomField = MercuryCustomField & {
|
|
163249
163712
|
__typename?: 'MercuryNumberCustomField';
|
|
163250
163713
|
createdBy?: Maybe<User>;
|
|
@@ -163522,10 +163985,15 @@ export type MercuryOrganizationMembership = Node & {
|
|
|
163522
163985
|
id: Scalars['ID']['output'];
|
|
163523
163986
|
organization?: Maybe<MercuryOrganization>;
|
|
163524
163987
|
startDate: Scalars['Date']['output'];
|
|
163988
|
+
teams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
163525
163989
|
updatedBy?: Maybe<User>;
|
|
163526
163990
|
updatedDate: Scalars['DateTime']['output'];
|
|
163527
163991
|
user?: Maybe<User>;
|
|
163528
163992
|
};
|
|
163993
|
+
export type MercuryOrganizationMembershipTeamsArgs = {
|
|
163994
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163996
|
+
};
|
|
163529
163997
|
export type MercuryOrganizationMembershipConnection = {
|
|
163530
163998
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
163531
163999
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -163620,6 +164088,7 @@ export type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
|
163620
164088
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163621
164089
|
cloudId: Scalars['ID']['input'];
|
|
163622
164090
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164091
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
163623
164092
|
};
|
|
163624
164093
|
export type MercuryOrganizationStatusUpdateConnection = {
|
|
163625
164094
|
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
@@ -164503,7 +164972,7 @@ export type MercuryProjectType = {
|
|
|
164503
164972
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
164504
164973
|
};
|
|
164505
164974
|
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164506
|
-
connectedWorkId: Scalars['
|
|
164975
|
+
connectedWorkId: Scalars['ID']['input'];
|
|
164507
164976
|
id: Scalars['ID']['input'];
|
|
164508
164977
|
};
|
|
164509
164978
|
export type MercuryProposeChangesInput = {
|
|
@@ -164867,6 +165336,7 @@ export type MercuryQueryApi = {
|
|
|
164867
165336
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
164868
165337
|
focusAreaActivityHistoryByIds?: Maybe<Array<Maybe<MercuryFocusAreaActivityHistory>>>;
|
|
164869
165338
|
focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
165339
|
+
focusAreaCount?: Maybe<Scalars['Int']['output']>;
|
|
164870
165340
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
164871
165341
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
164872
165342
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
@@ -164886,6 +165356,7 @@ export type MercuryQueryApi = {
|
|
|
164886
165356
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
164887
165357
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
164888
165358
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
165359
|
+
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
164889
165360
|
workspaceContext: MercuryWorkspaceContext;
|
|
164890
165361
|
};
|
|
164891
165362
|
export type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
@@ -164952,6 +165423,10 @@ export type MercuryQueryApiFocusAreaAsksArgs = {
|
|
|
164952
165423
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164953
165424
|
focusAreaId: Scalars['ID']['input'];
|
|
164954
165425
|
};
|
|
165426
|
+
export type MercuryQueryApiFocusAreaCountArgs = {
|
|
165427
|
+
cloudId: Scalars['ID']['input'];
|
|
165428
|
+
q: Scalars['String']['input'];
|
|
165429
|
+
};
|
|
164955
165430
|
export type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
164956
165431
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164957
165432
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -165033,6 +165508,9 @@ export type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
165033
165508
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
165034
165509
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
165035
165510
|
};
|
|
165511
|
+
export type MercuryQueryApiUserNotificationSettingsArgs = {
|
|
165512
|
+
cloudId: Scalars['ID']['input'];
|
|
165513
|
+
};
|
|
165036
165514
|
export type MercuryQueryApiWorkspaceContextArgs = {
|
|
165037
165515
|
cloudId: Scalars['ID']['input'];
|
|
165038
165516
|
};
|
|
@@ -165255,6 +165733,7 @@ export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
|
165255
165733
|
};
|
|
165256
165734
|
export type MercuryRerankFocusAreasInput = {
|
|
165257
165735
|
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165736
|
+
beforeFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165258
165737
|
containerId: Scalars['ID']['input'];
|
|
165259
165738
|
containerType: MercuryRankingContainerType;
|
|
165260
165739
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -165336,6 +165815,7 @@ export type MercuryRiskCommentsArgs = {
|
|
|
165336
165815
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165337
165816
|
cloudId: Scalars['ID']['input'];
|
|
165338
165817
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165818
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
165339
165819
|
};
|
|
165340
165820
|
export type MercuryRiskRiskStatusUpdatesArgs = {
|
|
165341
165821
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166613,7 +167093,7 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
166613
167093
|
};
|
|
166614
167094
|
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166615
167095
|
id: Scalars['ID']['input'];
|
|
166616
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
167096
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
166617
167097
|
};
|
|
166618
167098
|
export type MercuryUpdateAskJustificationInput = {
|
|
166619
167099
|
id: Scalars['ID']['input'];
|
|
@@ -166625,7 +167105,7 @@ export type MercuryUpdateAskNameInput = {
|
|
|
166625
167105
|
};
|
|
166626
167106
|
export type MercuryUpdateAskOwnerInput = {
|
|
166627
167107
|
id: Scalars['ID']['input'];
|
|
166628
|
-
ownerId?: InputMaybe<Scalars['
|
|
167108
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
166629
167109
|
};
|
|
166630
167110
|
export type MercuryUpdateAskPriorityInput = {
|
|
166631
167111
|
id: Scalars['ID']['input'];
|
|
@@ -166633,25 +167113,25 @@ export type MercuryUpdateAskPriorityInput = {
|
|
|
166633
167113
|
};
|
|
166634
167114
|
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166635
167115
|
id: Scalars['ID']['input'];
|
|
166636
|
-
ownerId?: InputMaybe<Scalars['
|
|
166637
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167116
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
167117
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166638
167118
|
};
|
|
166639
167119
|
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166640
167120
|
id: Scalars['ID']['input'];
|
|
166641
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167121
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166642
167122
|
};
|
|
166643
167123
|
export type MercuryUpdateAskSubmitterInput = {
|
|
166644
167124
|
id: Scalars['ID']['input'];
|
|
166645
|
-
submitterId: Scalars['
|
|
167125
|
+
submitterId: Scalars['ID']['input'];
|
|
166646
167126
|
};
|
|
166647
167127
|
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166648
167128
|
id: Scalars['ID']['input'];
|
|
166649
|
-
submitterId: Scalars['
|
|
166650
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167129
|
+
submitterId: Scalars['ID']['input'];
|
|
167130
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166651
167131
|
};
|
|
166652
167132
|
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166653
167133
|
id: Scalars['ID']['input'];
|
|
166654
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167134
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166655
167135
|
};
|
|
166656
167136
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
166657
167137
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166946,6 +167426,7 @@ export type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
166946
167426
|
};
|
|
166947
167427
|
export type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
166948
167428
|
cloudId: Scalars['ID']['input'];
|
|
167429
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
166949
167430
|
id: Scalars['ID']['input'];
|
|
166950
167431
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
166951
167432
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167274,6 +167755,10 @@ export type MercuryUserEdge = {
|
|
|
167274
167755
|
cursor: Scalars['String']['output'];
|
|
167275
167756
|
node?: Maybe<User>;
|
|
167276
167757
|
};
|
|
167758
|
+
export type MercuryUserNotificationSettings = {
|
|
167759
|
+
__typename?: 'MercuryUserNotificationSettings';
|
|
167760
|
+
preferences?: Maybe<Array<MercuryNotificationPreference>>;
|
|
167761
|
+
};
|
|
167277
167762
|
export type MercuryValidateFocusAreasForRankingInput = {
|
|
167278
167763
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
167279
167764
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -168510,6 +168995,7 @@ export type Mutation = {
|
|
|
168510
168995
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168511
168996
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168512
168997
|
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
168998
|
+
globalApp_tmpPersonalAppSignForgeContextTokens?: Maybe<GlobalAppTmpPersonalAppSignForgeContextTokensResponse>;
|
|
168513
168999
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
168514
169000
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
168515
169001
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -168971,8 +169457,10 @@ export type Mutation = {
|
|
|
168971
169457
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
168972
169458
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
168973
169459
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
169460
|
+
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
168974
169461
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
168975
169462
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
169463
|
+
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
168976
169464
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
168977
169465
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
168978
169466
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -169144,6 +169632,7 @@ export type Mutation = {
|
|
|
169144
169632
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
169145
169633
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
169146
169634
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
169635
|
+
projects_removeWatchers?: Maybe<TownsquareProjectsRemoveWatchersPayload>;
|
|
169147
169636
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
169148
169637
|
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
169149
169638
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -169154,6 +169643,9 @@ export type Mutation = {
|
|
|
169154
169643
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
169155
169644
|
projects_updateSlackSubscription?: Maybe<TownsquareProjectsUpdateSlackSubscriptionPayload>;
|
|
169156
169645
|
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
169646
|
+
psm_finishOnboardTenant?: Maybe<PsmFinishOnboardTenantPayload>;
|
|
169647
|
+
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
169648
|
+
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
169157
169649
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
169158
169650
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
169159
169651
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -172184,6 +172676,9 @@ export type MutationGeneratePermsReportArgs = {
|
|
|
172184
172676
|
export type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
172185
172677
|
input: GlobalAppSignForgeContextTokensInput;
|
|
172186
172678
|
};
|
|
172679
|
+
export type MutationGlobalApp_TmpPersonalAppSignForgeContextTokensArgs = {
|
|
172680
|
+
input: GlobalAppTmpPersonalAppSignForgeContextTokensInput;
|
|
172681
|
+
};
|
|
172187
172682
|
export type MutationGoals_AddGoalTeamLinkArgs = {
|
|
172188
172683
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
172189
172684
|
};
|
|
@@ -173629,6 +174124,7 @@ export type MutationKitsune_CreateOrganizationFieldArgs = {
|
|
|
173629
174124
|
};
|
|
173630
174125
|
export type MutationKitsune_CreateSectionArgs = {
|
|
173631
174126
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174127
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173632
174128
|
name: Scalars['String']['input'];
|
|
173633
174129
|
spaceAri: Scalars['ID']['input'];
|
|
173634
174130
|
};
|
|
@@ -173645,6 +174141,7 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
173645
174141
|
export type MutationKitsune_CreateViewArgs = {
|
|
173646
174142
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173647
174143
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174144
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173648
174145
|
entityType?: InputMaybe<KitsuneEntityType>;
|
|
173649
174146
|
name: Scalars['String']['input'];
|
|
173650
174147
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -173661,6 +174158,10 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
173661
174158
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
173662
174159
|
insightAri: Scalars['ID']['input'];
|
|
173663
174160
|
};
|
|
174161
|
+
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
174162
|
+
ideaAri: Scalars['ID']['input'];
|
|
174163
|
+
insightIds: Array<Scalars['ID']['input']>;
|
|
174164
|
+
};
|
|
173664
174165
|
export type MutationKitsune_MoveSectionArgs = {
|
|
173665
174166
|
rank: KitsuneRankInput;
|
|
173666
174167
|
sectionAri: Scalars['ID']['input'];
|
|
@@ -173670,6 +174171,9 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
173670
174171
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
173671
174172
|
viewAri: Scalars['ID']['input'];
|
|
173672
174173
|
};
|
|
174174
|
+
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
174175
|
+
workspaceAri: Scalars['ID']['input'];
|
|
174176
|
+
};
|
|
173673
174177
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
173674
174178
|
ari: Scalars['ID']['input'];
|
|
173675
174179
|
};
|
|
@@ -173775,6 +174279,7 @@ export type MutationKitsune_UpdateOrganizationFieldArgs = {
|
|
|
173775
174279
|
};
|
|
173776
174280
|
export type MutationKitsune_UpdateSectionArgs = {
|
|
173777
174281
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174282
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173778
174283
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173779
174284
|
sectionAri: Scalars['ID']['input'];
|
|
173780
174285
|
};
|
|
@@ -173791,6 +174296,7 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
173791
174296
|
export type MutationKitsune_UpdateViewArgs = {
|
|
173792
174297
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173793
174298
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174299
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173794
174300
|
id: Scalars['ID']['input'];
|
|
173795
174301
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173796
174302
|
};
|
|
@@ -174194,6 +174700,9 @@ export type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
174194
174700
|
export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
174195
174701
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
174196
174702
|
};
|
|
174703
|
+
export type MutationProjects_RemoveWatchersArgs = {
|
|
174704
|
+
input: TownsquareProjectsRemoveWatchersInput;
|
|
174705
|
+
};
|
|
174197
174706
|
export type MutationProjects_RevokeAccessArgs = {
|
|
174198
174707
|
input: TownsquareProjectRevokeAccessInput;
|
|
174199
174708
|
};
|
|
@@ -174221,6 +174730,17 @@ export type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
|
174221
174730
|
export type MutationProjects_UpdateSlackSubscriptionArgs = {
|
|
174222
174731
|
input: TownsquareProjectsUpdateSlackSubscriptionInput;
|
|
174223
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
|
+
};
|
|
174224
174744
|
export type MutationPublicLinkPagesAdminActionArgs = {
|
|
174225
174745
|
action: PublicLinkAdminAction;
|
|
174226
174746
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -177915,6 +178435,9 @@ export type ProactiveAiRovoInsightsStatusResponse = {
|
|
|
177915
178435
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
177916
178436
|
insightsAvailable: Scalars['Boolean']['output'];
|
|
177917
178437
|
};
|
|
178438
|
+
export type ProactiveAiStratusTestInsightsAccountIdOverride = {
|
|
178439
|
+
accountId: Scalars['String']['input'];
|
|
178440
|
+
};
|
|
177918
178441
|
export type ProactiveAiStratusTestInsightsMinion = {
|
|
177919
178442
|
__typename?: 'ProactiveAiStratusTestInsightsMinion';
|
|
177920
178443
|
name: Scalars['String']['output'];
|
|
@@ -178005,6 +178528,88 @@ export type ProvisionDemoSiteResponse = {
|
|
|
178005
178528
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
178006
178529
|
xnId?: Maybe<Scalars['String']['output']>;
|
|
178007
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
|
+
};
|
|
178008
178613
|
export type PublicLink = {
|
|
178009
178614
|
__typename?: 'PublicLink';
|
|
178010
178615
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -178585,6 +179190,7 @@ export type Query = {
|
|
|
178585
179190
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
178586
179191
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
178587
179192
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
179193
|
+
assetsDM_objectsListDataRowsV2?: Maybe<AssetsDmObjectsListDataRows>;
|
|
178588
179194
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
178589
179195
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
178590
179196
|
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
@@ -178593,6 +179199,7 @@ export type Query = {
|
|
|
178593
179199
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
178594
179200
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
178595
179201
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
179202
|
+
assetsDM_savedSearchDetailsV2?: Maybe<AssetsDmSavedSearchDetailsV2>;
|
|
178596
179203
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
178597
179204
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
178598
179205
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
@@ -178623,8 +179230,9 @@ export type Query = {
|
|
|
178623
179230
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
178624
179231
|
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
178625
179232
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
178626
|
-
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<
|
|
178627
|
-
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<
|
|
179233
|
+
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179234
|
+
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179235
|
+
assetsVertical_nonConfiguredItemMappings?: Maybe<AssetsVerticalNonConfiguredItemMappingConnection>;
|
|
178628
179236
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
178629
179237
|
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
178630
179238
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
@@ -179187,6 +179795,9 @@ export type Query = {
|
|
|
179187
179795
|
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
179188
179796
|
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179189
179797
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179798
|
+
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
179799
|
+
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
179800
|
+
globalApp_isProductAdmin?: Maybe<GlobalAppIsProductAdminResponse>;
|
|
179190
179801
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
179191
179802
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
179192
179803
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -181497,10 +182108,12 @@ export type Query = {
|
|
|
181497
182108
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
181498
182109
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
181499
182110
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
182111
|
+
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
181500
182112
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
181501
182113
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
181502
182114
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
181503
182115
|
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
182116
|
+
jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
|
|
181504
182117
|
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
181505
182118
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
181506
182119
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
@@ -181569,6 +182182,7 @@ export type Query = {
|
|
|
181569
182182
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
181570
182183
|
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
181571
182184
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
182185
|
+
loom_currentUserVideos?: Maybe<LoomCurrentUserVideosPayload>;
|
|
181572
182186
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
181573
182187
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
181574
182188
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
@@ -181725,6 +182339,9 @@ export type Query = {
|
|
|
181725
182339
|
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
181726
182340
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
181727
182341
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
182342
|
+
psm_device?: Maybe<PsmDevice>;
|
|
182343
|
+
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
182344
|
+
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
181728
182345
|
ptpage?: Maybe<PtPage>;
|
|
181729
182346
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
181730
182347
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -182504,6 +183121,7 @@ export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
|
182504
183121
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182505
183122
|
cloudId: Scalars['String']['input'];
|
|
182506
183123
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183124
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
182507
183125
|
};
|
|
182508
183126
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
182509
183127
|
cloudId: Scalars['String']['input'];
|
|
@@ -183529,6 +184147,14 @@ export type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
183529
184147
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
183530
184148
|
workspaceId: Scalars['ID']['input'];
|
|
183531
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
|
+
};
|
|
183532
184158
|
export type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
183533
184159
|
cloudId: Scalars['ID']['input'];
|
|
183534
184160
|
name: Scalars['String']['input'];
|
|
@@ -183582,6 +184208,11 @@ export type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
|
183582
184208
|
savedSearchId: Scalars['ID']['input'];
|
|
183583
184209
|
workspaceId: Scalars['ID']['input'];
|
|
183584
184210
|
};
|
|
184211
|
+
export type QueryAssetsDm_SavedSearchDetailsV2Args = {
|
|
184212
|
+
cloudId: Scalars['ID']['input'];
|
|
184213
|
+
savedSearchId: Scalars['ID']['input'];
|
|
184214
|
+
workspaceId: Scalars['ID']['input'];
|
|
184215
|
+
};
|
|
183585
184216
|
export type QueryAssetsDm_SavedSearchesListArgs = {
|
|
183586
184217
|
cloudId: Scalars['ID']['input'];
|
|
183587
184218
|
objectId: Scalars['ID']['input'];
|
|
@@ -183720,13 +184351,24 @@ export type QueryAssetsVertical_ModelObjectsArgs = {
|
|
|
183720
184351
|
input: AssetsVerticalModelObjectsInput;
|
|
183721
184352
|
};
|
|
183722
184353
|
export type QueryAssetsVertical_NonConfiguredAssetTypesTrackingsArgs = {
|
|
184354
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183723
184355
|
cloudId: Scalars['ID']['input'];
|
|
184356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183724
184357
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
183725
184358
|
};
|
|
183726
184359
|
export type QueryAssetsVertical_NonConfiguredDepreciationRuleAssetTypesArgs = {
|
|
184360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183727
184361
|
cloudId: Scalars['ID']['input'];
|
|
184362
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183728
184363
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
183729
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
|
+
};
|
|
183730
184372
|
export type QueryAssetsVertical_ObjectsArgs = {
|
|
183731
184373
|
cloudId: Scalars['ID']['input'];
|
|
183732
184374
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -186241,6 +186883,15 @@ export type QueryGetSummaryArgs = {
|
|
|
186241
186883
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
186242
186884
|
responseType?: InputMaybe<ResponseType>;
|
|
186243
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
|
+
};
|
|
186244
186895
|
export type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
186245
186896
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186246
186897
|
containerId: Scalars['ID']['input'];
|
|
@@ -202691,6 +203342,10 @@ export type QueryJsmTelemetry_DashboardArgs = {
|
|
|
202691
203342
|
incidentId: Scalars['ID']['input'];
|
|
202692
203343
|
input: JsmTelemetryDashboardQueryInput;
|
|
202693
203344
|
};
|
|
203345
|
+
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
203346
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203347
|
+
incidentId: Scalars['ID']['input'];
|
|
203348
|
+
};
|
|
202694
203349
|
export type QueryJsmTelemetry_GetMetricAttributeValuesArgs = {
|
|
202695
203350
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202696
203351
|
incidentId: Scalars['ID']['input'];
|
|
@@ -202712,6 +203367,10 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
|
202712
203367
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202713
203368
|
id: Scalars['ID']['input'];
|
|
202714
203369
|
};
|
|
203370
|
+
export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
203371
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203372
|
+
incidentId: Scalars['ID']['input'];
|
|
203373
|
+
};
|
|
202715
203374
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
202716
203375
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202717
203376
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
@@ -202977,6 +203636,9 @@ export type QueryLoom_CreateSpaceArgs = {
|
|
|
202977
203636
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
202978
203637
|
siteId: Scalars['ID']['input'];
|
|
202979
203638
|
};
|
|
203639
|
+
export type QueryLoom_CurrentUserVideosArgs = {
|
|
203640
|
+
input: LoomCurrentUserVideosInput;
|
|
203641
|
+
};
|
|
202980
203642
|
export type QueryLoom_FoldersSearchArgs = {
|
|
202981
203643
|
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202982
203644
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203378,6 +204040,7 @@ export type QueryProactiveAi_RovoInsightsStatusArgs = {
|
|
|
203378
204040
|
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203379
204041
|
};
|
|
203380
204042
|
export type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
204043
|
+
accountIdOverride?: InputMaybe<ProactiveAiStratusTestInsightsAccountIdOverride>;
|
|
203381
204044
|
cloudId: Scalars['ID']['input'];
|
|
203382
204045
|
variables?: InputMaybe<Array<InputMaybe<ProactiveAiStratusTestInsightsPromptVariable>>>;
|
|
203383
204046
|
};
|
|
@@ -203505,6 +204168,20 @@ export type QueryProjects_StatusSummaryForTagArgs = {
|
|
|
203505
204168
|
export type QueryProjects_UpdatesByIdsArgs = {
|
|
203506
204169
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
203507
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
|
+
};
|
|
203508
204185
|
export type QueryPtpageArgs = {
|
|
203509
204186
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203510
204187
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -205449,10 +206126,10 @@ export type RadarSkill = Node & {
|
|
|
205449
206126
|
description?: Maybe<Scalars['String']['output']>;
|
|
205450
206127
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
205451
206128
|
id: Scalars['ID']['output'];
|
|
205452
|
-
level?: Maybe<Scalars['Int']['output']>;
|
|
205453
206129
|
name: Scalars['String']['output'];
|
|
205454
206130
|
parent?: Maybe<RadarSkill>;
|
|
205455
206131
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
206132
|
+
pathIds: Array<Scalars['ID']['output']>;
|
|
205456
206133
|
updatedAt: Scalars['DateTime']['output'];
|
|
205457
206134
|
};
|
|
205458
206135
|
export type RadarSkillAssignmentInput = {
|
|
@@ -228673,9 +229350,16 @@ export type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
|
228673
229350
|
export type SmartsRecommendedUser = {
|
|
228674
229351
|
__typename?: 'SmartsRecommendedUser';
|
|
228675
229352
|
id: Scalars['ID']['output'];
|
|
229353
|
+
linkedThirdPartyUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
228676
229354
|
score?: Maybe<Scalars['Float']['output']>;
|
|
228677
229355
|
user?: Maybe<User>;
|
|
228678
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
|
+
};
|
|
228679
229363
|
export type SmartsThirdPartyContext = {
|
|
228680
229364
|
__typename?: 'SmartsThirdPartyContext';
|
|
228681
229365
|
ari: Scalars['ID']['output'];
|
|
@@ -232594,10 +233278,10 @@ export type Subscription = {
|
|
|
232594
233278
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
232595
233279
|
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
232596
233280
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
233281
|
+
psm_dummy?: Maybe<Scalars['String']['output']>;
|
|
232597
233282
|
sandbox: SandboxSubscription;
|
|
232598
233283
|
signup: SignupSubscriptionApi;
|
|
232599
233284
|
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
232600
|
-
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
232601
233285
|
testing?: Maybe<TestingSubscription>;
|
|
232602
233286
|
trello: TrelloSubscriptionApi;
|
|
232603
233287
|
};
|
|
@@ -232734,9 +233418,6 @@ export type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
|
232734
233418
|
export type SubscriptionSpf_OnPlanUpdateArgs = {
|
|
232735
233419
|
id: Scalars['ID']['input'];
|
|
232736
233420
|
};
|
|
232737
|
-
export type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
232738
|
-
changeRequestId: Scalars['ID']['input'];
|
|
232739
|
-
};
|
|
232740
233421
|
export declare enum SummaryType {
|
|
232741
233422
|
Blogpost = "BLOGPOST",
|
|
232742
233423
|
Page = "PAGE"
|
|
@@ -238455,6 +239136,17 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
238455
239136
|
success: Scalars['Boolean']['output'];
|
|
238456
239137
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
238457
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
|
+
};
|
|
238458
239150
|
export type TownsquareProjectsSetDefaultAccessLevelInput = {
|
|
238459
239151
|
accessLevel: TownsquareProjectAccessLevel;
|
|
238460
239152
|
containerId: Scalars['ID']['input'];
|
|
@@ -239554,6 +240246,31 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239554
240246
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239555
240247
|
id: Scalars['ID']['output'];
|
|
239556
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
|
+
};
|
|
239557
240274
|
export type TrelloAgenticActivity = {
|
|
239558
240275
|
__typename?: 'TrelloAgenticActivity';
|
|
239559
240276
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241420,6 +242137,7 @@ export type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
241420
242137
|
boardV2?: Maybe<TrelloBaseBoard>;
|
|
241421
242138
|
errors?: Maybe<Array<MutationError>>;
|
|
241422
242139
|
success: Scalars['Boolean']['output'];
|
|
242140
|
+
task?: Maybe<TrelloAgentTask>;
|
|
241423
242141
|
};
|
|
241424
242142
|
export type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
241425
242143
|
__typename?: 'TrelloCreateCardAction';
|
|
@@ -242038,6 +242756,11 @@ export type TrelloEnterprisePrefs = {
|
|
|
242038
242756
|
__typename?: 'TrelloEnterprisePrefs';
|
|
242039
242757
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
242040
242758
|
};
|
|
242759
|
+
export type TrelloExistingLabelSuggestion = {
|
|
242760
|
+
__typename?: 'TrelloExistingLabelSuggestion';
|
|
242761
|
+
label?: Maybe<TrelloLabel>;
|
|
242762
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
242763
|
+
};
|
|
242041
242764
|
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
242042
242765
|
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
242043
242766
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -243158,6 +243881,8 @@ export type TrelloMutationApi = {
|
|
|
243158
243881
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
243159
243882
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
243160
243883
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
243884
|
+
suggestExistingLabelsForCard?: Maybe<TrelloSuggestExistingLabelsForCardPayload>;
|
|
243885
|
+
suggestNewLabelsForCard?: Maybe<TrelloSuggestNewLabelsForCardPayload>;
|
|
243161
243886
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
243162
243887
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
243163
243888
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -243480,6 +244205,12 @@ export type TrelloMutationApiSortListCardsArgs = {
|
|
|
243480
244205
|
export type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
243481
244206
|
input: TrelloCardBatchSpecificationInput;
|
|
243482
244207
|
};
|
|
244208
|
+
export type TrelloMutationApiSuggestExistingLabelsForCardArgs = {
|
|
244209
|
+
input: TrelloSuggestExistingLabelsForCardInput;
|
|
244210
|
+
};
|
|
244211
|
+
export type TrelloMutationApiSuggestNewLabelsForCardArgs = {
|
|
244212
|
+
input: TrelloSuggestNewLabelsForCardInput;
|
|
244213
|
+
};
|
|
243483
244214
|
export type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
243484
244215
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
243485
244216
|
};
|
|
@@ -243633,6 +244364,12 @@ export type TrelloNewCustomFieldOptionInput = {
|
|
|
243633
244364
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
243634
244365
|
value: TrelloCustomFieldOptionValueInput;
|
|
243635
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
|
+
};
|
|
243636
244373
|
export type TrelloNewYearsResolutionAiBoardInput = {
|
|
243637
244374
|
resolution: Scalars['String']['input'];
|
|
243638
244375
|
};
|
|
@@ -245182,6 +245919,24 @@ export type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
|
245182
245919
|
id: Scalars['ID']['input'];
|
|
245183
245920
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245184
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
|
+
};
|
|
245185
245940
|
export declare enum TrelloSupportedPlannerProviders {
|
|
245186
245941
|
Google = "GOOGLE",
|
|
245187
245942
|
Outlook = "OUTLOOK"
|