@forge/cli-shared 9.2.0-next.5-experimental-a1600ff → 9.2.0-next.6-experimental-f51f593
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 +11 -4
- 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/ari/ari.d.ts +3 -2
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +9 -2
- package/out/graphql/graphql-types.d.ts +953 -83
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +150 -59
- 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
|
};
|
|
@@ -7928,6 +7933,38 @@ export type AgentWorkspaceCapacitySummary = {
|
|
|
7928
7933
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7929
7934
|
totalUtilizationPercent: Scalars['Float']['output'];
|
|
7930
7935
|
};
|
|
7936
|
+
export declare enum AgentWorkspaceConfigurableRoutingInput {
|
|
7937
|
+
Availability = "AVAILABILITY",
|
|
7938
|
+
Capacity = "CAPACITY",
|
|
7939
|
+
Schedule = "SCHEDULE",
|
|
7940
|
+
Skills = "SKILLS"
|
|
7941
|
+
}
|
|
7942
|
+
export type AgentWorkspaceConfigurableRoutingInputSetting = {
|
|
7943
|
+
__typename?: 'AgentWorkspaceConfigurableRoutingInputSetting';
|
|
7944
|
+
enabled: Scalars['Boolean']['output'];
|
|
7945
|
+
input: AgentWorkspaceConfigurableRoutingInput;
|
|
7946
|
+
};
|
|
7947
|
+
export type AgentWorkspaceConfigurableRoutingInputUpdate = {
|
|
7948
|
+
enabled: Scalars['Boolean']['input'];
|
|
7949
|
+
input: AgentWorkspaceConfigurableRoutingInput;
|
|
7950
|
+
};
|
|
7951
|
+
export declare enum AgentWorkspaceConfigurableRoutingTrigger {
|
|
7952
|
+
IssueCreated = "ISSUE_CREATED",
|
|
7953
|
+
IssueMoved = "ISSUE_MOVED",
|
|
7954
|
+
IssueReopened = "ISSUE_REOPENED",
|
|
7955
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
7956
|
+
ServiceUpdated = "SERVICE_UPDATED",
|
|
7957
|
+
TeamUpdated = "TEAM_UPDATED"
|
|
7958
|
+
}
|
|
7959
|
+
export type AgentWorkspaceConfigurableRoutingTriggerSetting = {
|
|
7960
|
+
__typename?: 'AgentWorkspaceConfigurableRoutingTriggerSetting';
|
|
7961
|
+
enabled: Scalars['Boolean']['output'];
|
|
7962
|
+
trigger: AgentWorkspaceConfigurableRoutingTrigger;
|
|
7963
|
+
};
|
|
7964
|
+
export type AgentWorkspaceConfigurableRoutingTriggerUpdate = {
|
|
7965
|
+
enabled: Scalars['Boolean']['input'];
|
|
7966
|
+
trigger: AgentWorkspaceConfigurableRoutingTrigger;
|
|
7967
|
+
};
|
|
7931
7968
|
export type AgentWorkspaceConfusionMatrix = {
|
|
7932
7969
|
__typename?: 'AgentWorkspaceConfusionMatrix';
|
|
7933
7970
|
falseNegatives: Scalars['Int']['output'];
|
|
@@ -8896,10 +8933,12 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
8896
8933
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
8897
8934
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
8898
8935
|
enabled: Scalars['Boolean']['output'];
|
|
8936
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
8899
8937
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
8900
8938
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
8901
8939
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8902
8940
|
setupVersion: Scalars['Int']['output'];
|
|
8941
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
8903
8942
|
warning?: Maybe<Scalars['String']['output']>;
|
|
8904
8943
|
};
|
|
8905
8944
|
export type AgentWorkspaceSmartRoutingDryRun = {
|
|
@@ -9207,6 +9246,20 @@ export type AgentWorkspaceUnassignCoverShiftPayload = {
|
|
|
9207
9246
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
9208
9247
|
success: Scalars['Boolean']['output'];
|
|
9209
9248
|
};
|
|
9249
|
+
export type AgentWorkspaceUpdateConfigurableRoutingInputsInput = {
|
|
9250
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputUpdate>;
|
|
9251
|
+
projectAri: Scalars['ID']['input'];
|
|
9252
|
+
};
|
|
9253
|
+
export type AgentWorkspaceUpdateConfigurableRoutingPayload = {
|
|
9254
|
+
__typename?: 'AgentWorkspaceUpdateConfigurableRoutingPayload';
|
|
9255
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9256
|
+
success: Scalars['Boolean']['output'];
|
|
9257
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
9258
|
+
};
|
|
9259
|
+
export type AgentWorkspaceUpdateConfigurableRoutingTriggersInput = {
|
|
9260
|
+
projectAri: Scalars['ID']['input'];
|
|
9261
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerUpdate>;
|
|
9262
|
+
};
|
|
9210
9263
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9211
9264
|
cloudId: Scalars['ID']['input'];
|
|
9212
9265
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -10454,7 +10507,8 @@ export declare enum AppFeatureKey {
|
|
|
10454
10507
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10455
10508
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10456
10509
|
IsPersonalApp = "IS_PERSONAL_APP",
|
|
10457
|
-
SupportsCompute = "SUPPORTS_COMPUTE"
|
|
10510
|
+
SupportsCompute = "SUPPORTS_COMPUTE",
|
|
10511
|
+
SupportsCustomEnvironments = "SUPPORTS_CUSTOM_ENVIRONMENTS"
|
|
10458
10512
|
}
|
|
10459
10513
|
export type AppFeaturesExposedCredentialsInput = {
|
|
10460
10514
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11815,7 +11869,8 @@ export type AssetsBundle = {
|
|
|
11815
11869
|
export type AssetsBundleInstantiation = {
|
|
11816
11870
|
__typename?: 'AssetsBundleInstantiation';
|
|
11817
11871
|
bundle: AssetsBundle;
|
|
11818
|
-
|
|
11872
|
+
dependencyInstantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11873
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11819
11874
|
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11820
11875
|
};
|
|
11821
11876
|
export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
@@ -13833,6 +13888,19 @@ export type AssetsDmObjectsListSearchGroupOutput = {
|
|
|
13833
13888
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13834
13889
|
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
13835
13890
|
};
|
|
13891
|
+
export type AssetsDmObjectsListSearchGroupOutputV2 = {
|
|
13892
|
+
__typename?: 'AssetsDMObjectsListSearchGroupOutputV2';
|
|
13893
|
+
condition?: Maybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
13894
|
+
isGroupDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13895
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
13896
|
+
searchItems?: Maybe<Array<AssetsDmObjectsListSearchItemOutputV2>>;
|
|
13897
|
+
};
|
|
13898
|
+
export type AssetsDmObjectsListSearchGroupV2 = {
|
|
13899
|
+
condition?: InputMaybe<Scalars['String']['input']>;
|
|
13900
|
+
isGroupDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13901
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
13902
|
+
searchItems?: Array<AssetsDmObjectsListSearchItemV2>;
|
|
13903
|
+
};
|
|
13836
13904
|
export type AssetsDmObjectsListSearchItem = {
|
|
13837
13905
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13838
13906
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -13858,6 +13926,48 @@ export type AssetsDmObjectsListSearchItemOutput = {
|
|
|
13858
13926
|
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13859
13927
|
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13860
13928
|
};
|
|
13929
|
+
export type AssetsDmObjectsListSearchItemOutputV2 = {
|
|
13930
|
+
__typename?: 'AssetsDMObjectsListSearchItemOutputV2';
|
|
13931
|
+
attributeImportanceCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13932
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
13933
|
+
condition?: Maybe<AssetsDmObjectsListSearchCondition>;
|
|
13934
|
+
isAttribute?: Maybe<Scalars['Boolean']['output']>;
|
|
13935
|
+
isDataSource?: Maybe<Scalars['Boolean']['output']>;
|
|
13936
|
+
operator?: Maybe<AssetsDmObjectsListSearchOperator>;
|
|
13937
|
+
rawColumnType?: Maybe<AssetsDmObjectsListRawColumnType>;
|
|
13938
|
+
reasonCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13939
|
+
savedSearch?: Maybe<AssetsDmSavedSearchSubtreeV2>;
|
|
13940
|
+
savedSearchId?: Maybe<Scalars['ID']['output']>;
|
|
13941
|
+
searchItemValues?: Maybe<Array<AssetsDmObjectsListSearchItemValueV2>>;
|
|
13942
|
+
tagCodes?: Maybe<Array<Scalars['Float']['output']>>;
|
|
13943
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
13944
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
13945
|
+
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13946
|
+
};
|
|
13947
|
+
export type AssetsDmObjectsListSearchItemV2 = {
|
|
13948
|
+
attributeImportanceCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13949
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13950
|
+
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
13951
|
+
isAttribute?: Scalars['Boolean']['input'];
|
|
13952
|
+
isDataSource?: Scalars['Boolean']['input'];
|
|
13953
|
+
operator?: InputMaybe<AssetsDmObjectsListSearchOperator>;
|
|
13954
|
+
rawColumnType?: InputMaybe<AssetsDmObjectsListRawColumnType>;
|
|
13955
|
+
reasonCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13956
|
+
savedSearch?: InputMaybe<AssetsDmSavedSearchSubtreeInputV2>;
|
|
13957
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
13958
|
+
searchItemValues?: InputMaybe<Array<AssetsDmObjectsListSearchItemValueV2Input>>;
|
|
13959
|
+
tagCodes?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
13960
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
13961
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13962
|
+
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
13963
|
+
};
|
|
13964
|
+
export type AssetsDmObjectsListSearchItemValueV2 = {
|
|
13965
|
+
__typename?: 'AssetsDMObjectsListSearchItemValueV2';
|
|
13966
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
13967
|
+
};
|
|
13968
|
+
export type AssetsDmObjectsListSearchItemValueV2Input = {
|
|
13969
|
+
label: Scalars['String']['input'];
|
|
13970
|
+
};
|
|
13861
13971
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
13862
13972
|
AfterNext = "AFTER_NEXT",
|
|
13863
13973
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -13988,9 +14098,30 @@ export type AssetsDmSavedSearchDetails = {
|
|
|
13988
14098
|
savedSearchId: Scalars['ID']['output'];
|
|
13989
14099
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13990
14100
|
};
|
|
14101
|
+
export type AssetsDmSavedSearchDetailsV2 = {
|
|
14102
|
+
__typename?: 'AssetsDMSavedSearchDetailsV2';
|
|
14103
|
+
calcDate?: Maybe<Scalars['String']['output']>;
|
|
14104
|
+
isExportToAsset?: Maybe<Scalars['Boolean']['output']>;
|
|
14105
|
+
isPublic?: Maybe<Scalars['Boolean']['output']>;
|
|
14106
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14107
|
+
noOfExportToAssetIssues?: Maybe<Scalars['Int']['output']>;
|
|
14108
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
14109
|
+
previousCalcDate?: Maybe<Scalars['String']['output']>;
|
|
14110
|
+
previousResultCount?: Maybe<Scalars['Int']['output']>;
|
|
14111
|
+
resultCount?: Maybe<Scalars['Int']['output']>;
|
|
14112
|
+
savedSearchId: Scalars['ID']['output'];
|
|
14113
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14114
|
+
};
|
|
13991
14115
|
export type AssetsDmSavedSearchInput = {
|
|
13992
14116
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
13993
14117
|
};
|
|
14118
|
+
export type AssetsDmSavedSearchSubtreeInputV2 = {
|
|
14119
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
14120
|
+
};
|
|
14121
|
+
export type AssetsDmSavedSearchSubtreeV2 = {
|
|
14122
|
+
__typename?: 'AssetsDMSavedSearchSubtreeV2';
|
|
14123
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14124
|
+
};
|
|
13994
14125
|
export type AssetsDmSavedSearchesCreateResponse = {
|
|
13995
14126
|
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
13996
14127
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -14460,6 +14591,7 @@ export type AssetsObjectType = Node & {
|
|
|
14460
14591
|
links?: Maybe<AssetsLinks>;
|
|
14461
14592
|
name?: Maybe<Scalars['String']['output']>;
|
|
14462
14593
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
14594
|
+
parentObjectType?: Maybe<AssetsObjectType>;
|
|
14463
14595
|
schema?: Maybe<AssetsSchema>;
|
|
14464
14596
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
14465
14597
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -14789,6 +14921,7 @@ export type AssetsVerticalAssetTypesTrackingConnection = {
|
|
|
14789
14921
|
__typename?: 'AssetsVerticalAssetTypesTrackingConnection';
|
|
14790
14922
|
edges: Array<AssetsVerticalAssetTypesTrackingEdge>;
|
|
14791
14923
|
pageInfo: PageInfo;
|
|
14924
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14792
14925
|
};
|
|
14793
14926
|
export type AssetsVerticalAssetTypesTrackingEdge = {
|
|
14794
14927
|
__typename?: 'AssetsVerticalAssetTypesTrackingEdge';
|
|
@@ -15413,7 +15546,9 @@ export type AssetsVerticalItemMapping = {
|
|
|
15413
15546
|
id: Scalars['ID']['output'];
|
|
15414
15547
|
itemId: Scalars['ID']['output'];
|
|
15415
15548
|
itemType: AssetsVerticalItemType;
|
|
15549
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
15416
15550
|
siteId: Scalars['ID']['output'];
|
|
15551
|
+
space?: Maybe<JiraProject>;
|
|
15417
15552
|
spaceId: Scalars['ID']['output'];
|
|
15418
15553
|
workspaceId: Scalars['ID']['output'];
|
|
15419
15554
|
};
|
|
@@ -15421,6 +15556,7 @@ export type AssetsVerticalItemMappingConnection = {
|
|
|
15421
15556
|
__typename?: 'AssetsVerticalItemMappingConnection';
|
|
15422
15557
|
edges: Array<AssetsVerticalItemMappingEdge>;
|
|
15423
15558
|
pageInfo: PageInfo;
|
|
15559
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15424
15560
|
};
|
|
15425
15561
|
export type AssetsVerticalItemMappingEdge = {
|
|
15426
15562
|
__typename?: 'AssetsVerticalItemMappingEdge';
|
|
@@ -15502,11 +15638,34 @@ export type AssetsVerticalNonConfiguredAssetType = {
|
|
|
15502
15638
|
objSchema?: Maybe<AssetsSchema>;
|
|
15503
15639
|
objType?: Maybe<AssetsObjectType>;
|
|
15504
15640
|
};
|
|
15505
|
-
export type
|
|
15506
|
-
__typename?: '
|
|
15507
|
-
|
|
15641
|
+
export type AssetsVerticalNonConfiguredAssetTypeConnection = {
|
|
15642
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeConnection';
|
|
15643
|
+
edges: Array<AssetsVerticalNonConfiguredAssetTypeEdge>;
|
|
15644
|
+
pageInfo: PageInfo;
|
|
15645
|
+
};
|
|
15646
|
+
export type AssetsVerticalNonConfiguredAssetTypeEdge = {
|
|
15647
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeEdge';
|
|
15648
|
+
cursor: Scalars['String']['output'];
|
|
15649
|
+
node: AssetsVerticalNonConfiguredAssetType;
|
|
15650
|
+
};
|
|
15651
|
+
export type AssetsVerticalNonConfiguredItem = {
|
|
15652
|
+
__typename?: 'AssetsVerticalNonConfiguredItem';
|
|
15653
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15654
|
+
itemId: Scalars['ID']['output'];
|
|
15655
|
+
itemType: AssetsVerticalItemType;
|
|
15656
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15657
|
+
spaceId: Scalars['ID']['output'];
|
|
15658
|
+
};
|
|
15659
|
+
export type AssetsVerticalNonConfiguredItemMappingConnection = {
|
|
15660
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingConnection';
|
|
15661
|
+
edges: Array<AssetsVerticalNonConfiguredItemMappingEdge>;
|
|
15662
|
+
pageInfo: PageInfo;
|
|
15663
|
+
};
|
|
15664
|
+
export type AssetsVerticalNonConfiguredItemMappingEdge = {
|
|
15665
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingEdge';
|
|
15666
|
+
cursor: Scalars['String']['output'];
|
|
15667
|
+
node: AssetsVerticalNonConfiguredItem;
|
|
15508
15668
|
};
|
|
15509
|
-
export type AssetsVerticalNonConfiguredAssetTypesResult = AssetsVerticalNonConfiguredAssetTypesPayload | QueryError;
|
|
15510
15669
|
export type AssetsVerticalObjectType = {
|
|
15511
15670
|
__typename?: 'AssetsVerticalObjectType';
|
|
15512
15671
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15711,6 +15870,10 @@ export type AssetsVerticalSchemaTemplate = {
|
|
|
15711
15870
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
15712
15871
|
type: Scalars['String']['output'];
|
|
15713
15872
|
};
|
|
15873
|
+
export type AssetsVerticalSpaceDetails = {
|
|
15874
|
+
__typename?: 'AssetsVerticalSpaceDetails';
|
|
15875
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15876
|
+
};
|
|
15714
15877
|
export type AssetsVerticalStatusCount = {
|
|
15715
15878
|
__typename?: 'AssetsVerticalStatusCount';
|
|
15716
15879
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -15833,6 +15996,7 @@ export type AssetsVerticalVerticalInstantiationCategory = {
|
|
|
15833
15996
|
cloudId: Scalars['ID']['output'];
|
|
15834
15997
|
id: Scalars['ID']['output'];
|
|
15835
15998
|
items?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
15999
|
+
spaceDetails?: Maybe<AssetsVerticalSpaceDetails>;
|
|
15836
16000
|
status: AssetsVerticalVerticalInstantiationCategoryStatus;
|
|
15837
16001
|
verticalInstantiationId: Scalars['ID']['output'];
|
|
15838
16002
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -17204,7 +17368,7 @@ export type CcpAllowancePoolAllocationsResponse = {
|
|
|
17204
17368
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
17205
17369
|
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
17206
17370
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
17207
|
-
id?: Maybe<Scalars['
|
|
17371
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17208
17372
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
17209
17373
|
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
17210
17374
|
poolId?: Maybe<Scalars['String']['output']>;
|
|
@@ -17525,7 +17689,7 @@ export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
|
17525
17689
|
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
17526
17690
|
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
17527
17691
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
17528
|
-
id?: Maybe<Scalars['
|
|
17692
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17529
17693
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
17530
17694
|
};
|
|
17531
17695
|
export type CcpConcessionBenefit = {
|
|
@@ -17934,6 +18098,9 @@ export type CcpEntitlementExperienceCapabilitiesPlaceOrderLiteArgs = {
|
|
|
17934
18098
|
source: Scalars['String']['input'];
|
|
17935
18099
|
targetOffering: CcpPlaceOrderLiteTargetOfferingInput;
|
|
17936
18100
|
};
|
|
18101
|
+
export type CcpEntitlementExperienceCapabilitiesSetUsageLimitArgs = {
|
|
18102
|
+
action?: InputMaybe<CcpSetUsageLimitAction>;
|
|
18103
|
+
};
|
|
17937
18104
|
export type CcpEntitlementOfferingTransition = {
|
|
17938
18105
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
17939
18106
|
id: Scalars['ID']['output'];
|
|
@@ -18333,7 +18500,7 @@ export type CcpOfferingRelationship = {
|
|
|
18333
18500
|
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
18334
18501
|
description?: Maybe<Scalars['String']['output']>;
|
|
18335
18502
|
from?: Maybe<CcpRelationshipNode>;
|
|
18336
|
-
id?: Maybe<Scalars['
|
|
18503
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18337
18504
|
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
18338
18505
|
relationshipType?: Maybe<CcpRelationshipType>;
|
|
18339
18506
|
status?: Maybe<CcpRelationshipStatus>;
|
|
@@ -18710,7 +18877,7 @@ export type CcpPromotionAndOrRuleCondition = {
|
|
|
18710
18877
|
};
|
|
18711
18878
|
export type CcpPromotionApplicationReason = {
|
|
18712
18879
|
__typename?: 'CcpPromotionApplicationReason';
|
|
18713
|
-
id?: Maybe<Scalars['
|
|
18880
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18714
18881
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18715
18882
|
};
|
|
18716
18883
|
export type CcpPromotionApplicationReasonSetLimiter = {
|
|
@@ -18721,7 +18888,7 @@ export type CcpPromotionApplicationReasonSetLimiter = {
|
|
|
18721
18888
|
export type CcpPromotionApplicationReasonWithCustomisable = {
|
|
18722
18889
|
__typename?: 'CcpPromotionApplicationReasonWithCustomisable';
|
|
18723
18890
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
18724
|
-
id?: Maybe<Scalars['
|
|
18891
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18725
18892
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18726
18893
|
};
|
|
18727
18894
|
export type CcpPromotionBenefit = {
|
|
@@ -19426,6 +19593,10 @@ export type CcpSearchTimestampBoundsInput = {
|
|
|
19426
19593
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
19427
19594
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
19428
19595
|
};
|
|
19596
|
+
export declare enum CcpSetUsageLimitAction {
|
|
19597
|
+
Disable = "DISABLE",
|
|
19598
|
+
Set = "SET"
|
|
19599
|
+
}
|
|
19429
19600
|
export type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
19430
19601
|
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
19431
19602
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19494,7 +19665,7 @@ export declare enum CcpSupportedBillingSystems {
|
|
|
19494
19665
|
}
|
|
19495
19666
|
export type CcpTaxId = {
|
|
19496
19667
|
__typename?: 'CcpTaxId';
|
|
19497
|
-
id?: Maybe<Scalars['
|
|
19668
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19498
19669
|
label?: Maybe<Scalars['String']['output']>;
|
|
19499
19670
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
19500
19671
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -39699,6 +39870,7 @@ export type CreateAppDeploymentInput = {
|
|
|
39699
39870
|
appId: Scalars['ID']['input'];
|
|
39700
39871
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39701
39872
|
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
39873
|
+
combinedArtifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39702
39874
|
environmentKey: Scalars['String']['input'];
|
|
39703
39875
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
39704
39876
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -44047,6 +44219,25 @@ export type DevAiAutodevNextScanScheduleInput = {
|
|
|
44047
44219
|
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
44048
44220
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44049
44221
|
};
|
|
44222
|
+
export type DevAiAutodevNextScanScheduleSlot = {
|
|
44223
|
+
__typename?: 'DevAiAutodevNextScanScheduleSlot';
|
|
44224
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44225
|
+
timeOfDay: Scalars['String']['output'];
|
|
44226
|
+
};
|
|
44227
|
+
export type DevAiAutodevNextScanScheduleSlotInput = {
|
|
44228
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44229
|
+
timeOfDay: Scalars['String']['input'];
|
|
44230
|
+
};
|
|
44231
|
+
export type DevAiAutodevNextScanSchedules = {
|
|
44232
|
+
__typename?: 'DevAiAutodevNextScanSchedules';
|
|
44233
|
+
nextScanAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44234
|
+
slots: Array<DevAiAutodevNextScanScheduleSlot>;
|
|
44235
|
+
timezone: Scalars['String']['output'];
|
|
44236
|
+
};
|
|
44237
|
+
export type DevAiAutodevNextScanSchedulesInput = {
|
|
44238
|
+
slots?: InputMaybe<Array<DevAiAutodevNextScanScheduleSlotInput>>;
|
|
44239
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44240
|
+
};
|
|
44050
44241
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
44051
44242
|
repositoryAris: Array<Scalars['ID']['input']>;
|
|
44052
44243
|
standardId: Scalars['ID']['input'];
|
|
@@ -44251,6 +44442,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
44251
44442
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
44252
44443
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
44253
44444
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44445
|
+
scanScheduleConfiguration?: Maybe<DevAiAutodevNextScanSchedules>;
|
|
44254
44446
|
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
44255
44447
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
44256
44448
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -44271,6 +44463,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
44271
44463
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
44272
44464
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
44273
44465
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44466
|
+
scanScheduleConfiguration?: InputMaybe<DevAiAutodevNextScanSchedulesInput>;
|
|
44274
44467
|
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
44275
44468
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
44276
44469
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -44614,6 +44807,7 @@ export declare enum DevAiFlowSessionsStatus {
|
|
|
44614
44807
|
Pending = "PENDING"
|
|
44615
44808
|
}
|
|
44616
44809
|
export declare enum DevAiFlowUseCaseId {
|
|
44810
|
+
AgenticPlanning = "AGENTIC_PLANNING",
|
|
44617
44811
|
Automation = "AUTOMATION",
|
|
44618
44812
|
CodeStandards = "CODE_STANDARDS",
|
|
44619
44813
|
Jca = "JCA",
|
|
@@ -50063,6 +50257,7 @@ export type ExternalTeam = Node & {
|
|
|
50063
50257
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
50064
50258
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
50065
50259
|
id: Scalars['ID']['output'];
|
|
50260
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
50066
50261
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50067
50262
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
50068
50263
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -50073,6 +50268,7 @@ export type ExternalTeam = Node & {
|
|
|
50073
50268
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50074
50269
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50075
50270
|
url?: Maybe<Scalars['String']['output']>;
|
|
50271
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
50076
50272
|
};
|
|
50077
50273
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
50078
50274
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
@@ -50281,6 +50477,7 @@ export type ExternalVideo = Node & {
|
|
|
50281
50477
|
provider?: Maybe<ExternalProvider>;
|
|
50282
50478
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
50283
50479
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
50480
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50284
50481
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
50285
50482
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50286
50483
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -52084,6 +52281,46 @@ export type GlanceUserInsights = {
|
|
|
52084
52281
|
type?: Maybe<Scalars['String']['output']>;
|
|
52085
52282
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
52086
52283
|
};
|
|
52284
|
+
export type GlobalAppEgress = {
|
|
52285
|
+
__typename?: 'GlobalAppEgress';
|
|
52286
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
52287
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
52288
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
52289
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52290
|
+
};
|
|
52291
|
+
export type GlobalAppExtension = {
|
|
52292
|
+
__typename?: 'GlobalAppExtension';
|
|
52293
|
+
allowsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
52294
|
+
appId: Scalars['String']['output'];
|
|
52295
|
+
appOwner: Scalars['String']['output'];
|
|
52296
|
+
appVersion: Scalars['String']['output'];
|
|
52297
|
+
appVersionId?: Maybe<Scalars['String']['output']>;
|
|
52298
|
+
definitionId: Scalars['String']['output'];
|
|
52299
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52300
|
+
distributionStatus: Scalars['String']['output'];
|
|
52301
|
+
egress: Array<GlobalAppEgress>;
|
|
52302
|
+
environmentId: Scalars['String']['output'];
|
|
52303
|
+
environmentKey: Scalars['String']['output'];
|
|
52304
|
+
environmentType: Scalars['String']['output'];
|
|
52305
|
+
groupKey: Scalars['String']['output'];
|
|
52306
|
+
installationConfig?: Maybe<Array<GlobalAppInstallationConfig>>;
|
|
52307
|
+
installationTarget?: Maybe<Scalars['String']['output']>;
|
|
52308
|
+
isSystemApp?: Maybe<Scalars['Boolean']['output']>;
|
|
52309
|
+
isSystemUserProvisioned?: Maybe<Scalars['Boolean']['output']>;
|
|
52310
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
52311
|
+
licenseIds?: Maybe<Scalars['JSON']['output']>;
|
|
52312
|
+
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']['output']>;
|
|
52313
|
+
migrationKeys?: Maybe<Scalars['JSON']['output']>;
|
|
52314
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
52315
|
+
oauthClientId: Scalars['String']['output'];
|
|
52316
|
+
outboundAuthContainerId?: Maybe<Scalars['String']['output']>;
|
|
52317
|
+
principal: GlobalAppPrincipal;
|
|
52318
|
+
properties: Scalars['JSON']['output'];
|
|
52319
|
+
requiresLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
52320
|
+
scopes: Array<Scalars['String']['output']>;
|
|
52321
|
+
securityPolicies: Array<GlobalAppSecurityPolicy>;
|
|
52322
|
+
versionId: Scalars['String']['output'];
|
|
52323
|
+
};
|
|
52087
52324
|
export type GlobalAppExtensionContextInput = {
|
|
52088
52325
|
appVersion: Scalars['String']['input'];
|
|
52089
52326
|
context: Scalars['JSON']['input'];
|
|
@@ -52091,12 +52328,36 @@ export type GlobalAppExtensionContextInput = {
|
|
|
52091
52328
|
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52092
52329
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52093
52330
|
};
|
|
52331
|
+
export type GlobalAppExtensionsResponse = {
|
|
52332
|
+
__typename?: 'GlobalAppExtensionsResponse';
|
|
52333
|
+
extensions?: Maybe<Array<GlobalAppExtension>>;
|
|
52334
|
+
};
|
|
52094
52335
|
export type GlobalAppForgeContextToken = {
|
|
52095
52336
|
__typename?: 'GlobalAppForgeContextToken';
|
|
52096
52337
|
expiresAt: Scalars['String']['output'];
|
|
52097
52338
|
extensionId: Scalars['ID']['output'];
|
|
52098
52339
|
jwt: Scalars['String']['output'];
|
|
52099
52340
|
};
|
|
52341
|
+
export type GlobalAppInstallationConfig = {
|
|
52342
|
+
__typename?: 'GlobalAppInstallationConfig';
|
|
52343
|
+
key: Scalars['String']['output'];
|
|
52344
|
+
value: Scalars['Boolean']['output'];
|
|
52345
|
+
};
|
|
52346
|
+
export type GlobalAppIsProductAdminResponse = {
|
|
52347
|
+
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52348
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
52349
|
+
};
|
|
52350
|
+
export type GlobalAppPrincipal = {
|
|
52351
|
+
__typename?: 'GlobalAppPrincipal';
|
|
52352
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
52353
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
52354
|
+
mentionName?: Maybe<Scalars['String']['output']>;
|
|
52355
|
+
};
|
|
52356
|
+
export type GlobalAppSecurityPolicy = {
|
|
52357
|
+
__typename?: 'GlobalAppSecurityPolicy';
|
|
52358
|
+
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
52359
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52360
|
+
};
|
|
52100
52361
|
export type GlobalAppSignForgeContextTokensInput = {
|
|
52101
52362
|
contextIds: Array<Scalars['ID']['input']>;
|
|
52102
52363
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
@@ -52108,6 +52369,30 @@ export type GlobalAppSignForgeContextTokensResponse = Payload & {
|
|
|
52108
52369
|
success: Scalars['Boolean']['output'];
|
|
52109
52370
|
tokens: Array<GlobalAppForgeContextToken>;
|
|
52110
52371
|
};
|
|
52372
|
+
export type GlobalAppTmpPersonalAppExtensionContextInput = {
|
|
52373
|
+
appVersion: Scalars['String']['input'];
|
|
52374
|
+
context: Scalars['JSON']['input'];
|
|
52375
|
+
extensionId: Scalars['ID']['input'];
|
|
52376
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52377
|
+
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52378
|
+
};
|
|
52379
|
+
export type GlobalAppTmpPersonalAppForgeContextToken = {
|
|
52380
|
+
__typename?: 'GlobalAppTmpPersonalAppForgeContextToken';
|
|
52381
|
+
expiresAt: Scalars['String']['output'];
|
|
52382
|
+
extensionId: Scalars['ID']['output'];
|
|
52383
|
+
jwt: Scalars['String']['output'];
|
|
52384
|
+
};
|
|
52385
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensInput = {
|
|
52386
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
52387
|
+
extensionContexts: Array<GlobalAppTmpPersonalAppExtensionContextInput>;
|
|
52388
|
+
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52389
|
+
};
|
|
52390
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensResponse = Payload & {
|
|
52391
|
+
__typename?: 'GlobalAppTmpPersonalAppSignForgeContextTokensResponse';
|
|
52392
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52393
|
+
success: Scalars['Boolean']['output'];
|
|
52394
|
+
tokens: Array<GlobalAppTmpPersonalAppForgeContextToken>;
|
|
52395
|
+
};
|
|
52111
52396
|
export type GlobalCardCreateAdditionalFields = {
|
|
52112
52397
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
52113
52398
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -53157,6 +53442,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
53157
53442
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53158
53443
|
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
53159
53444
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
53445
|
+
weightVersion?: InputMaybe<Scalars['String']['input']>;
|
|
53160
53446
|
};
|
|
53161
53447
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
53162
53448
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -53307,6 +53593,7 @@ export type GraphInferenceJiraEntityContextMeta = {
|
|
|
53307
53593
|
servedBy: Scalars['String']['output'];
|
|
53308
53594
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
53309
53595
|
warnings: Array<Scalars['String']['output']>;
|
|
53596
|
+
weightVersion: Scalars['String']['output'];
|
|
53310
53597
|
};
|
|
53311
53598
|
export type GraphInferenceJiraEntityContextProperty = {
|
|
53312
53599
|
__typename?: 'GraphInferenceJiraEntityContextProperty';
|
|
@@ -53410,6 +53697,7 @@ export type GraphIntegrationActionDirectoryItem = {
|
|
|
53410
53697
|
displayName: Scalars['String']['output'];
|
|
53411
53698
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53412
53699
|
id: Scalars['ID']['output'];
|
|
53700
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
53413
53701
|
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
53414
53702
|
name: Scalars['String']['output'];
|
|
53415
53703
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
@@ -53492,6 +53780,7 @@ export type GraphIntegrationDirectoryFilterDimension = {
|
|
|
53492
53780
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53493
53781
|
id: Scalars['ID']['output'];
|
|
53494
53782
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
53783
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
53495
53784
|
};
|
|
53496
53785
|
export type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
53497
53786
|
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
@@ -116127,6 +116416,7 @@ export type GrowthUnifiedProfileTrialHistoryResult = {
|
|
|
116127
116416
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
116128
116417
|
AutoUpgradeStorageLimit = "AUTO_UPGRADE_STORAGE_LIMIT",
|
|
116129
116418
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
116419
|
+
CrossflowReverseTrial = "CROSSFLOW_REVERSE_TRIAL",
|
|
116130
116420
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
116131
116421
|
EditionParity = "EDITION_PARITY",
|
|
116132
116422
|
EditionParityAutoProvisioning = "EDITION_PARITY_AUTO_PROVISIONING",
|
|
@@ -116619,6 +116909,11 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
116619
116909
|
success: Scalars['Boolean']['output'];
|
|
116620
116910
|
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
116621
116911
|
};
|
|
116912
|
+
export type HelpCenterDeleteHubTranslationsInput = {
|
|
116913
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116914
|
+
locale: Scalars['String']['input'];
|
|
116915
|
+
parentId: Scalars['ID']['input'];
|
|
116916
|
+
};
|
|
116622
116917
|
export type HelpCenterDeleteInput = {
|
|
116623
116918
|
helpCenterAri: Scalars['String']['input'];
|
|
116624
116919
|
};
|
|
@@ -116663,6 +116958,16 @@ export type HelpCenterHomePageTitleInput = {
|
|
|
116663
116958
|
default: Scalars['String']['input'];
|
|
116664
116959
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
116665
116960
|
};
|
|
116961
|
+
export type HelpCenterHubLayoutTranslations = {
|
|
116962
|
+
__typename?: 'HelpCenterHubLayoutTranslations';
|
|
116963
|
+
blocks: Array<HelpCenterHubTranslationBlock>;
|
|
116964
|
+
locale: Scalars['String']['output'];
|
|
116965
|
+
};
|
|
116966
|
+
export type HelpCenterHubLayoutTranslationsPayload = Payload & {
|
|
116967
|
+
__typename?: 'HelpCenterHubLayoutTranslationsPayload';
|
|
116968
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116969
|
+
success: Scalars['Boolean']['output'];
|
|
116970
|
+
};
|
|
116666
116971
|
export type HelpCenterHubProductEntityResult = {
|
|
116667
116972
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
116668
116973
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
@@ -116673,9 +116978,35 @@ export type HelpCenterHubProductEntityResult = {
|
|
|
116673
116978
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
116674
116979
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
116675
116980
|
};
|
|
116981
|
+
export type HelpCenterHubTranslationBlock = {
|
|
116982
|
+
__typename?: 'HelpCenterHubTranslationBlock';
|
|
116983
|
+
fields: Array<HelpCenterHubTranslationField>;
|
|
116984
|
+
localId: Scalars['ID']['output'];
|
|
116985
|
+
};
|
|
116986
|
+
export type HelpCenterHubTranslationBlockInput = {
|
|
116987
|
+
extensionType: Scalars['String']['input'];
|
|
116988
|
+
fields: Array<HelpCenterHubTranslationFieldInput>;
|
|
116989
|
+
localId: Scalars['ID']['input'];
|
|
116990
|
+
};
|
|
116991
|
+
export type HelpCenterHubTranslationField = {
|
|
116992
|
+
__typename?: 'HelpCenterHubTranslationField';
|
|
116993
|
+
fieldPath: Scalars['String']['output'];
|
|
116994
|
+
value: Scalars['String']['output'];
|
|
116995
|
+
};
|
|
116996
|
+
export type HelpCenterHubTranslationFieldInput = {
|
|
116997
|
+
fieldPath: Scalars['String']['input'];
|
|
116998
|
+
value: Scalars['String']['input'];
|
|
116999
|
+
};
|
|
117000
|
+
export type HelpCenterHubTranslationsInput = {
|
|
117001
|
+
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
117002
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117003
|
+
locale: Scalars['String']['input'];
|
|
117004
|
+
parentId: Scalars['ID']['input'];
|
|
117005
|
+
};
|
|
116676
117006
|
export type HelpCenterLayoutAdf = {
|
|
116677
117007
|
__typename?: 'HelpCenterLayoutAdf';
|
|
116678
117008
|
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
117009
|
+
translatableBlocksSchema: Array<HelpCenterTranslatableBlock>;
|
|
116679
117010
|
};
|
|
116680
117011
|
export type HelpCenterLayoutAdfContentArgs = {
|
|
116681
117012
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -116726,7 +117057,9 @@ export type HelpCenterMutationApi = {
|
|
|
116726
117057
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
116727
117058
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
116728
117059
|
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
117060
|
+
deleteLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116729
117061
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
117062
|
+
setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116730
117063
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
116731
117064
|
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
116732
117065
|
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
@@ -116752,9 +117085,15 @@ export type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
|
116752
117085
|
export type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
|
|
116753
117086
|
input: HelpCenterPageDeleteInput;
|
|
116754
117087
|
};
|
|
117088
|
+
export type HelpCenterMutationApiDeleteLayoutTranslationsArgs = {
|
|
117089
|
+
input: HelpCenterDeleteHubTranslationsInput;
|
|
117090
|
+
};
|
|
116755
117091
|
export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
116756
117092
|
input: HelpCenterBulkDeleteTopicInput;
|
|
116757
117093
|
};
|
|
117094
|
+
export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
|
|
117095
|
+
input: HelpCenterHubTranslationsInput;
|
|
117096
|
+
};
|
|
116758
117097
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
116759
117098
|
input: HelpCenterUpdateInput;
|
|
116760
117099
|
};
|
|
@@ -116828,6 +117167,7 @@ export type HelpCenterPage = Node & {
|
|
|
116828
117167
|
name?: Maybe<HelpCenterPageName>;
|
|
116829
117168
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
116830
117169
|
pageType?: Maybe<HelpCenterPageType>;
|
|
117170
|
+
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
116831
117171
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
116832
117172
|
};
|
|
116833
117173
|
export type HelpCenterPageCreateInput = {
|
|
@@ -116883,6 +117223,12 @@ export type HelpCenterPageQueryResultEdge = {
|
|
|
116883
117223
|
cursor: Scalars['String']['output'];
|
|
116884
117224
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
116885
117225
|
};
|
|
117226
|
+
export type HelpCenterPageRovoConfig = {
|
|
117227
|
+
__typename?: 'HelpCenterPageRovoConfig';
|
|
117228
|
+
agentId?: Maybe<Scalars['String']['output']>;
|
|
117229
|
+
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
117230
|
+
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117231
|
+
};
|
|
116886
117232
|
export declare enum HelpCenterPageType {
|
|
116887
117233
|
Custom = "CUSTOM",
|
|
116888
117234
|
CustomHome = "CUSTOM_HOME",
|
|
@@ -117085,6 +117431,7 @@ export type HelpCenterQueryApi = {
|
|
|
117085
117431
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
117086
117432
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
117087
117433
|
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
117434
|
+
layoutTranslations: Array<HelpCenterHubLayoutTranslations>;
|
|
117088
117435
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
117089
117436
|
};
|
|
117090
117437
|
export type HelpCenterQueryApiCustomerExperiencesArgs = {
|
|
@@ -117160,6 +117507,10 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
|
117160
117507
|
helpCenterAri: Scalars['ID']['input'];
|
|
117161
117508
|
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
117162
117509
|
};
|
|
117510
|
+
export type HelpCenterQueryApiLayoutTranslationsArgs = {
|
|
117511
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117512
|
+
parentId: Scalars['ID']['input'];
|
|
117513
|
+
};
|
|
117163
117514
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
117164
117515
|
helpCenterAri: Scalars['ID']['input'];
|
|
117165
117516
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -117269,6 +117620,32 @@ export type HelpCenterTopicItemInput = {
|
|
|
117269
117620
|
ari: Scalars['ID']['input'];
|
|
117270
117621
|
};
|
|
117271
117622
|
export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
117623
|
+
export type HelpCenterTranslatableBlock = {
|
|
117624
|
+
__typename?: 'HelpCenterTranslatableBlock';
|
|
117625
|
+
blockType: HelpCenterTranslatableBlockType;
|
|
117626
|
+
extensionType: Scalars['String']['output'];
|
|
117627
|
+
fields: Array<HelpCenterTranslatableField>;
|
|
117628
|
+
};
|
|
117629
|
+
export declare enum HelpCenterTranslatableBlockType {
|
|
117630
|
+
Carousel = "CAROUSEL",
|
|
117631
|
+
JsmHelp = "JSM_HELP",
|
|
117632
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
117633
|
+
LinksMenu = "LINKS_MENU",
|
|
117634
|
+
LinkCards = "LINK_CARDS",
|
|
117635
|
+
PageTopper = "PAGE_TOPPER",
|
|
117636
|
+
Spotlight = "SPOTLIGHT"
|
|
117637
|
+
}
|
|
117638
|
+
export type HelpCenterTranslatableField = {
|
|
117639
|
+
__typename?: 'HelpCenterTranslatableField';
|
|
117640
|
+
arrayKey?: Maybe<Scalars['String']['output']>;
|
|
117641
|
+
idField?: Maybe<Scalars['String']['output']>;
|
|
117642
|
+
kind: HelpCenterTranslatableFieldKind;
|
|
117643
|
+
path: Scalars['String']['output'];
|
|
117644
|
+
};
|
|
117645
|
+
export declare enum HelpCenterTranslatableFieldKind {
|
|
117646
|
+
ArrayItem = "ARRAY_ITEM",
|
|
117647
|
+
Scalar = "SCALAR"
|
|
117648
|
+
}
|
|
117272
117649
|
export type HelpCenterTranslation = {
|
|
117273
117650
|
__typename?: 'HelpCenterTranslation';
|
|
117274
117651
|
locale: Scalars['String']['output'];
|
|
@@ -120168,6 +120545,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
120168
120545
|
Unknown = "UNKNOWN"
|
|
120169
120546
|
}
|
|
120170
120547
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
120548
|
+
AgentReadiness = "AGENT_READINESS",
|
|
120171
120549
|
Planning = "PLANNING"
|
|
120172
120550
|
}
|
|
120173
120551
|
export declare enum JiraAgentSessionState {
|
|
@@ -120317,17 +120695,6 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
120317
120695
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
120318
120696
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
120319
120697
|
};
|
|
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
120698
|
export type JiraAiAgentSession = {
|
|
120332
120699
|
__typename?: 'JiraAiAgentSession';
|
|
120333
120700
|
agent?: Maybe<User>;
|
|
@@ -120352,11 +120719,6 @@ export type JiraAiAgentSessionEnrichmentInput = {
|
|
|
120352
120719
|
conversationId: Scalars['String']['input'];
|
|
120353
120720
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
120354
120721
|
};
|
|
120355
|
-
export type JiraAiAgentSessionStatus = {
|
|
120356
|
-
__typename?: 'JiraAiAgentSessionStatus';
|
|
120357
|
-
conversationId: Scalars['ID']['output'];
|
|
120358
|
-
state: JiraAiAgentConversationState;
|
|
120359
|
-
};
|
|
120360
120722
|
export declare enum JiraAiContextPanel {
|
|
120361
120723
|
None = "NONE",
|
|
120362
120724
|
ResolutionPlan = "RESOLUTION_PLAN",
|
|
@@ -122412,6 +122774,7 @@ export type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
|
122412
122774
|
};
|
|
122413
122775
|
export type JiraBoardViewSprintsArgs = {
|
|
122414
122776
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122777
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
122415
122778
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122416
122779
|
};
|
|
122417
122780
|
export type JiraBoardViewUnmappedStatusesArgs = {
|
|
@@ -128984,11 +129347,9 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128984
129347
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
128985
129348
|
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
128986
129349
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
128987
|
-
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
128988
129350
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
128989
129351
|
archivedBy?: Maybe<User>;
|
|
128990
129352
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
128991
|
-
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
128992
129353
|
assignee?: Maybe<User>;
|
|
128993
129354
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
128994
129355
|
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
@@ -129198,11 +129559,6 @@ export type JiraIssueAllActivitiesArgs = {
|
|
|
129198
129559
|
first: Scalars['Int']['input'];
|
|
129199
129560
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
129200
129561
|
};
|
|
129201
|
-
export type JiraIssueAllAgentSessionsArgs = {
|
|
129202
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
129203
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129204
|
-
sort?: InputMaybe<Scalars['String']['input']>;
|
|
129205
|
-
};
|
|
129206
129562
|
export type JiraIssueApprovalActivitiesArgs = {
|
|
129207
129563
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129208
129564
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130971,6 +131327,7 @@ export type JiraIssueNextActionSuggestions = {
|
|
|
130971
131327
|
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
130972
131328
|
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
130973
131329
|
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
131330
|
+
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
130974
131331
|
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
130975
131332
|
};
|
|
130976
131333
|
export type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
@@ -134105,6 +134462,7 @@ export type JiraMutation = {
|
|
|
134105
134462
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
134106
134463
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
134107
134464
|
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
134465
|
+
jira_updateProjectPolicyAssociatedProjects?: Maybe<JiraUpdateProjectPolicyAssociatedProjectsPayload>;
|
|
134108
134466
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
134109
134467
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
134110
134468
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -134561,6 +134919,9 @@ export type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
134561
134919
|
export type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
134562
134920
|
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
134563
134921
|
};
|
|
134922
|
+
export type JiraMutationJira_UpdateProjectPolicyAssociatedProjectsArgs = {
|
|
134923
|
+
input: JiraUpdateProjectPolicyAssociatedProjectsInput;
|
|
134924
|
+
};
|
|
134564
134925
|
export type JiraMutationJwmAssociateFieldArgs = {
|
|
134565
134926
|
cloudId: Scalars['ID']['input'];
|
|
134566
134927
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -135217,6 +135578,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
135217
135578
|
Reports = "REPORTS",
|
|
135218
135579
|
Requests = "REQUESTS",
|
|
135219
135580
|
Security = "SECURITY",
|
|
135581
|
+
Sessions = "SESSIONS",
|
|
135220
135582
|
Shortcuts = "SHORTCUTS",
|
|
135221
135583
|
Summary = "SUMMARY",
|
|
135222
135584
|
Teams = "TEAMS",
|
|
@@ -135244,7 +135606,8 @@ export declare enum JiraNextActionContentType {
|
|
|
135244
135606
|
export declare enum JiraNextActionGroup {
|
|
135245
135607
|
AiFeatures = "AI_FEATURES",
|
|
135246
135608
|
LoomUpdates = "LOOM_UPDATES",
|
|
135247
|
-
Sdlc = "SDLC"
|
|
135609
|
+
Sdlc = "SDLC",
|
|
135610
|
+
TriageAgent = "TRIAGE_AGENT"
|
|
135248
135611
|
}
|
|
135249
135612
|
export declare enum JiraNextActionInteractionType {
|
|
135250
135613
|
ActionNudge = "ACTION_NUDGE",
|
|
@@ -136177,6 +136540,26 @@ export type JiraPermissionGrantHolder = {
|
|
|
136177
136540
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
136178
136541
|
permission: JiraProjectPermission;
|
|
136179
136542
|
};
|
|
136543
|
+
export type JiraPermissionGrantUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
136544
|
+
__typename?: 'JiraPermissionGrantUsageMetric';
|
|
136545
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
136546
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
136547
|
+
id: Scalars['ID']['output'];
|
|
136548
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
136549
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
136550
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
136551
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
136552
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
136553
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
136554
|
+
};
|
|
136555
|
+
export type JiraPermissionGrantUsageMetricValuesArgs = {
|
|
136556
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136557
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
136558
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136559
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136560
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136561
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136562
|
+
};
|
|
136180
136563
|
export type JiraPermissionGrantValue = {
|
|
136181
136564
|
__typename?: 'JiraPermissionGrantValue';
|
|
136182
136565
|
id: Scalars['ID']['output'];
|
|
@@ -137021,6 +137404,9 @@ export type JiraProjectBoardsArgs = {
|
|
|
137021
137404
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137022
137405
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137023
137406
|
};
|
|
137407
|
+
export type JiraProjectCapabilitiesArgs = {
|
|
137408
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
137409
|
+
};
|
|
137024
137410
|
export type JiraProjectComponentsArgs = {
|
|
137025
137411
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137026
137412
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -137780,6 +138166,7 @@ export type JiraProjectPolicyRuleViolation = {
|
|
|
137780
138166
|
message?: Maybe<Scalars['String']['output']>;
|
|
137781
138167
|
policy?: Maybe<JiraProjectPolicy>;
|
|
137782
138168
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
138169
|
+
ruleTypeId?: Maybe<Scalars['String']['output']>;
|
|
137783
138170
|
};
|
|
137784
138171
|
export type JiraProjectPolicyRuleViolationConnection = HasPageInfo & HasTotal & {
|
|
137785
138172
|
__typename?: 'JiraProjectPolicyRuleViolationConnection';
|
|
@@ -138390,6 +138777,7 @@ export type JiraQuery = {
|
|
|
138390
138777
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
138391
138778
|
resourceUsageMetricsV2?: Maybe<JiraResourceUsageMetricConnectionV2>;
|
|
138392
138779
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
138780
|
+
rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
138393
138781
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
138394
138782
|
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
138395
138783
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -139645,6 +140033,9 @@ export type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
139645
140033
|
category: JiraRecommendationCategory;
|
|
139646
140034
|
cloudId: Scalars['ID']['input'];
|
|
139647
140035
|
};
|
|
140036
|
+
export type JiraQueryRovoEnablementStatusArgs = {
|
|
140037
|
+
cloudId: Scalars['ID']['input'];
|
|
140038
|
+
};
|
|
139648
140039
|
export type JiraQuerySavedFiltersArgs = {
|
|
139649
140040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139650
140041
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -139871,8 +140262,10 @@ export type JiraRecentItemsFilter = {
|
|
|
139871
140262
|
export declare enum JiraRecommendationCategory {
|
|
139872
140263
|
CustomField = "CUSTOM_FIELD",
|
|
139873
140264
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
140265
|
+
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
139874
140266
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
139875
|
-
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
140267
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
140268
|
+
WorkflowScheme = "WORKFLOW_SCHEME"
|
|
139876
140269
|
}
|
|
139877
140270
|
export type JiraRecommendedAction = {
|
|
139878
140271
|
__typename?: 'JiraRecommendedAction';
|
|
@@ -140020,7 +140413,6 @@ export type JiraReleaseHistoryItem = {
|
|
|
140020
140413
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
140021
140414
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
140022
140415
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
140023
|
-
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
140024
140416
|
i18nFieldName?: Maybe<Scalars['String']['output']>;
|
|
140025
140417
|
id: Scalars['ID']['output'];
|
|
140026
140418
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -145261,6 +145653,8 @@ export type JiraTimelineIssueSearchCustomInput = {
|
|
|
145261
145653
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
145262
145654
|
boardId: Scalars['ID']['input'];
|
|
145263
145655
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145656
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145657
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
145264
145658
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145265
145659
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145266
145660
|
};
|
|
@@ -145565,6 +145959,58 @@ export type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
145565
145959
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
145566
145960
|
success: Scalars['Boolean']['output'];
|
|
145567
145961
|
};
|
|
145962
|
+
export type JiraTriageAgentSuggestionConnection = {
|
|
145963
|
+
__typename?: 'JiraTriageAgentSuggestionConnection';
|
|
145964
|
+
edges?: Maybe<Array<Maybe<JiraTriageAgentSuggestionEdge>>>;
|
|
145965
|
+
pageInfo: PageInfo;
|
|
145966
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145967
|
+
};
|
|
145968
|
+
export type JiraTriageAgentSuggestionEdge = {
|
|
145969
|
+
__typename?: 'JiraTriageAgentSuggestionEdge';
|
|
145970
|
+
cursor: Scalars['String']['output'];
|
|
145971
|
+
node?: Maybe<JiraTriageAgentSuggestionItem>;
|
|
145972
|
+
};
|
|
145973
|
+
export type JiraTriageAgentSuggestionItem = {
|
|
145974
|
+
__typename?: 'JiraTriageAgentSuggestionItem';
|
|
145975
|
+
actionKey?: Maybe<Scalars['String']['output']>;
|
|
145976
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
145977
|
+
experienceId?: Maybe<Scalars['String']['output']>;
|
|
145978
|
+
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
145979
|
+
messageId?: Maybe<Scalars['ID']['output']>;
|
|
145980
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
145981
|
+
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
145982
|
+
updates?: Maybe<Array<JiraTriageAgentWorkItemUpdate>>;
|
|
145983
|
+
};
|
|
145984
|
+
export type JiraTriageAgentSuggestions = JiraBaseNextActionsEntity & {
|
|
145985
|
+
__typename?: 'JiraTriageAgentSuggestions';
|
|
145986
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
145987
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
145988
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
145989
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
145990
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
145991
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
145992
|
+
items?: Maybe<JiraTriageAgentSuggestionConnection>;
|
|
145993
|
+
queryError?: Maybe<QueryError>;
|
|
145994
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
145995
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
145996
|
+
};
|
|
145997
|
+
export type JiraTriageAgentSuggestionsItemsArgs = {
|
|
145998
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145999
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
146000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
146001
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
146002
|
+
};
|
|
146003
|
+
export type JiraTriageAgentWorkItemUpdate = {
|
|
146004
|
+
__typename?: 'JiraTriageAgentWorkItemUpdate';
|
|
146005
|
+
fields?: Maybe<Array<JiraTriageAgentWorkItemUpdateField>>;
|
|
146006
|
+
issueIdOrKey?: Maybe<Scalars['String']['output']>;
|
|
146007
|
+
};
|
|
146008
|
+
export type JiraTriageAgentWorkItemUpdateField = {
|
|
146009
|
+
__typename?: 'JiraTriageAgentWorkItemUpdateField';
|
|
146010
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
146011
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
146012
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
146013
|
+
};
|
|
145568
146014
|
export type JiraUiExposedError = {
|
|
145569
146015
|
__typename?: 'JiraUIExposedError';
|
|
145570
146016
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -146131,6 +146577,17 @@ export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
|
146131
146577
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
146132
146578
|
success: Scalars['Boolean']['output'];
|
|
146133
146579
|
};
|
|
146580
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsInput = {
|
|
146581
|
+
addProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146582
|
+
policyId: Scalars['ID']['input'];
|
|
146583
|
+
removeProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146584
|
+
};
|
|
146585
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsPayload = Payload & {
|
|
146586
|
+
__typename?: 'JiraUpdateProjectPolicyAssociatedProjectsPayload';
|
|
146587
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146588
|
+
projectPolicy?: Maybe<JiraProjectPolicy>;
|
|
146589
|
+
success: Scalars['Boolean']['output'];
|
|
146590
|
+
};
|
|
146134
146591
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
146135
146592
|
id: Scalars['ID']['input'];
|
|
146136
146593
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -147937,6 +148394,26 @@ export type JiraWorkTypeUsageMetricValuesArgs = {
|
|
|
147937
148394
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147938
148395
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
147939
148396
|
};
|
|
148397
|
+
export type JiraWorkflowResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
148398
|
+
__typename?: 'JiraWorkflowResourceUsageMetric';
|
|
148399
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
148400
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
148401
|
+
id: Scalars['ID']['output'];
|
|
148402
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
148403
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
148404
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
148405
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
148406
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
148407
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
148408
|
+
};
|
|
148409
|
+
export type JiraWorkflowResourceUsageMetricValuesArgs = {
|
|
148410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148411
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
148412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148413
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148414
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
148415
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148416
|
+
};
|
|
147940
148417
|
export type JiraWorklog = Node & {
|
|
147941
148418
|
__typename?: 'JiraWorklog';
|
|
147942
148419
|
author?: Maybe<User>;
|
|
@@ -150215,6 +150692,26 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
150215
150692
|
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
150216
150693
|
ValidationError = "VALIDATION_ERROR"
|
|
150217
150694
|
}
|
|
150695
|
+
export type JsmTelemetryIncidentContextResponse = {
|
|
150696
|
+
__typename?: 'JsmTelemetryIncidentContextResponse';
|
|
150697
|
+
affectedServices: Array<Scalars['String']['output']>;
|
|
150698
|
+
alertFiredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
150699
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
150700
|
+
incidentId: Scalars['String']['output'];
|
|
150701
|
+
labels: Array<Scalars['String']['output']>;
|
|
150702
|
+
severity?: Maybe<Scalars['String']['output']>;
|
|
150703
|
+
title: Scalars['String']['output'];
|
|
150704
|
+
};
|
|
150705
|
+
export type JsmTelemetryIncidentContextResult = {
|
|
150706
|
+
__typename?: 'JsmTelemetryIncidentContextResult';
|
|
150707
|
+
data?: Maybe<JsmTelemetryIncidentContextResponse>;
|
|
150708
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150709
|
+
};
|
|
150710
|
+
export type JsmTelemetryIncidentTelemetryResult = {
|
|
150711
|
+
__typename?: 'JsmTelemetryIncidentTelemetryResult';
|
|
150712
|
+
data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
|
|
150713
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150714
|
+
};
|
|
150218
150715
|
export type JsmTelemetryMetricAggregation = {
|
|
150219
150716
|
__typename?: 'JsmTelemetryMetricAggregation';
|
|
150220
150717
|
function: JsmTelemetryMetricAggregationFunction;
|
|
@@ -150328,6 +150825,7 @@ export type JsmTelemetryMetricMetadata = {
|
|
|
150328
150825
|
__typename?: 'JsmTelemetryMetricMetadata';
|
|
150329
150826
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
150330
150827
|
metricName: Scalars['String']['output'];
|
|
150828
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
150331
150829
|
type?: Maybe<JsmTelemetryMetricType>;
|
|
150332
150830
|
unit?: Maybe<Scalars['String']['output']>;
|
|
150333
150831
|
};
|
|
@@ -151187,6 +151685,7 @@ export declare enum KitsuneJobType {
|
|
|
151187
151685
|
ImportCustomer = "IMPORT_CUSTOMER",
|
|
151188
151686
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
151189
151687
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
151688
|
+
RefreshInsightCounters = "REFRESH_INSIGHT_COUNTERS",
|
|
151190
151689
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
151191
151690
|
ResyncInsights = "RESYNC_INSIGHTS",
|
|
151192
151691
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
@@ -151283,6 +151782,7 @@ export type KitsuneSection = Node & {
|
|
|
151283
151782
|
__typename?: 'KitsuneSection';
|
|
151284
151783
|
createdAt: Scalars['DateTime']['output'];
|
|
151285
151784
|
description?: Maybe<Scalars['String']['output']>;
|
|
151785
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151286
151786
|
id: Scalars['ID']['output'];
|
|
151287
151787
|
name: Scalars['String']['output'];
|
|
151288
151788
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -151602,6 +152102,7 @@ export type KitsuneView = Node & {
|
|
|
151602
152102
|
__typename?: 'KitsuneView';
|
|
151603
152103
|
config?: Maybe<KitsuneViewConfig>;
|
|
151604
152104
|
description?: Maybe<Scalars['String']['output']>;
|
|
152105
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151605
152106
|
entityType: KitsuneEntityType;
|
|
151606
152107
|
id: Scalars['ID']['output'];
|
|
151607
152108
|
name: Scalars['String']['output'];
|
|
@@ -153688,6 +154189,29 @@ export type LoomCreateVideoReactionPayload = {
|
|
|
153688
154189
|
reaction?: Maybe<LoomVideoReaction>;
|
|
153689
154190
|
success: Scalars['Boolean']['output'];
|
|
153690
154191
|
};
|
|
154192
|
+
export type LoomCurrentUserVideosInput = {
|
|
154193
|
+
createdAtRange?: InputMaybe<LoomDateRangeInput>;
|
|
154194
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
154195
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
154196
|
+
siteId: Scalars['ID']['input'];
|
|
154197
|
+
sortOrder?: InputMaybe<LoomSortDirection>;
|
|
154198
|
+
source?: InputMaybe<LoomCurrentUserVideosSource>;
|
|
154199
|
+
};
|
|
154200
|
+
export type LoomCurrentUserVideosPayload = {
|
|
154201
|
+
__typename?: 'LoomCurrentUserVideosPayload';
|
|
154202
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
154203
|
+
success: Scalars['Boolean']['output'];
|
|
154204
|
+
videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
154205
|
+
};
|
|
154206
|
+
export declare enum LoomCurrentUserVideosSource {
|
|
154207
|
+
All = "ALL",
|
|
154208
|
+
Mine = "MINE",
|
|
154209
|
+
SharedWithMe = "SHARED_WITH_ME"
|
|
154210
|
+
}
|
|
154211
|
+
export type LoomDateRangeInput = {
|
|
154212
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
154213
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
154214
|
+
};
|
|
153691
154215
|
export type LoomDeleteVideo = {
|
|
153692
154216
|
__typename?: 'LoomDeleteVideo';
|
|
153693
154217
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -158912,33 +159436,37 @@ export type MercuryAsk = Node & {
|
|
|
158912
159436
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158913
159437
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158914
159438
|
createdBy?: Maybe<User>;
|
|
158915
|
-
createdByUserId?: Maybe<Scalars['
|
|
159439
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158916
159440
|
description?: Maybe<Scalars['String']['output']>;
|
|
158917
159441
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158918
159442
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158919
159443
|
id: Scalars['ID']['output'];
|
|
158920
159444
|
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158921
|
-
impactedWorkId?: Maybe<Scalars['
|
|
159445
|
+
impactedWorkId?: Maybe<Scalars['ID']['output']>;
|
|
158922
159446
|
justification?: Maybe<Scalars['String']['output']>;
|
|
158923
159447
|
links?: Maybe<MercuryAskLinkConnection>;
|
|
158924
159448
|
name: Scalars['String']['output'];
|
|
158925
159449
|
owner?: Maybe<User>;
|
|
158926
|
-
ownerId?: Maybe<Scalars['
|
|
159450
|
+
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
158927
159451
|
priority: MercuryAskPriority;
|
|
158928
159452
|
proposedBy?: Maybe<User>;
|
|
158929
159453
|
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159454
|
+
receivingOrganization?: Maybe<MercuryOrganization>;
|
|
159455
|
+
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158930
159456
|
receivingTeam?: Maybe<TeamV2>;
|
|
158931
|
-
receivingTeamId?: Maybe<Scalars['
|
|
159457
|
+
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158932
159458
|
status: MercuryAskStatus;
|
|
158933
159459
|
submitter?: Maybe<User>;
|
|
158934
|
-
submitterId: Scalars['
|
|
159460
|
+
submitterId: Scalars['ID']['output'];
|
|
159461
|
+
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
159462
|
+
submittingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158935
159463
|
submittingTeam?: Maybe<TeamV2>;
|
|
158936
|
-
submittingTeamId?: Maybe<Scalars['
|
|
159464
|
+
submittingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158937
159465
|
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158938
159466
|
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158939
159467
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158940
159468
|
updatedBy?: Maybe<User>;
|
|
158941
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159469
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158942
159470
|
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158943
159471
|
url?: Maybe<Scalars['URL']['output']>;
|
|
158944
159472
|
};
|
|
@@ -158951,6 +159479,7 @@ export type MercuryAskCommentsArgs = {
|
|
|
158951
159479
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158952
159480
|
cloudId: Scalars['ID']['input'];
|
|
158953
159481
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159482
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
158954
159483
|
};
|
|
158955
159484
|
export type MercuryAskConnectedWorkArgs = {
|
|
158956
159485
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158978,10 +159507,10 @@ export type MercuryAskUpdatesArgs = {
|
|
|
158978
159507
|
export type MercuryAskActivity = {
|
|
158979
159508
|
__typename?: 'MercuryAskActivity';
|
|
158980
159509
|
askActivityType: MercuryAskActivityType;
|
|
158981
|
-
askId: Scalars['
|
|
159510
|
+
askId: Scalars['ID']['output'];
|
|
158982
159511
|
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158983
159512
|
askUpdatedByUser?: Maybe<User>;
|
|
158984
|
-
askUpdatedByUserId: Scalars['
|
|
159513
|
+
askUpdatedByUserId: Scalars['ID']['output'];
|
|
158985
159514
|
id: Scalars['ID']['output'];
|
|
158986
159515
|
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158987
159516
|
};
|
|
@@ -158995,9 +159524,11 @@ export declare enum MercuryAskActivityAttribute {
|
|
|
158995
159524
|
Owner = "OWNER",
|
|
158996
159525
|
Priority = "PRIORITY",
|
|
158997
159526
|
ProposedDate = "PROPOSED_DATE",
|
|
159527
|
+
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
158998
159528
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
158999
159529
|
Status = "STATUS",
|
|
159000
159530
|
Submitter = "SUBMITTER",
|
|
159531
|
+
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
159001
159532
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
159002
159533
|
TargetDate = "TARGET_DATE"
|
|
159003
159534
|
}
|
|
@@ -159057,6 +159588,14 @@ export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
|
159057
159588
|
newValue?: Maybe<MercuryAskActivityLink>;
|
|
159058
159589
|
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
159059
159590
|
};
|
|
159591
|
+
export type MercuryAskActivityUpdatedOrganization = MercuryAskActivityUpdatedValue & {
|
|
159592
|
+
__typename?: 'MercuryAskActivityUpdatedOrganization';
|
|
159593
|
+
attribute: MercuryAskActivityAttribute;
|
|
159594
|
+
newOrganization?: Maybe<MercuryOrganization>;
|
|
159595
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159596
|
+
oldOrganization?: Maybe<MercuryOrganization>;
|
|
159597
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159598
|
+
};
|
|
159060
159599
|
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
159061
159600
|
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
159062
159601
|
attribute: MercuryAskActivityAttribute;
|
|
@@ -159119,7 +159658,7 @@ export type MercuryAskConnectedWorkEdge = {
|
|
|
159119
159658
|
node?: Maybe<MercuryAskConnectedWork>;
|
|
159120
159659
|
};
|
|
159121
159660
|
export type MercuryAskConnectedWorkInput = {
|
|
159122
|
-
connectedWorkIds: Array<Scalars['
|
|
159661
|
+
connectedWorkIds: Array<Scalars['ID']['input']>;
|
|
159123
159662
|
id: Scalars['ID']['input'];
|
|
159124
159663
|
};
|
|
159125
159664
|
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
@@ -159141,9 +159680,9 @@ export type MercuryAskEdge = {
|
|
|
159141
159680
|
};
|
|
159142
159681
|
export type MercuryAskLink = Node & {
|
|
159143
159682
|
__typename?: 'MercuryAskLink';
|
|
159144
|
-
askId: Scalars['
|
|
159683
|
+
askId: Scalars['ID']['output'];
|
|
159145
159684
|
attachedByUser?: Maybe<User>;
|
|
159146
|
-
attachedByUserId?: Maybe<Scalars['
|
|
159685
|
+
attachedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159147
159686
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159148
159687
|
id: Scalars['ID']['output'];
|
|
159149
159688
|
linkText?: Maybe<Scalars['String']['output']>;
|
|
@@ -159183,7 +159722,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159183
159722
|
__typename?: 'MercuryAskStatusUpdate';
|
|
159184
159723
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159185
159724
|
createdBy?: Maybe<User>;
|
|
159186
|
-
createdByUserId?: Maybe<Scalars['
|
|
159725
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159187
159726
|
description?: Maybe<Scalars['String']['output']>;
|
|
159188
159727
|
id: Scalars['ID']['output'];
|
|
159189
159728
|
newProposedBy?: Maybe<User>;
|
|
@@ -159196,7 +159735,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159196
159735
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159197
159736
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159198
159737
|
updatedBy?: Maybe<User>;
|
|
159199
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159738
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159200
159739
|
};
|
|
159201
159740
|
export type MercuryAskStatusUpdateConnection = {
|
|
159202
159741
|
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
@@ -159238,7 +159777,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
159238
159777
|
}
|
|
159239
159778
|
export type MercuryAskTransition = {
|
|
159240
159779
|
__typename?: 'MercuryAskTransition';
|
|
159241
|
-
askId: Scalars['
|
|
159780
|
+
askId: Scalars['ID']['output'];
|
|
159242
159781
|
status?: Maybe<MercuryAskStatus>;
|
|
159243
159782
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159244
159783
|
};
|
|
@@ -159897,7 +160436,12 @@ export type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
|
159897
160436
|
commentType?: InputMaybe<MercuryCommentType>;
|
|
159898
160437
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159899
160438
|
parentId: Scalars['ID']['input'];
|
|
160439
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
159900
160440
|
};
|
|
160441
|
+
export declare enum MercuryCommentSortOrder {
|
|
160442
|
+
Asc = "ASC",
|
|
160443
|
+
Desc = "DESC"
|
|
160444
|
+
}
|
|
159901
160445
|
export declare enum MercuryCommentType {
|
|
159902
160446
|
Funds = "FUNDS"
|
|
159903
160447
|
}
|
|
@@ -160047,15 +160591,15 @@ export type MercuryCostType = Node & {
|
|
|
160047
160591
|
export type MercuryCreateAskInput = {
|
|
160048
160592
|
cloudId: Scalars['ID']['input'];
|
|
160049
160593
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160050
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160594
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
160051
160595
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160052
160596
|
name: Scalars['String']['input'];
|
|
160053
|
-
ownerId?: InputMaybe<Scalars['
|
|
160597
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
160054
160598
|
priority: MercuryAskPriority;
|
|
160055
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160599
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160056
160600
|
status: MercuryAskStatus;
|
|
160057
|
-
submitterId: Scalars['
|
|
160058
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160601
|
+
submitterId: Scalars['ID']['input'];
|
|
160602
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160059
160603
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160060
160604
|
};
|
|
160061
160605
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
@@ -160067,16 +160611,16 @@ export type MercuryCreateAskStatusUpdateInput = {
|
|
|
160067
160611
|
};
|
|
160068
160612
|
export type MercuryCreateAsksAskInput = {
|
|
160069
160613
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160070
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160614
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
160071
160615
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160072
160616
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
160073
160617
|
name: Scalars['String']['input'];
|
|
160074
|
-
ownerId?: InputMaybe<Scalars['
|
|
160618
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
160075
160619
|
priority: MercuryAskPriority;
|
|
160076
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160620
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160077
160621
|
status: MercuryAskStatus;
|
|
160078
|
-
submitterId: Scalars['
|
|
160079
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160622
|
+
submitterId: Scalars['ID']['input'];
|
|
160623
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
160080
160624
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160081
160625
|
};
|
|
160082
160626
|
export type MercuryCreateAsksAskLinkInput = {
|
|
@@ -160334,6 +160878,7 @@ export type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
160334
160878
|
export type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
160335
160879
|
cloudId: Scalars['ID']['input'];
|
|
160336
160880
|
focusAreaId: Scalars['ID']['input'];
|
|
160881
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
160337
160882
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
160338
160883
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
160339
160884
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161346,6 +161891,7 @@ export type MercuryFocusAreaFundsCommentsArgs = {
|
|
|
161346
161891
|
cloudId: Scalars['ID']['input'];
|
|
161347
161892
|
commentType?: MercuryCommentType;
|
|
161348
161893
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161894
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
161349
161895
|
};
|
|
161350
161896
|
export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
161351
161897
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161543,6 +162089,9 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
161543
162089
|
Red = "RED",
|
|
161544
162090
|
Yellow = "YELLOW"
|
|
161545
162091
|
}
|
|
162092
|
+
export type MercuryFocusAreaHealthInput = {
|
|
162093
|
+
healthId?: InputMaybe<Scalars['ID']['input']>;
|
|
162094
|
+
};
|
|
161546
162095
|
export type MercuryFocusAreaHierarchy = Node & {
|
|
161547
162096
|
__typename?: 'MercuryFocusAreaHierarchy';
|
|
161548
162097
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -163245,6 +163794,28 @@ export type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
|
163245
163794
|
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
163246
163795
|
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
163247
163796
|
};
|
|
163797
|
+
export declare enum MercuryNotificationChannel {
|
|
163798
|
+
ChatApp = "CHAT_APP",
|
|
163799
|
+
Email = "EMAIL",
|
|
163800
|
+
InApp = "IN_APP"
|
|
163801
|
+
}
|
|
163802
|
+
export declare enum MercuryNotificationGroup {
|
|
163803
|
+
Digest = "DIGEST",
|
|
163804
|
+
RealTime = "REAL_TIME"
|
|
163805
|
+
}
|
|
163806
|
+
export type MercuryNotificationPreference = {
|
|
163807
|
+
__typename?: 'MercuryNotificationPreference';
|
|
163808
|
+
channel: MercuryNotificationChannel;
|
|
163809
|
+
enabled: Scalars['Boolean']['output'];
|
|
163810
|
+
group: MercuryNotificationGroup;
|
|
163811
|
+
type: MercuryNotificationType;
|
|
163812
|
+
};
|
|
163813
|
+
export declare enum MercuryNotificationType {
|
|
163814
|
+
MonthlyDigest = "MONTHLY_DIGEST",
|
|
163815
|
+
OwnerUpdated = "OWNER_UPDATED",
|
|
163816
|
+
StatusUpdateCreated = "STATUS_UPDATE_CREATED",
|
|
163817
|
+
WatcherAdded = "WATCHER_ADDED"
|
|
163818
|
+
}
|
|
163248
163819
|
export type MercuryNumberCustomField = MercuryCustomField & {
|
|
163249
163820
|
__typename?: 'MercuryNumberCustomField';
|
|
163250
163821
|
createdBy?: Maybe<User>;
|
|
@@ -163522,10 +164093,15 @@ export type MercuryOrganizationMembership = Node & {
|
|
|
163522
164093
|
id: Scalars['ID']['output'];
|
|
163523
164094
|
organization?: Maybe<MercuryOrganization>;
|
|
163524
164095
|
startDate: Scalars['Date']['output'];
|
|
164096
|
+
teams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
163525
164097
|
updatedBy?: Maybe<User>;
|
|
163526
164098
|
updatedDate: Scalars['DateTime']['output'];
|
|
163527
164099
|
user?: Maybe<User>;
|
|
163528
164100
|
};
|
|
164101
|
+
export type MercuryOrganizationMembershipTeamsArgs = {
|
|
164102
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164103
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164104
|
+
};
|
|
163529
164105
|
export type MercuryOrganizationMembershipConnection = {
|
|
163530
164106
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
163531
164107
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -163620,6 +164196,7 @@ export type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
|
163620
164196
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163621
164197
|
cloudId: Scalars['ID']['input'];
|
|
163622
164198
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164199
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
163623
164200
|
};
|
|
163624
164201
|
export type MercuryOrganizationStatusUpdateConnection = {
|
|
163625
164202
|
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
@@ -164503,7 +165080,7 @@ export type MercuryProjectType = {
|
|
|
164503
165080
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
164504
165081
|
};
|
|
164505
165082
|
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164506
|
-
connectedWorkId: Scalars['
|
|
165083
|
+
connectedWorkId: Scalars['ID']['input'];
|
|
164507
165084
|
id: Scalars['ID']['input'];
|
|
164508
165085
|
};
|
|
164509
165086
|
export type MercuryProposeChangesInput = {
|
|
@@ -164867,6 +165444,7 @@ export type MercuryQueryApi = {
|
|
|
164867
165444
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
164868
165445
|
focusAreaActivityHistoryByIds?: Maybe<Array<Maybe<MercuryFocusAreaActivityHistory>>>;
|
|
164869
165446
|
focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
165447
|
+
focusAreaCount?: Maybe<Scalars['Int']['output']>;
|
|
164870
165448
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
164871
165449
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
164872
165450
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
@@ -164886,6 +165464,7 @@ export type MercuryQueryApi = {
|
|
|
164886
165464
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
164887
165465
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
164888
165466
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
165467
|
+
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
164889
165468
|
workspaceContext: MercuryWorkspaceContext;
|
|
164890
165469
|
};
|
|
164891
165470
|
export type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
@@ -164952,6 +165531,10 @@ export type MercuryQueryApiFocusAreaAsksArgs = {
|
|
|
164952
165531
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164953
165532
|
focusAreaId: Scalars['ID']['input'];
|
|
164954
165533
|
};
|
|
165534
|
+
export type MercuryQueryApiFocusAreaCountArgs = {
|
|
165535
|
+
cloudId: Scalars['ID']['input'];
|
|
165536
|
+
q: Scalars['String']['input'];
|
|
165537
|
+
};
|
|
164955
165538
|
export type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
164956
165539
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164957
165540
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -165033,6 +165616,9 @@ export type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
165033
165616
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
165034
165617
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
165035
165618
|
};
|
|
165619
|
+
export type MercuryQueryApiUserNotificationSettingsArgs = {
|
|
165620
|
+
cloudId: Scalars['ID']['input'];
|
|
165621
|
+
};
|
|
165036
165622
|
export type MercuryQueryApiWorkspaceContextArgs = {
|
|
165037
165623
|
cloudId: Scalars['ID']['input'];
|
|
165038
165624
|
};
|
|
@@ -165243,18 +165829,18 @@ export type MercuryRequestPositionsChangeInput = {
|
|
|
165243
165829
|
export type MercuryRerankFocusAreaAbsoluteInput = {
|
|
165244
165830
|
containerId: Scalars['ID']['input'];
|
|
165245
165831
|
containerType: MercuryRankingContainerType;
|
|
165246
|
-
|
|
165247
|
-
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165832
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
165248
165833
|
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
165249
165834
|
};
|
|
165250
165835
|
export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
165251
165836
|
__typename?: 'MercuryRerankFocusAreaAbsolutePayload';
|
|
165252
165837
|
errors?: Maybe<Array<MutationError>>;
|
|
165253
|
-
|
|
165838
|
+
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
165254
165839
|
success: Scalars['Boolean']['output'];
|
|
165255
165840
|
};
|
|
165256
165841
|
export type MercuryRerankFocusAreasInput = {
|
|
165257
165842
|
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165843
|
+
beforeFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165258
165844
|
containerId: Scalars['ID']['input'];
|
|
165259
165845
|
containerType: MercuryRankingContainerType;
|
|
165260
165846
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -165336,6 +165922,7 @@ export type MercuryRiskCommentsArgs = {
|
|
|
165336
165922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165337
165923
|
cloudId: Scalars['ID']['input'];
|
|
165338
165924
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165925
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
165339
165926
|
};
|
|
165340
165927
|
export type MercuryRiskRiskStatusUpdatesArgs = {
|
|
165341
165928
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166613,7 +167200,7 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
166613
167200
|
};
|
|
166614
167201
|
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166615
167202
|
id: Scalars['ID']['input'];
|
|
166616
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
167203
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
166617
167204
|
};
|
|
166618
167205
|
export type MercuryUpdateAskJustificationInput = {
|
|
166619
167206
|
id: Scalars['ID']['input'];
|
|
@@ -166625,7 +167212,7 @@ export type MercuryUpdateAskNameInput = {
|
|
|
166625
167212
|
};
|
|
166626
167213
|
export type MercuryUpdateAskOwnerInput = {
|
|
166627
167214
|
id: Scalars['ID']['input'];
|
|
166628
|
-
ownerId?: InputMaybe<Scalars['
|
|
167215
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
166629
167216
|
};
|
|
166630
167217
|
export type MercuryUpdateAskPriorityInput = {
|
|
166631
167218
|
id: Scalars['ID']['input'];
|
|
@@ -166633,25 +167220,25 @@ export type MercuryUpdateAskPriorityInput = {
|
|
|
166633
167220
|
};
|
|
166634
167221
|
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166635
167222
|
id: Scalars['ID']['input'];
|
|
166636
|
-
ownerId?: InputMaybe<Scalars['
|
|
166637
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167223
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
167224
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166638
167225
|
};
|
|
166639
167226
|
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166640
167227
|
id: Scalars['ID']['input'];
|
|
166641
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167228
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166642
167229
|
};
|
|
166643
167230
|
export type MercuryUpdateAskSubmitterInput = {
|
|
166644
167231
|
id: Scalars['ID']['input'];
|
|
166645
|
-
submitterId: Scalars['
|
|
167232
|
+
submitterId: Scalars['ID']['input'];
|
|
166646
167233
|
};
|
|
166647
167234
|
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166648
167235
|
id: Scalars['ID']['input'];
|
|
166649
|
-
submitterId: Scalars['
|
|
166650
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167236
|
+
submitterId: Scalars['ID']['input'];
|
|
167237
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166651
167238
|
};
|
|
166652
167239
|
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166653
167240
|
id: Scalars['ID']['input'];
|
|
166654
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167241
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166655
167242
|
};
|
|
166656
167243
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
166657
167244
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166946,6 +167533,7 @@ export type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
166946
167533
|
};
|
|
166947
167534
|
export type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
166948
167535
|
cloudId: Scalars['ID']['input'];
|
|
167536
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
166949
167537
|
id: Scalars['ID']['input'];
|
|
166950
167538
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
166951
167539
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167274,6 +167862,10 @@ export type MercuryUserEdge = {
|
|
|
167274
167862
|
cursor: Scalars['String']['output'];
|
|
167275
167863
|
node?: Maybe<User>;
|
|
167276
167864
|
};
|
|
167865
|
+
export type MercuryUserNotificationSettings = {
|
|
167866
|
+
__typename?: 'MercuryUserNotificationSettings';
|
|
167867
|
+
preferences?: Maybe<Array<MercuryNotificationPreference>>;
|
|
167868
|
+
};
|
|
167277
167869
|
export type MercuryValidateFocusAreasForRankingInput = {
|
|
167278
167870
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
167279
167871
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -167889,6 +168481,8 @@ export type Mutation = {
|
|
|
167889
168481
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
167890
168482
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
167891
168483
|
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
168484
|
+
agentWorkspace_updateConfigurableRoutingInputs?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
168485
|
+
agentWorkspace_updateConfigurableRoutingTriggers?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
167892
168486
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
167893
168487
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
167894
168488
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
@@ -168510,6 +169104,7 @@ export type Mutation = {
|
|
|
168510
169104
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168511
169105
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168512
169106
|
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
169107
|
+
globalApp_tmpPersonalAppSignForgeContextTokens?: Maybe<GlobalAppTmpPersonalAppSignForgeContextTokensResponse>;
|
|
168513
169108
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
168514
169109
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
168515
169110
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -168971,8 +169566,10 @@ export type Mutation = {
|
|
|
168971
169566
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
168972
169567
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
168973
169568
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
169569
|
+
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
168974
169570
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
168975
169571
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
169572
|
+
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
168976
169573
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
168977
169574
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
168978
169575
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -169144,6 +169741,7 @@ export type Mutation = {
|
|
|
169144
169741
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
169145
169742
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
169146
169743
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
169744
|
+
projects_removeWatchers?: Maybe<TownsquareProjectsRemoveWatchersPayload>;
|
|
169147
169745
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
169148
169746
|
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
169149
169747
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -169154,6 +169752,9 @@ export type Mutation = {
|
|
|
169154
169752
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
169155
169753
|
projects_updateSlackSubscription?: Maybe<TownsquareProjectsUpdateSlackSubscriptionPayload>;
|
|
169156
169754
|
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
169755
|
+
psm_finishOnboardTenant?: Maybe<PsmFinishOnboardTenantPayload>;
|
|
169756
|
+
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
169757
|
+
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
169157
169758
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
169158
169759
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
169159
169760
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -169888,6 +170489,12 @@ export type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
|
169888
170489
|
export type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
169889
170490
|
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
169890
170491
|
};
|
|
170492
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingInputsArgs = {
|
|
170493
|
+
input: AgentWorkspaceUpdateConfigurableRoutingInputsInput;
|
|
170494
|
+
};
|
|
170495
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingTriggersArgs = {
|
|
170496
|
+
input: AgentWorkspaceUpdateConfigurableRoutingTriggersInput;
|
|
170497
|
+
};
|
|
169891
170498
|
export type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
169892
170499
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
169893
170500
|
};
|
|
@@ -172184,6 +172791,9 @@ export type MutationGeneratePermsReportArgs = {
|
|
|
172184
172791
|
export type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
172185
172792
|
input: GlobalAppSignForgeContextTokensInput;
|
|
172186
172793
|
};
|
|
172794
|
+
export type MutationGlobalApp_TmpPersonalAppSignForgeContextTokensArgs = {
|
|
172795
|
+
input: GlobalAppTmpPersonalAppSignForgeContextTokensInput;
|
|
172796
|
+
};
|
|
172187
172797
|
export type MutationGoals_AddGoalTeamLinkArgs = {
|
|
172188
172798
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
172189
172799
|
};
|
|
@@ -173629,6 +174239,7 @@ export type MutationKitsune_CreateOrganizationFieldArgs = {
|
|
|
173629
174239
|
};
|
|
173630
174240
|
export type MutationKitsune_CreateSectionArgs = {
|
|
173631
174241
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174242
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173632
174243
|
name: Scalars['String']['input'];
|
|
173633
174244
|
spaceAri: Scalars['ID']['input'];
|
|
173634
174245
|
};
|
|
@@ -173645,6 +174256,7 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
173645
174256
|
export type MutationKitsune_CreateViewArgs = {
|
|
173646
174257
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173647
174258
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174259
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173648
174260
|
entityType?: InputMaybe<KitsuneEntityType>;
|
|
173649
174261
|
name: Scalars['String']['input'];
|
|
173650
174262
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -173661,6 +174273,10 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
173661
174273
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
173662
174274
|
insightAri: Scalars['ID']['input'];
|
|
173663
174275
|
};
|
|
174276
|
+
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
174277
|
+
ideaAri: Scalars['ID']['input'];
|
|
174278
|
+
insightIds: Array<Scalars['ID']['input']>;
|
|
174279
|
+
};
|
|
173664
174280
|
export type MutationKitsune_MoveSectionArgs = {
|
|
173665
174281
|
rank: KitsuneRankInput;
|
|
173666
174282
|
sectionAri: Scalars['ID']['input'];
|
|
@@ -173670,6 +174286,9 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
173670
174286
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
173671
174287
|
viewAri: Scalars['ID']['input'];
|
|
173672
174288
|
};
|
|
174289
|
+
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
174290
|
+
workspaceAri: Scalars['ID']['input'];
|
|
174291
|
+
};
|
|
173673
174292
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
173674
174293
|
ari: Scalars['ID']['input'];
|
|
173675
174294
|
};
|
|
@@ -173775,6 +174394,7 @@ export type MutationKitsune_UpdateOrganizationFieldArgs = {
|
|
|
173775
174394
|
};
|
|
173776
174395
|
export type MutationKitsune_UpdateSectionArgs = {
|
|
173777
174396
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174397
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173778
174398
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173779
174399
|
sectionAri: Scalars['ID']['input'];
|
|
173780
174400
|
};
|
|
@@ -173791,6 +174411,7 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
173791
174411
|
export type MutationKitsune_UpdateViewArgs = {
|
|
173792
174412
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173793
174413
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174414
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173794
174415
|
id: Scalars['ID']['input'];
|
|
173795
174416
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173796
174417
|
};
|
|
@@ -174194,6 +174815,9 @@ export type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
174194
174815
|
export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
174195
174816
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
174196
174817
|
};
|
|
174818
|
+
export type MutationProjects_RemoveWatchersArgs = {
|
|
174819
|
+
input: TownsquareProjectsRemoveWatchersInput;
|
|
174820
|
+
};
|
|
174197
174821
|
export type MutationProjects_RevokeAccessArgs = {
|
|
174198
174822
|
input: TownsquareProjectRevokeAccessInput;
|
|
174199
174823
|
};
|
|
@@ -174221,6 +174845,17 @@ export type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
|
174221
174845
|
export type MutationProjects_UpdateSlackSubscriptionArgs = {
|
|
174222
174846
|
input: TownsquareProjectsUpdateSlackSubscriptionInput;
|
|
174223
174847
|
};
|
|
174848
|
+
export type MutationPsm_FinishOnboardTenantArgs = {
|
|
174849
|
+
cloudId: Scalars['ID']['input'];
|
|
174850
|
+
input: PsmFinishOnboardTenantInput;
|
|
174851
|
+
};
|
|
174852
|
+
export type MutationPsm_OnboardTenantArgs = {
|
|
174853
|
+
cloudId: Scalars['ID']['input'];
|
|
174854
|
+
input: PsmOnboardTenantInput;
|
|
174855
|
+
};
|
|
174856
|
+
export type MutationPsm_RegisterDeviceArgs = {
|
|
174857
|
+
input: PsmRegisterDeviceInput;
|
|
174858
|
+
};
|
|
174224
174859
|
export type MutationPublicLinkPagesAdminActionArgs = {
|
|
174225
174860
|
action: PublicLinkAdminAction;
|
|
174226
174861
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -177915,6 +178550,9 @@ export type ProactiveAiRovoInsightsStatusResponse = {
|
|
|
177915
178550
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
177916
178551
|
insightsAvailable: Scalars['Boolean']['output'];
|
|
177917
178552
|
};
|
|
178553
|
+
export type ProactiveAiStratusTestInsightsAccountIdOverride = {
|
|
178554
|
+
accountId: Scalars['String']['input'];
|
|
178555
|
+
};
|
|
177918
178556
|
export type ProactiveAiStratusTestInsightsMinion = {
|
|
177919
178557
|
__typename?: 'ProactiveAiStratusTestInsightsMinion';
|
|
177920
178558
|
name: Scalars['String']['output'];
|
|
@@ -178005,6 +178643,88 @@ export type ProvisionDemoSiteResponse = {
|
|
|
178005
178643
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
178006
178644
|
xnId?: Maybe<Scalars['String']['output']>;
|
|
178007
178645
|
};
|
|
178646
|
+
export type PsmDevice = {
|
|
178647
|
+
__typename?: 'PsmDevice';
|
|
178648
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
178649
|
+
cloudId: Scalars['ID']['output'];
|
|
178650
|
+
createdAt: Scalars['DateTime']['output'];
|
|
178651
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
178652
|
+
providerSystemId?: Maybe<Scalars['ID']['output']>;
|
|
178653
|
+
serialNumber: Scalars['String']['output'];
|
|
178654
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
178655
|
+
status: PsmDeviceStatus;
|
|
178656
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
178657
|
+
};
|
|
178658
|
+
export type PsmDeviceConnection = {
|
|
178659
|
+
__typename?: 'PsmDeviceConnection';
|
|
178660
|
+
edges?: Maybe<Array<PsmDeviceEdge>>;
|
|
178661
|
+
errors?: Maybe<Array<QueryError>>;
|
|
178662
|
+
nodes?: Maybe<Array<Maybe<PsmDevice>>>;
|
|
178663
|
+
pageInfo: PageInfo;
|
|
178664
|
+
};
|
|
178665
|
+
export type PsmDeviceEdge = {
|
|
178666
|
+
__typename?: 'PsmDeviceEdge';
|
|
178667
|
+
cursor: Scalars['String']['output'];
|
|
178668
|
+
node?: Maybe<PsmDevice>;
|
|
178669
|
+
};
|
|
178670
|
+
export declare enum PsmDeviceStatus {
|
|
178671
|
+
Active = "ACTIVE",
|
|
178672
|
+
Offline = "OFFLINE",
|
|
178673
|
+
Orphan = "ORPHAN",
|
|
178674
|
+
Unmapped = "UNMAPPED"
|
|
178675
|
+
}
|
|
178676
|
+
export type PsmFinishOnboardTenantInput = {
|
|
178677
|
+
spaceId: Scalars['ID']['input'];
|
|
178678
|
+
};
|
|
178679
|
+
export type PsmFinishOnboardTenantPayload = Payload & {
|
|
178680
|
+
__typename?: 'PsmFinishOnboardTenantPayload';
|
|
178681
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178682
|
+
success: Scalars['Boolean']['output'];
|
|
178683
|
+
tenant?: Maybe<PsmTenant>;
|
|
178684
|
+
};
|
|
178685
|
+
export type PsmOnboardTenantInput = {
|
|
178686
|
+
spaceId: Scalars['ID']['input'];
|
|
178687
|
+
};
|
|
178688
|
+
export type PsmOnboardTenantPayload = Payload & {
|
|
178689
|
+
__typename?: 'PsmOnboardTenantPayload';
|
|
178690
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178691
|
+
success: Scalars['Boolean']['output'];
|
|
178692
|
+
tenant?: Maybe<PsmTenant>;
|
|
178693
|
+
};
|
|
178694
|
+
export declare enum PsmOnboardTenantStatus {
|
|
178695
|
+
ConfigurationUploadSuccess = "CONFIGURATION_UPLOAD_SUCCESS",
|
|
178696
|
+
Failed = "FAILED",
|
|
178697
|
+
Initiated = "INITIATED",
|
|
178698
|
+
Onboarded = "ONBOARDED"
|
|
178699
|
+
}
|
|
178700
|
+
export type PsmOnboardTenantStatusInput = {
|
|
178701
|
+
spaceId: Scalars['ID']['input'];
|
|
178702
|
+
};
|
|
178703
|
+
export type PsmOnboardTenantStatusResult = {
|
|
178704
|
+
__typename?: 'PsmOnboardTenantStatusResult';
|
|
178705
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178706
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178707
|
+
spaceId: Scalars['ID']['output'];
|
|
178708
|
+
status: PsmOnboardTenantStatus;
|
|
178709
|
+
};
|
|
178710
|
+
export type PsmRegisterDeviceInput = {
|
|
178711
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
178712
|
+
cloudId: Scalars['ID']['input'];
|
|
178713
|
+
serialNumber: Scalars['String']['input'];
|
|
178714
|
+
};
|
|
178715
|
+
export type PsmRegisterDevicePayload = Payload & {
|
|
178716
|
+
__typename?: 'PsmRegisterDevicePayload';
|
|
178717
|
+
device?: Maybe<PsmDevice>;
|
|
178718
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178719
|
+
success: Scalars['Boolean']['output'];
|
|
178720
|
+
};
|
|
178721
|
+
export type PsmTenant = {
|
|
178722
|
+
__typename?: 'PsmTenant';
|
|
178723
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178724
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178725
|
+
spaceId: Scalars['ID']['output'];
|
|
178726
|
+
status: PsmOnboardTenantStatus;
|
|
178727
|
+
};
|
|
178008
178728
|
export type PublicLink = {
|
|
178009
178729
|
__typename?: 'PublicLink';
|
|
178010
178730
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -178585,6 +179305,7 @@ export type Query = {
|
|
|
178585
179305
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
178586
179306
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
178587
179307
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
179308
|
+
assetsDM_objectsListDataRowsV2?: Maybe<AssetsDmObjectsListDataRows>;
|
|
178588
179309
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
178589
179310
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
178590
179311
|
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
@@ -178593,6 +179314,7 @@ export type Query = {
|
|
|
178593
179314
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
178594
179315
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
178595
179316
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
179317
|
+
assetsDM_savedSearchDetailsV2?: Maybe<AssetsDmSavedSearchDetailsV2>;
|
|
178596
179318
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
178597
179319
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
178598
179320
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
@@ -178623,8 +179345,9 @@ export type Query = {
|
|
|
178623
179345
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
178624
179346
|
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
178625
179347
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
178626
|
-
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<
|
|
178627
|
-
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<
|
|
179348
|
+
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179349
|
+
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179350
|
+
assetsVertical_nonConfiguredItemMappings?: Maybe<AssetsVerticalNonConfiguredItemMappingConnection>;
|
|
178628
179351
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
178629
179352
|
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
178630
179353
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
@@ -179187,6 +179910,9 @@ export type Query = {
|
|
|
179187
179910
|
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
179188
179911
|
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179189
179912
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179913
|
+
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
179914
|
+
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
179915
|
+
globalApp_isProductAdmin?: Maybe<GlobalAppIsProductAdminResponse>;
|
|
179190
179916
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
179191
179917
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
179192
179918
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -181497,10 +182223,12 @@ export type Query = {
|
|
|
181497
182223
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
181498
182224
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
181499
182225
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
182226
|
+
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
181500
182227
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
181501
182228
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
181502
182229
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
181503
182230
|
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
182231
|
+
jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
|
|
181504
182232
|
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
181505
182233
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
181506
182234
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
@@ -181569,6 +182297,7 @@ export type Query = {
|
|
|
181569
182297
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
181570
182298
|
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
181571
182299
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
182300
|
+
loom_currentUserVideos?: Maybe<LoomCurrentUserVideosPayload>;
|
|
181572
182301
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
181573
182302
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
181574
182303
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
@@ -181725,6 +182454,9 @@ export type Query = {
|
|
|
181725
182454
|
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
181726
182455
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
181727
182456
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
182457
|
+
psm_device?: Maybe<PsmDevice>;
|
|
182458
|
+
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
182459
|
+
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
181728
182460
|
ptpage?: Maybe<PtPage>;
|
|
181729
182461
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
181730
182462
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -182504,6 +183236,7 @@ export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
|
182504
183236
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182505
183237
|
cloudId: Scalars['String']['input'];
|
|
182506
183238
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183239
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
182507
183240
|
};
|
|
182508
183241
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
182509
183242
|
cloudId: Scalars['String']['input'];
|
|
@@ -183529,6 +184262,14 @@ export type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
183529
184262
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
183530
184263
|
workspaceId: Scalars['ID']['input'];
|
|
183531
184264
|
};
|
|
184265
|
+
export type QueryAssetsDm_ObjectsListDataRowsV2Args = {
|
|
184266
|
+
cloudId: Scalars['ID']['input'];
|
|
184267
|
+
objectId: Scalars['ID']['input'];
|
|
184268
|
+
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
184269
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
184270
|
+
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
184271
|
+
workspaceId: Scalars['ID']['input'];
|
|
184272
|
+
};
|
|
183532
184273
|
export type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
183533
184274
|
cloudId: Scalars['ID']['input'];
|
|
183534
184275
|
name: Scalars['String']['input'];
|
|
@@ -183582,6 +184323,11 @@ export type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
|
183582
184323
|
savedSearchId: Scalars['ID']['input'];
|
|
183583
184324
|
workspaceId: Scalars['ID']['input'];
|
|
183584
184325
|
};
|
|
184326
|
+
export type QueryAssetsDm_SavedSearchDetailsV2Args = {
|
|
184327
|
+
cloudId: Scalars['ID']['input'];
|
|
184328
|
+
savedSearchId: Scalars['ID']['input'];
|
|
184329
|
+
workspaceId: Scalars['ID']['input'];
|
|
184330
|
+
};
|
|
183585
184331
|
export type QueryAssetsDm_SavedSearchesListArgs = {
|
|
183586
184332
|
cloudId: Scalars['ID']['input'];
|
|
183587
184333
|
objectId: Scalars['ID']['input'];
|
|
@@ -183720,13 +184466,24 @@ export type QueryAssetsVertical_ModelObjectsArgs = {
|
|
|
183720
184466
|
input: AssetsVerticalModelObjectsInput;
|
|
183721
184467
|
};
|
|
183722
184468
|
export type QueryAssetsVertical_NonConfiguredAssetTypesTrackingsArgs = {
|
|
184469
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183723
184470
|
cloudId: Scalars['ID']['input'];
|
|
184471
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183724
184472
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
183725
184473
|
};
|
|
183726
184474
|
export type QueryAssetsVertical_NonConfiguredDepreciationRuleAssetTypesArgs = {
|
|
184475
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183727
184476
|
cloudId: Scalars['ID']['input'];
|
|
184477
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183728
184478
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
183729
184479
|
};
|
|
184480
|
+
export type QueryAssetsVertical_NonConfiguredItemMappingsArgs = {
|
|
184481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
184482
|
+
cloudId: Scalars['ID']['input'];
|
|
184483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
184484
|
+
spaceId: Scalars['ID']['input'];
|
|
184485
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
184486
|
+
};
|
|
183730
184487
|
export type QueryAssetsVertical_ObjectsArgs = {
|
|
183731
184488
|
cloudId: Scalars['ID']['input'];
|
|
183732
184489
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -186241,6 +186998,15 @@ export type QueryGetSummaryArgs = {
|
|
|
186241
186998
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
186242
186999
|
responseType?: InputMaybe<ResponseType>;
|
|
186243
187000
|
};
|
|
187001
|
+
export type QueryGlobalApp_ExtensionsByContextAriArgs = {
|
|
187002
|
+
contextAri: Scalars['ID']['input'];
|
|
187003
|
+
};
|
|
187004
|
+
export type QueryGlobalApp_ExtensionsByInstallationIdArgs = {
|
|
187005
|
+
installationId: Scalars['ID']['input'];
|
|
187006
|
+
};
|
|
187007
|
+
export type QueryGlobalApp_IsProductAdminArgs = {
|
|
187008
|
+
contextAri: Scalars['ID']['input'];
|
|
187009
|
+
};
|
|
186244
187010
|
export type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
186245
187011
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186246
187012
|
containerId: Scalars['ID']['input'];
|
|
@@ -202691,6 +203457,10 @@ export type QueryJsmTelemetry_DashboardArgs = {
|
|
|
202691
203457
|
incidentId: Scalars['ID']['input'];
|
|
202692
203458
|
input: JsmTelemetryDashboardQueryInput;
|
|
202693
203459
|
};
|
|
203460
|
+
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
203461
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203462
|
+
incidentId: Scalars['ID']['input'];
|
|
203463
|
+
};
|
|
202694
203464
|
export type QueryJsmTelemetry_GetMetricAttributeValuesArgs = {
|
|
202695
203465
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202696
203466
|
incidentId: Scalars['ID']['input'];
|
|
@@ -202712,6 +203482,10 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
|
202712
203482
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202713
203483
|
id: Scalars['ID']['input'];
|
|
202714
203484
|
};
|
|
203485
|
+
export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
203486
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203487
|
+
incidentId: Scalars['ID']['input'];
|
|
203488
|
+
};
|
|
202715
203489
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
202716
203490
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202717
203491
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
@@ -202977,6 +203751,9 @@ export type QueryLoom_CreateSpaceArgs = {
|
|
|
202977
203751
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
202978
203752
|
siteId: Scalars['ID']['input'];
|
|
202979
203753
|
};
|
|
203754
|
+
export type QueryLoom_CurrentUserVideosArgs = {
|
|
203755
|
+
input: LoomCurrentUserVideosInput;
|
|
203756
|
+
};
|
|
202980
203757
|
export type QueryLoom_FoldersSearchArgs = {
|
|
202981
203758
|
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202982
203759
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203378,6 +204155,7 @@ export type QueryProactiveAi_RovoInsightsStatusArgs = {
|
|
|
203378
204155
|
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203379
204156
|
};
|
|
203380
204157
|
export type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
204158
|
+
accountIdOverride?: InputMaybe<ProactiveAiStratusTestInsightsAccountIdOverride>;
|
|
203381
204159
|
cloudId: Scalars['ID']['input'];
|
|
203382
204160
|
variables?: InputMaybe<Array<InputMaybe<ProactiveAiStratusTestInsightsPromptVariable>>>;
|
|
203383
204161
|
};
|
|
@@ -203505,6 +204283,20 @@ export type QueryProjects_StatusSummaryForTagArgs = {
|
|
|
203505
204283
|
export type QueryProjects_UpdatesByIdsArgs = {
|
|
203506
204284
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
203507
204285
|
};
|
|
204286
|
+
export type QueryPsm_DeviceArgs = {
|
|
204287
|
+
cloudId: Scalars['ID']['input'];
|
|
204288
|
+
serialNumber: Scalars['String']['input'];
|
|
204289
|
+
};
|
|
204290
|
+
export type QueryPsm_DevicesArgs = {
|
|
204291
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204292
|
+
cloudId: Scalars['ID']['input'];
|
|
204293
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204294
|
+
spaceId: Scalars['ID']['input'];
|
|
204295
|
+
};
|
|
204296
|
+
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
204297
|
+
cloudId: Scalars['ID']['input'];
|
|
204298
|
+
input: PsmOnboardTenantStatusInput;
|
|
204299
|
+
};
|
|
203508
204300
|
export type QueryPtpageArgs = {
|
|
203509
204301
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203510
204302
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -205449,10 +206241,10 @@ export type RadarSkill = Node & {
|
|
|
205449
206241
|
description?: Maybe<Scalars['String']['output']>;
|
|
205450
206242
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
205451
206243
|
id: Scalars['ID']['output'];
|
|
205452
|
-
level?: Maybe<Scalars['Int']['output']>;
|
|
205453
206244
|
name: Scalars['String']['output'];
|
|
205454
206245
|
parent?: Maybe<RadarSkill>;
|
|
205455
206246
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
206247
|
+
pathIds: Array<Scalars['ID']['output']>;
|
|
205456
206248
|
updatedAt: Scalars['DateTime']['output'];
|
|
205457
206249
|
};
|
|
205458
206250
|
export type RadarSkillAssignmentInput = {
|
|
@@ -228673,9 +229465,16 @@ export type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
|
228673
229465
|
export type SmartsRecommendedUser = {
|
|
228674
229466
|
__typename?: 'SmartsRecommendedUser';
|
|
228675
229467
|
id: Scalars['ID']['output'];
|
|
229468
|
+
linkedThirdPartyUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
228676
229469
|
score?: Maybe<Scalars['Float']['output']>;
|
|
228677
229470
|
user?: Maybe<User>;
|
|
228678
229471
|
};
|
|
229472
|
+
export type SmartsRecommendedUserLinkedThirdPartyUsersArgs = {
|
|
229473
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
229474
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
229475
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
229476
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
229477
|
+
};
|
|
228679
229478
|
export type SmartsThirdPartyContext = {
|
|
228680
229479
|
__typename?: 'SmartsThirdPartyContext';
|
|
228681
229480
|
ari: Scalars['ID']['output'];
|
|
@@ -232594,10 +233393,10 @@ export type Subscription = {
|
|
|
232594
233393
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
232595
233394
|
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
232596
233395
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
233396
|
+
psm_dummy?: Maybe<Scalars['String']['output']>;
|
|
232597
233397
|
sandbox: SandboxSubscription;
|
|
232598
233398
|
signup: SignupSubscriptionApi;
|
|
232599
233399
|
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
232600
|
-
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
232601
233400
|
testing?: Maybe<TestingSubscription>;
|
|
232602
233401
|
trello: TrelloSubscriptionApi;
|
|
232603
233402
|
};
|
|
@@ -232734,9 +233533,6 @@ export type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
|
232734
233533
|
export type SubscriptionSpf_OnPlanUpdateArgs = {
|
|
232735
233534
|
id: Scalars['ID']['input'];
|
|
232736
233535
|
};
|
|
232737
|
-
export type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
232738
|
-
changeRequestId: Scalars['ID']['input'];
|
|
232739
|
-
};
|
|
232740
233536
|
export declare enum SummaryType {
|
|
232741
233537
|
Blogpost = "BLOGPOST",
|
|
232742
233538
|
Page = "PAGE"
|
|
@@ -238455,6 +239251,17 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
238455
239251
|
success: Scalars['Boolean']['output'];
|
|
238456
239252
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
238457
239253
|
};
|
|
239254
|
+
export type TownsquareProjectsRemoveWatchersInput = {
|
|
239255
|
+
projectId: Scalars['ID']['input'];
|
|
239256
|
+
watcherIds: Array<Scalars['ID']['input']>;
|
|
239257
|
+
};
|
|
239258
|
+
export type TownsquareProjectsRemoveWatchersPayload = {
|
|
239259
|
+
__typename?: 'TownsquareProjectsRemoveWatchersPayload';
|
|
239260
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239261
|
+
project?: Maybe<TownsquareProject>;
|
|
239262
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
239263
|
+
success: Scalars['Boolean']['output'];
|
|
239264
|
+
};
|
|
238458
239265
|
export type TownsquareProjectsSetDefaultAccessLevelInput = {
|
|
238459
239266
|
accessLevel: TownsquareProjectAccessLevel;
|
|
238460
239267
|
containerId: Scalars['ID']['input'];
|
|
@@ -239554,6 +240361,31 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239554
240361
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239555
240362
|
id: Scalars['ID']['output'];
|
|
239556
240363
|
};
|
|
240364
|
+
export type TrelloAgentTask = {
|
|
240365
|
+
__typename?: 'TrelloAgentTask';
|
|
240366
|
+
id: Scalars['ID']['output'];
|
|
240367
|
+
key: Scalars['String']['output'];
|
|
240368
|
+
objectId: Scalars['ID']['output'];
|
|
240369
|
+
status: TrelloAgentTaskStatus;
|
|
240370
|
+
};
|
|
240371
|
+
export declare enum TrelloAgentTaskState {
|
|
240372
|
+
ApprovalRequired = "APPROVAL_REQUIRED",
|
|
240373
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
240374
|
+
Canceled = "CANCELED",
|
|
240375
|
+
Completed = "COMPLETED",
|
|
240376
|
+
Failed = "FAILED",
|
|
240377
|
+
InputRequired = "INPUT_REQUIRED",
|
|
240378
|
+
Rejected = "REJECTED",
|
|
240379
|
+
Submitted = "SUBMITTED",
|
|
240380
|
+
Unspecified = "UNSPECIFIED",
|
|
240381
|
+
Working = "WORKING"
|
|
240382
|
+
}
|
|
240383
|
+
export type TrelloAgentTaskStatus = {
|
|
240384
|
+
__typename?: 'TrelloAgentTaskStatus';
|
|
240385
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
240386
|
+
state: TrelloAgentTaskState;
|
|
240387
|
+
timestamp: Scalars['DateTime']['output'];
|
|
240388
|
+
};
|
|
239557
240389
|
export type TrelloAgenticActivity = {
|
|
239558
240390
|
__typename?: 'TrelloAgenticActivity';
|
|
239559
240391
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241420,6 +242252,7 @@ export type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
241420
242252
|
boardV2?: Maybe<TrelloBaseBoard>;
|
|
241421
242253
|
errors?: Maybe<Array<MutationError>>;
|
|
241422
242254
|
success: Scalars['Boolean']['output'];
|
|
242255
|
+
task?: Maybe<TrelloAgentTask>;
|
|
241423
242256
|
};
|
|
241424
242257
|
export type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
241425
242258
|
__typename?: 'TrelloCreateCardAction';
|
|
@@ -242038,6 +242871,11 @@ export type TrelloEnterprisePrefs = {
|
|
|
242038
242871
|
__typename?: 'TrelloEnterprisePrefs';
|
|
242039
242872
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
242040
242873
|
};
|
|
242874
|
+
export type TrelloExistingLabelSuggestion = {
|
|
242875
|
+
__typename?: 'TrelloExistingLabelSuggestion';
|
|
242876
|
+
label?: Maybe<TrelloLabel>;
|
|
242877
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
242878
|
+
};
|
|
242041
242879
|
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
242042
242880
|
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
242043
242881
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -243158,6 +243996,8 @@ export type TrelloMutationApi = {
|
|
|
243158
243996
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
243159
243997
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
243160
243998
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
243999
|
+
suggestExistingLabelsForCard?: Maybe<TrelloSuggestExistingLabelsForCardPayload>;
|
|
244000
|
+
suggestNewLabelsForCard?: Maybe<TrelloSuggestNewLabelsForCardPayload>;
|
|
243161
244001
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
243162
244002
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
243163
244003
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -243480,6 +244320,12 @@ export type TrelloMutationApiSortListCardsArgs = {
|
|
|
243480
244320
|
export type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
243481
244321
|
input: TrelloCardBatchSpecificationInput;
|
|
243482
244322
|
};
|
|
244323
|
+
export type TrelloMutationApiSuggestExistingLabelsForCardArgs = {
|
|
244324
|
+
input: TrelloSuggestExistingLabelsForCardInput;
|
|
244325
|
+
};
|
|
244326
|
+
export type TrelloMutationApiSuggestNewLabelsForCardArgs = {
|
|
244327
|
+
input: TrelloSuggestNewLabelsForCardInput;
|
|
244328
|
+
};
|
|
243483
244329
|
export type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
243484
244330
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
243485
244331
|
};
|
|
@@ -243633,6 +244479,12 @@ export type TrelloNewCustomFieldOptionInput = {
|
|
|
243633
244479
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
243634
244480
|
value: TrelloCustomFieldOptionValueInput;
|
|
243635
244481
|
};
|
|
244482
|
+
export type TrelloNewLabelSuggestion = {
|
|
244483
|
+
__typename?: 'TrelloNewLabelSuggestion';
|
|
244484
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
244485
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
244486
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
244487
|
+
};
|
|
243636
244488
|
export type TrelloNewYearsResolutionAiBoardInput = {
|
|
243637
244489
|
resolution: Scalars['String']['input'];
|
|
243638
244490
|
};
|
|
@@ -245182,6 +246034,24 @@ export type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
|
245182
246034
|
id: Scalars['ID']['input'];
|
|
245183
246035
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245184
246036
|
};
|
|
246037
|
+
export type TrelloSuggestExistingLabelsForCardInput = {
|
|
246038
|
+
cardId: Scalars['ID']['input'];
|
|
246039
|
+
};
|
|
246040
|
+
export type TrelloSuggestExistingLabelsForCardPayload = Payload & {
|
|
246041
|
+
__typename?: 'TrelloSuggestExistingLabelsForCardPayload';
|
|
246042
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246043
|
+
success: Scalars['Boolean']['output'];
|
|
246044
|
+
suggestedLabels?: Maybe<Array<TrelloExistingLabelSuggestion>>;
|
|
246045
|
+
};
|
|
246046
|
+
export type TrelloSuggestNewLabelsForCardInput = {
|
|
246047
|
+
cardId: Scalars['ID']['input'];
|
|
246048
|
+
};
|
|
246049
|
+
export type TrelloSuggestNewLabelsForCardPayload = Payload & {
|
|
246050
|
+
__typename?: 'TrelloSuggestNewLabelsForCardPayload';
|
|
246051
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246052
|
+
success: Scalars['Boolean']['output'];
|
|
246053
|
+
suggestedLabels?: Maybe<Array<TrelloNewLabelSuggestion>>;
|
|
246054
|
+
};
|
|
245185
246055
|
export declare enum TrelloSupportedPlannerProviders {
|
|
245186
246056
|
Google = "GOOGLE",
|
|
245187
246057
|
Outlook = "OUTLOOK"
|