@forge/cli-shared 9.2.0-next.3-experimental-bd3d812 → 9.2.0-next.3-experimental-fda9df6
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 +4 -2
- package/out/graphql/graphql-types.d.ts +667 -74
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +104 -59
- package/out/ui/log-color.d.ts +1 -0
- package/out/ui/log-color.d.ts.map +1 -1
- package/out/ui/log-color.js +1 -0
- package/out/ui/single-table-prompt.d.ts.map +1 -1
- package/out/ui/single-table-prompt.js +2 -1
- package/out/ui/text.d.ts +13 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +36 -14
- 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;
|
|
@@ -517,6 +519,7 @@ export type AiOpsIncidentSuggestionInProgress = {
|
|
|
517
519
|
};
|
|
518
520
|
export type AiOpsIncidentSuggestionResponse = {
|
|
519
521
|
__typename?: 'AIOpsIncidentSuggestionResponse';
|
|
522
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
520
523
|
incidentSummaryDescription?: Maybe<Scalars['String']['output']>;
|
|
521
524
|
incidentSummaryTitle?: Maybe<Scalars['String']['output']>;
|
|
522
525
|
probableRCADescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -1763,6 +1766,15 @@ export type AvpAnalyticsVisualizationConfigMetadataInput = {
|
|
|
1763
1766
|
key: Scalars['String']['input'];
|
|
1764
1767
|
value: Scalars['String']['input'];
|
|
1765
1768
|
};
|
|
1769
|
+
export type AvpBusinessHours = {
|
|
1770
|
+
__typename?: 'AVPBusinessHours';
|
|
1771
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
1772
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
1773
|
+
};
|
|
1774
|
+
export type AvpBusinessHoursInput = {
|
|
1775
|
+
end?: InputMaybe<Scalars['String']['input']>;
|
|
1776
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
1777
|
+
};
|
|
1766
1778
|
export declare enum AvpCanvasRowHeight {
|
|
1767
1779
|
Large = "large",
|
|
1768
1780
|
Medium = "medium",
|
|
@@ -2261,6 +2273,7 @@ export type AvpDashboardSettings = {
|
|
|
2261
2273
|
autoRefreshInterval?: Maybe<Scalars['Int']['output']>;
|
|
2262
2274
|
cacheDuration?: Maybe<Scalars['Int']['output']>;
|
|
2263
2275
|
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
2276
|
+
productSettings?: Maybe<AvpProductSettings>;
|
|
2264
2277
|
refreshMethod?: Maybe<AvpRefreshMethod>;
|
|
2265
2278
|
subscriptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2266
2279
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
@@ -2271,6 +2284,7 @@ export type AvpDashboardSettingsInput = {
|
|
|
2271
2284
|
autoApplyVars?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2272
2285
|
autoRefreshInterval?: InputMaybe<Scalars['Int']['input']>;
|
|
2273
2286
|
cacheDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
2287
|
+
productSettings?: InputMaybe<AvpProductSettingsInput>;
|
|
2274
2288
|
refreshMethod?: InputMaybe<AvpRefreshMethod>;
|
|
2275
2289
|
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2276
2290
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2831,6 +2845,22 @@ export declare enum AvpPlatformFilterVisibility {
|
|
|
2831
2845
|
None = "NONE",
|
|
2832
2846
|
ViewAndEdit = "VIEW_AND_EDIT"
|
|
2833
2847
|
}
|
|
2848
|
+
export type AvpProductConfig = {
|
|
2849
|
+
__typename?: 'AVPProductConfig';
|
|
2850
|
+
businessDays?: Maybe<Array<Scalars['String']['output']>>;
|
|
2851
|
+
businessHours?: Maybe<AvpBusinessHours>;
|
|
2852
|
+
};
|
|
2853
|
+
export type AvpProductConfigInput = {
|
|
2854
|
+
businessDays?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2855
|
+
businessHours?: InputMaybe<AvpBusinessHoursInput>;
|
|
2856
|
+
};
|
|
2857
|
+
export type AvpProductSettings = {
|
|
2858
|
+
__typename?: 'AVPProductSettings';
|
|
2859
|
+
opsgenie?: Maybe<AvpProductConfig>;
|
|
2860
|
+
};
|
|
2861
|
+
export type AvpProductSettingsInput = {
|
|
2862
|
+
opsgenie?: InputMaybe<AvpProductConfigInput>;
|
|
2863
|
+
};
|
|
2834
2864
|
export type AvpProductWorkspaceMapEntry = {
|
|
2835
2865
|
product: Scalars['String']['input'];
|
|
2836
2866
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -5128,6 +5158,7 @@ export type AdminSearchGroupInput = {
|
|
|
5128
5158
|
export type AdminSearchUserInput = {
|
|
5129
5159
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5130
5160
|
accountStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5161
|
+
accountType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5131
5162
|
claimStatus?: InputMaybe<Scalars['String']['input']>;
|
|
5132
5163
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5133
5164
|
emailDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -5499,6 +5530,7 @@ export type AdminUsageInfo = {
|
|
|
5499
5530
|
export type AdminUser = {
|
|
5500
5531
|
__typename?: 'AdminUser';
|
|
5501
5532
|
accountStatus: Scalars['String']['output'];
|
|
5533
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
5502
5534
|
addedAt?: Maybe<Scalars['String']['output']>;
|
|
5503
5535
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
5504
5536
|
claimStatus: Scalars['String']['output'];
|
|
@@ -6013,6 +6045,7 @@ export type AgentStudioAgentTemplate = {
|
|
|
6013
6045
|
howItWorks?: Maybe<Array<Maybe<AgentStudioAgentTemplateHowItWorksStep>>>;
|
|
6014
6046
|
id: Scalars['ID']['output'];
|
|
6015
6047
|
name?: Maybe<Scalars['String']['output']>;
|
|
6048
|
+
products?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6016
6049
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6017
6050
|
};
|
|
6018
6051
|
export declare enum AgentStudioAgentTemplateHowItWorksRole {
|
|
@@ -8563,12 +8596,24 @@ export type AgentWorkspaceServiceConnection = {
|
|
|
8563
8596
|
errors?: Maybe<Array<QueryError>>;
|
|
8564
8597
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
|
|
8565
8598
|
pageInfo: PageInfo;
|
|
8599
|
+
totalCount: Scalars['Int']['output'];
|
|
8566
8600
|
};
|
|
8567
8601
|
export type AgentWorkspaceServiceEdge = {
|
|
8568
8602
|
__typename?: 'AgentWorkspaceServiceEdge';
|
|
8569
8603
|
cursor: Scalars['String']['output'];
|
|
8570
8604
|
node: AgentWorkspaceService;
|
|
8571
8605
|
};
|
|
8606
|
+
export type AgentWorkspaceServiceOptionsPage = {
|
|
8607
|
+
__typename?: 'AgentWorkspaceServiceOptionsPage';
|
|
8608
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
8609
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
8610
|
+
limit: Scalars['Int']['output'];
|
|
8611
|
+
offset: Scalars['Int']['output'];
|
|
8612
|
+
page: Scalars['Int']['output'];
|
|
8613
|
+
services: Array<AgentWorkspaceService>;
|
|
8614
|
+
totalCount: Scalars['Int']['output'];
|
|
8615
|
+
totalPages: Scalars['Int']['output'];
|
|
8616
|
+
};
|
|
8572
8617
|
export declare enum AgentWorkspaceServiceProcessingStatus {
|
|
8573
8618
|
Enriched = "ENRICHED",
|
|
8574
8619
|
Enriching = "ENRICHING",
|
|
@@ -8615,6 +8660,12 @@ export type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
|
8615
8660
|
projectId: Scalars['ID']['input'];
|
|
8616
8661
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8617
8662
|
};
|
|
8663
|
+
export type AgentWorkspaceSetShiftReminderConfigInput = {
|
|
8664
|
+
cloudId: Scalars['ID']['input'];
|
|
8665
|
+
enabled: Scalars['Boolean']['input'];
|
|
8666
|
+
projectId: Scalars['ID']['input'];
|
|
8667
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8668
|
+
};
|
|
8618
8669
|
export type AgentWorkspaceSetTeamCapacitiesInput = {
|
|
8619
8670
|
cloudId: Scalars['ID']['input'];
|
|
8620
8671
|
projectKey: Scalars['String']['input'];
|
|
@@ -8666,6 +8717,25 @@ export type AgentWorkspaceShiftEditBoundsInput = {
|
|
|
8666
8717
|
projectARI: Scalars['ID']['input'];
|
|
8667
8718
|
scheduleId: Scalars['ID']['input'];
|
|
8668
8719
|
};
|
|
8720
|
+
export type AgentWorkspaceShiftReminderConfig = {
|
|
8721
|
+
__typename?: 'AgentWorkspaceShiftReminderConfig';
|
|
8722
|
+
enabled: Scalars['Boolean']['output'];
|
|
8723
|
+
projectId: Scalars['ID']['output'];
|
|
8724
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8725
|
+
updatedBy?: Maybe<Scalars['ID']['output']>;
|
|
8726
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8727
|
+
};
|
|
8728
|
+
export type AgentWorkspaceShiftReminderConfigPayload = {
|
|
8729
|
+
__typename?: 'AgentWorkspaceShiftReminderConfigPayload';
|
|
8730
|
+
errors: Array<AgentWorkspaceMutationError>;
|
|
8731
|
+
shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
8732
|
+
success: Scalars['Boolean']['output'];
|
|
8733
|
+
};
|
|
8734
|
+
export declare enum AgentWorkspaceShiftReminderWindow {
|
|
8735
|
+
Minutes_15 = "MINUTES_15",
|
|
8736
|
+
Minutes_30 = "MINUTES_30",
|
|
8737
|
+
Minutes_60 = "MINUTES_60"
|
|
8738
|
+
}
|
|
8669
8739
|
export type AgentWorkspaceShiftsAppliedFilters = {
|
|
8670
8740
|
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
8671
8741
|
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -13766,6 +13836,19 @@ export type AssetsDmObjectsListSearchGroupOutput = {
|
|
|
13766
13836
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13767
13837
|
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
13768
13838
|
};
|
|
13839
|
+
export type AssetsDmObjectsListSearchGroupOutputV2 = {
|
|
13840
|
+
__typename?: 'AssetsDMObjectsListSearchGroupOutputV2';
|
|
13841
|
+
condition?: Maybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
13842
|
+
isGroupDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13843
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
13844
|
+
searchItems?: Maybe<Array<AssetsDmObjectsListSearchItemOutputV2>>;
|
|
13845
|
+
};
|
|
13846
|
+
export type AssetsDmObjectsListSearchGroupV2 = {
|
|
13847
|
+
condition?: InputMaybe<Scalars['String']['input']>;
|
|
13848
|
+
isGroupDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13849
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
13850
|
+
searchItems?: Array<AssetsDmObjectsListSearchItemV2>;
|
|
13851
|
+
};
|
|
13769
13852
|
export type AssetsDmObjectsListSearchItem = {
|
|
13770
13853
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13771
13854
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -13791,6 +13874,48 @@ export type AssetsDmObjectsListSearchItemOutput = {
|
|
|
13791
13874
|
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13792
13875
|
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13793
13876
|
};
|
|
13877
|
+
export type AssetsDmObjectsListSearchItemOutputV2 = {
|
|
13878
|
+
__typename?: 'AssetsDMObjectsListSearchItemOutputV2';
|
|
13879
|
+
attributeImportanceCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13880
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
13881
|
+
condition?: Maybe<AssetsDmObjectsListSearchCondition>;
|
|
13882
|
+
isAttribute?: Maybe<Scalars['Boolean']['output']>;
|
|
13883
|
+
isDataSource?: Maybe<Scalars['Boolean']['output']>;
|
|
13884
|
+
operator?: Maybe<AssetsDmObjectsListSearchOperator>;
|
|
13885
|
+
rawColumnType?: Maybe<AssetsDmObjectsListRawColumnType>;
|
|
13886
|
+
reasonCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13887
|
+
savedSearch?: Maybe<AssetsDmSavedSearchSubtreeV2>;
|
|
13888
|
+
savedSearchId?: Maybe<Scalars['ID']['output']>;
|
|
13889
|
+
searchItemValues?: Maybe<Array<AssetsDmObjectsListSearchItemValueV2>>;
|
|
13890
|
+
tagCodes?: Maybe<Array<Scalars['Float']['output']>>;
|
|
13891
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
13892
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
13893
|
+
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13894
|
+
};
|
|
13895
|
+
export type AssetsDmObjectsListSearchItemV2 = {
|
|
13896
|
+
attributeImportanceCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13897
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13898
|
+
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
13899
|
+
isAttribute?: Scalars['Boolean']['input'];
|
|
13900
|
+
isDataSource?: Scalars['Boolean']['input'];
|
|
13901
|
+
operator?: InputMaybe<AssetsDmObjectsListSearchOperator>;
|
|
13902
|
+
rawColumnType?: InputMaybe<AssetsDmObjectsListRawColumnType>;
|
|
13903
|
+
reasonCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13904
|
+
savedSearch?: InputMaybe<AssetsDmSavedSearchSubtreeInputV2>;
|
|
13905
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
13906
|
+
searchItemValues?: InputMaybe<Array<AssetsDmObjectsListSearchItemValueV2Input>>;
|
|
13907
|
+
tagCodes?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
13908
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
13909
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13910
|
+
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
13911
|
+
};
|
|
13912
|
+
export type AssetsDmObjectsListSearchItemValueV2 = {
|
|
13913
|
+
__typename?: 'AssetsDMObjectsListSearchItemValueV2';
|
|
13914
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
13915
|
+
};
|
|
13916
|
+
export type AssetsDmObjectsListSearchItemValueV2Input = {
|
|
13917
|
+
label: Scalars['String']['input'];
|
|
13918
|
+
};
|
|
13794
13919
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
13795
13920
|
AfterNext = "AFTER_NEXT",
|
|
13796
13921
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -13921,9 +14046,30 @@ export type AssetsDmSavedSearchDetails = {
|
|
|
13921
14046
|
savedSearchId: Scalars['ID']['output'];
|
|
13922
14047
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13923
14048
|
};
|
|
14049
|
+
export type AssetsDmSavedSearchDetailsV2 = {
|
|
14050
|
+
__typename?: 'AssetsDMSavedSearchDetailsV2';
|
|
14051
|
+
calcDate?: Maybe<Scalars['String']['output']>;
|
|
14052
|
+
isExportToAsset?: Maybe<Scalars['Boolean']['output']>;
|
|
14053
|
+
isPublic?: Maybe<Scalars['Boolean']['output']>;
|
|
14054
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14055
|
+
noOfExportToAssetIssues?: Maybe<Scalars['Int']['output']>;
|
|
14056
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
14057
|
+
previousCalcDate?: Maybe<Scalars['String']['output']>;
|
|
14058
|
+
previousResultCount?: Maybe<Scalars['Int']['output']>;
|
|
14059
|
+
resultCount?: Maybe<Scalars['Int']['output']>;
|
|
14060
|
+
savedSearchId: Scalars['ID']['output'];
|
|
14061
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14062
|
+
};
|
|
13924
14063
|
export type AssetsDmSavedSearchInput = {
|
|
13925
14064
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
13926
14065
|
};
|
|
14066
|
+
export type AssetsDmSavedSearchSubtreeInputV2 = {
|
|
14067
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
14068
|
+
};
|
|
14069
|
+
export type AssetsDmSavedSearchSubtreeV2 = {
|
|
14070
|
+
__typename?: 'AssetsDMSavedSearchSubtreeV2';
|
|
14071
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14072
|
+
};
|
|
13927
14073
|
export type AssetsDmSavedSearchesCreateResponse = {
|
|
13928
14074
|
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
13929
14075
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -14722,6 +14868,7 @@ export type AssetsVerticalAssetTypesTrackingConnection = {
|
|
|
14722
14868
|
__typename?: 'AssetsVerticalAssetTypesTrackingConnection';
|
|
14723
14869
|
edges: Array<AssetsVerticalAssetTypesTrackingEdge>;
|
|
14724
14870
|
pageInfo: PageInfo;
|
|
14871
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14725
14872
|
};
|
|
14726
14873
|
export type AssetsVerticalAssetTypesTrackingEdge = {
|
|
14727
14874
|
__typename?: 'AssetsVerticalAssetTypesTrackingEdge';
|
|
@@ -14867,6 +15014,11 @@ export declare enum AssetsVerticalBundleType {
|
|
|
14867
15014
|
Ham = "HAM",
|
|
14868
15015
|
Osc = "OSC"
|
|
14869
15016
|
}
|
|
15017
|
+
export type AssetsVerticalCheckPermissionsResult = AssetsVerticalCheckPermissionsSuccess | QueryError;
|
|
15018
|
+
export type AssetsVerticalCheckPermissionsSuccess = {
|
|
15019
|
+
__typename?: 'AssetsVerticalCheckPermissionsSuccess';
|
|
15020
|
+
results: Array<AssetsVerticalPermissionCheckResult>;
|
|
15021
|
+
};
|
|
14870
15022
|
export type AssetsVerticalCountByStatus = {
|
|
14871
15023
|
__typename?: 'AssetsVerticalCountByStatus';
|
|
14872
15024
|
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
@@ -15341,7 +15493,9 @@ export type AssetsVerticalItemMapping = {
|
|
|
15341
15493
|
id: Scalars['ID']['output'];
|
|
15342
15494
|
itemId: Scalars['ID']['output'];
|
|
15343
15495
|
itemType: AssetsVerticalItemType;
|
|
15496
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
15344
15497
|
siteId: Scalars['ID']['output'];
|
|
15498
|
+
space?: Maybe<JiraProject>;
|
|
15345
15499
|
spaceId: Scalars['ID']['output'];
|
|
15346
15500
|
workspaceId: Scalars['ID']['output'];
|
|
15347
15501
|
};
|
|
@@ -15349,6 +15503,7 @@ export type AssetsVerticalItemMappingConnection = {
|
|
|
15349
15503
|
__typename?: 'AssetsVerticalItemMappingConnection';
|
|
15350
15504
|
edges: Array<AssetsVerticalItemMappingEdge>;
|
|
15351
15505
|
pageInfo: PageInfo;
|
|
15506
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15352
15507
|
};
|
|
15353
15508
|
export type AssetsVerticalItemMappingEdge = {
|
|
15354
15509
|
__typename?: 'AssetsVerticalItemMappingEdge';
|
|
@@ -15430,11 +15585,34 @@ export type AssetsVerticalNonConfiguredAssetType = {
|
|
|
15430
15585
|
objSchema?: Maybe<AssetsSchema>;
|
|
15431
15586
|
objType?: Maybe<AssetsObjectType>;
|
|
15432
15587
|
};
|
|
15433
|
-
export type
|
|
15434
|
-
__typename?: '
|
|
15435
|
-
|
|
15588
|
+
export type AssetsVerticalNonConfiguredAssetTypeConnection = {
|
|
15589
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeConnection';
|
|
15590
|
+
edges: Array<AssetsVerticalNonConfiguredAssetTypeEdge>;
|
|
15591
|
+
pageInfo: PageInfo;
|
|
15592
|
+
};
|
|
15593
|
+
export type AssetsVerticalNonConfiguredAssetTypeEdge = {
|
|
15594
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeEdge';
|
|
15595
|
+
cursor: Scalars['String']['output'];
|
|
15596
|
+
node: AssetsVerticalNonConfiguredAssetType;
|
|
15597
|
+
};
|
|
15598
|
+
export type AssetsVerticalNonConfiguredItem = {
|
|
15599
|
+
__typename?: 'AssetsVerticalNonConfiguredItem';
|
|
15600
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15601
|
+
itemId: Scalars['ID']['output'];
|
|
15602
|
+
itemType: AssetsVerticalItemType;
|
|
15603
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15604
|
+
spaceId: Scalars['ID']['output'];
|
|
15605
|
+
};
|
|
15606
|
+
export type AssetsVerticalNonConfiguredItemMappingConnection = {
|
|
15607
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingConnection';
|
|
15608
|
+
edges: Array<AssetsVerticalNonConfiguredItemMappingEdge>;
|
|
15609
|
+
pageInfo: PageInfo;
|
|
15610
|
+
};
|
|
15611
|
+
export type AssetsVerticalNonConfiguredItemMappingEdge = {
|
|
15612
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingEdge';
|
|
15613
|
+
cursor: Scalars['String']['output'];
|
|
15614
|
+
node: AssetsVerticalNonConfiguredItem;
|
|
15436
15615
|
};
|
|
15437
|
-
export type AssetsVerticalNonConfiguredAssetTypesResult = AssetsVerticalNonConfiguredAssetTypesPayload | QueryError;
|
|
15438
15616
|
export type AssetsVerticalObjectType = {
|
|
15439
15617
|
__typename?: 'AssetsVerticalObjectType';
|
|
15440
15618
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15505,6 +15683,18 @@ export type AssetsVerticalObjectsSuccess = {
|
|
|
15505
15683
|
pageInfo?: Maybe<PageInfo>;
|
|
15506
15684
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15507
15685
|
};
|
|
15686
|
+
export type AssetsVerticalPermissionCheckInput = {
|
|
15687
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15688
|
+
permissionId: Scalars['String']['input'];
|
|
15689
|
+
resourceId: Scalars['ID']['input'];
|
|
15690
|
+
};
|
|
15691
|
+
export type AssetsVerticalPermissionCheckResult = {
|
|
15692
|
+
__typename?: 'AssetsVerticalPermissionCheckResult';
|
|
15693
|
+
dontRequirePrincipalInSite: Scalars['Boolean']['output'];
|
|
15694
|
+
permissionId: Scalars['String']['output'];
|
|
15695
|
+
permitted: Scalars['Boolean']['output'];
|
|
15696
|
+
resourceId: Scalars['ID']['output'];
|
|
15697
|
+
};
|
|
15508
15698
|
export type AssetsVerticalPinInsightPayload = Payload & {
|
|
15509
15699
|
__typename?: 'AssetsVerticalPinInsightPayload';
|
|
15510
15700
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15653,6 +15843,26 @@ export type AssetsVerticalStockroomObjectsInput = {
|
|
|
15653
15843
|
workspaceId: Scalars['ID']['input'];
|
|
15654
15844
|
};
|
|
15655
15845
|
export type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
15846
|
+
export type AssetsVerticalTenantContext = {
|
|
15847
|
+
__typename?: 'AssetsVerticalTenantContext';
|
|
15848
|
+
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
15849
|
+
};
|
|
15850
|
+
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
15851
|
+
NotFound = "NOT_FOUND",
|
|
15852
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
15853
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
15854
|
+
}
|
|
15855
|
+
export type AssetsVerticalTenantContextQueryErrorExtension = QueryErrorExtension & {
|
|
15856
|
+
__typename?: 'AssetsVerticalTenantContextQueryErrorExtension';
|
|
15857
|
+
code?: Maybe<AssetsVerticalTenantContextQueryErrorCode>;
|
|
15858
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
15859
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15860
|
+
};
|
|
15861
|
+
export type AssetsVerticalTenantContextResult = AssetsVerticalTenantContextSuccess | QueryError;
|
|
15862
|
+
export type AssetsVerticalTenantContextSuccess = {
|
|
15863
|
+
__typename?: 'AssetsVerticalTenantContextSuccess';
|
|
15864
|
+
tenantContext: AssetsVerticalTenantContext;
|
|
15865
|
+
};
|
|
15656
15866
|
export type AssetsVerticalUpdateCustomInsightInput = {
|
|
15657
15867
|
category: AssetsVerticalInsightCategory;
|
|
15658
15868
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32293,6 +32503,7 @@ export type ConfluenceForgeExtension = {
|
|
|
32293
32503
|
oauthClientId: Scalars['ID']['output'];
|
|
32294
32504
|
principal?: Maybe<ConfluenceExtensionPrincipal>;
|
|
32295
32505
|
properties: Array<KeyValueHierarchyMap>;
|
|
32506
|
+
sandboxPolicies?: Maybe<Array<Scalars['String']['output']>>;
|
|
32296
32507
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
32297
32508
|
type: Scalars['String']['output'];
|
|
32298
32509
|
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
@@ -38293,6 +38504,7 @@ export type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
|
|
|
38293
38504
|
artifact?: Maybe<ConvoAiMessageArtifact>;
|
|
38294
38505
|
audio?: Maybe<Scalars['String']['output']>;
|
|
38295
38506
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38507
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38296
38508
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
38297
38509
|
role: ConvoAiMessageAuthorRole;
|
|
38298
38510
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38337,6 +38549,7 @@ export type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
|
38337
38549
|
export type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
38338
38550
|
__typename?: 'ConvoAiErrorMessage';
|
|
38339
38551
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38552
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38340
38553
|
messageTemplate: ConvoAiErrorMessageTemplate;
|
|
38341
38554
|
statusCode: Scalars['Int']['output'];
|
|
38342
38555
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38697,6 +38910,7 @@ export type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
|
38697
38910
|
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
38698
38911
|
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
38699
38912
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38913
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38700
38914
|
messageTemplate: Scalars['String']['output'];
|
|
38701
38915
|
timeCreated: Scalars['DateTime']['output'];
|
|
38702
38916
|
};
|
|
@@ -43939,6 +44153,25 @@ export type DevAiAutodevNextScanScheduleInput = {
|
|
|
43939
44153
|
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
43940
44154
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
43941
44155
|
};
|
|
44156
|
+
export type DevAiAutodevNextScanScheduleSlot = {
|
|
44157
|
+
__typename?: 'DevAiAutodevNextScanScheduleSlot';
|
|
44158
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44159
|
+
timeOfDay: Scalars['String']['output'];
|
|
44160
|
+
};
|
|
44161
|
+
export type DevAiAutodevNextScanScheduleSlotInput = {
|
|
44162
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44163
|
+
timeOfDay: Scalars['String']['input'];
|
|
44164
|
+
};
|
|
44165
|
+
export type DevAiAutodevNextScanSchedules = {
|
|
44166
|
+
__typename?: 'DevAiAutodevNextScanSchedules';
|
|
44167
|
+
nextScanAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44168
|
+
slots: Array<DevAiAutodevNextScanScheduleSlot>;
|
|
44169
|
+
timezone: Scalars['String']['output'];
|
|
44170
|
+
};
|
|
44171
|
+
export type DevAiAutodevNextScanSchedulesInput = {
|
|
44172
|
+
slots?: InputMaybe<Array<DevAiAutodevNextScanScheduleSlotInput>>;
|
|
44173
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44174
|
+
};
|
|
43942
44175
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
43943
44176
|
repositoryAris: Array<Scalars['ID']['input']>;
|
|
43944
44177
|
standardId: Scalars['ID']['input'];
|
|
@@ -44143,6 +44376,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
44143
44376
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
44144
44377
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
44145
44378
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44379
|
+
scanScheduleConfiguration?: Maybe<DevAiAutodevNextScanSchedules>;
|
|
44146
44380
|
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
44147
44381
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
44148
44382
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -44163,6 +44397,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
44163
44397
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
44164
44398
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
44165
44399
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44400
|
+
scanScheduleConfiguration?: InputMaybe<DevAiAutodevNextScanSchedulesInput>;
|
|
44166
44401
|
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
44167
44402
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
44168
44403
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -49955,6 +50190,7 @@ export type ExternalTeam = Node & {
|
|
|
49955
50190
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
49956
50191
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
49957
50192
|
id: Scalars['ID']['output'];
|
|
50193
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
49958
50194
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
49959
50195
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
49960
50196
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -49965,6 +50201,7 @@ export type ExternalTeam = Node & {
|
|
|
49965
50201
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
49966
50202
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
49967
50203
|
url?: Maybe<Scalars['String']['output']>;
|
|
50204
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
49968
50205
|
};
|
|
49969
50206
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
49970
50207
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
@@ -50173,6 +50410,7 @@ export type ExternalVideo = Node & {
|
|
|
50173
50410
|
provider?: Maybe<ExternalProvider>;
|
|
50174
50411
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
50175
50412
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
50413
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50176
50414
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
50177
50415
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50178
50416
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -52000,6 +52238,30 @@ export type GlobalAppSignForgeContextTokensResponse = Payload & {
|
|
|
52000
52238
|
success: Scalars['Boolean']['output'];
|
|
52001
52239
|
tokens: Array<GlobalAppForgeContextToken>;
|
|
52002
52240
|
};
|
|
52241
|
+
export type GlobalAppTmpPersonalAppExtensionContextInput = {
|
|
52242
|
+
appVersion: Scalars['String']['input'];
|
|
52243
|
+
context: Scalars['JSON']['input'];
|
|
52244
|
+
extensionId: Scalars['ID']['input'];
|
|
52245
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52246
|
+
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52247
|
+
};
|
|
52248
|
+
export type GlobalAppTmpPersonalAppForgeContextToken = {
|
|
52249
|
+
__typename?: 'GlobalAppTmpPersonalAppForgeContextToken';
|
|
52250
|
+
expiresAt: Scalars['String']['output'];
|
|
52251
|
+
extensionId: Scalars['ID']['output'];
|
|
52252
|
+
jwt: Scalars['String']['output'];
|
|
52253
|
+
};
|
|
52254
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensInput = {
|
|
52255
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
52256
|
+
extensionContexts: Array<GlobalAppTmpPersonalAppExtensionContextInput>;
|
|
52257
|
+
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52258
|
+
};
|
|
52259
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensResponse = Payload & {
|
|
52260
|
+
__typename?: 'GlobalAppTmpPersonalAppSignForgeContextTokensResponse';
|
|
52261
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52262
|
+
success: Scalars['Boolean']['output'];
|
|
52263
|
+
tokens: Array<GlobalAppTmpPersonalAppForgeContextToken>;
|
|
52264
|
+
};
|
|
52003
52265
|
export type GlobalCardCreateAdditionalFields = {
|
|
52004
52266
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
52005
52267
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -116511,6 +116773,11 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
116511
116773
|
success: Scalars['Boolean']['output'];
|
|
116512
116774
|
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
116513
116775
|
};
|
|
116776
|
+
export type HelpCenterDeleteHubTranslationsInput = {
|
|
116777
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116778
|
+
locale: Scalars['String']['input'];
|
|
116779
|
+
parentId: Scalars['ID']['input'];
|
|
116780
|
+
};
|
|
116514
116781
|
export type HelpCenterDeleteInput = {
|
|
116515
116782
|
helpCenterAri: Scalars['String']['input'];
|
|
116516
116783
|
};
|
|
@@ -116555,6 +116822,16 @@ export type HelpCenterHomePageTitleInput = {
|
|
|
116555
116822
|
default: Scalars['String']['input'];
|
|
116556
116823
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
116557
116824
|
};
|
|
116825
|
+
export type HelpCenterHubLayoutTranslations = {
|
|
116826
|
+
__typename?: 'HelpCenterHubLayoutTranslations';
|
|
116827
|
+
blocks: Array<HelpCenterHubTranslationBlock>;
|
|
116828
|
+
locale: Scalars['String']['output'];
|
|
116829
|
+
};
|
|
116830
|
+
export type HelpCenterHubLayoutTranslationsPayload = Payload & {
|
|
116831
|
+
__typename?: 'HelpCenterHubLayoutTranslationsPayload';
|
|
116832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116833
|
+
success: Scalars['Boolean']['output'];
|
|
116834
|
+
};
|
|
116558
116835
|
export type HelpCenterHubProductEntityResult = {
|
|
116559
116836
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
116560
116837
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
@@ -116565,9 +116842,35 @@ export type HelpCenterHubProductEntityResult = {
|
|
|
116565
116842
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
116566
116843
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
116567
116844
|
};
|
|
116845
|
+
export type HelpCenterHubTranslationBlock = {
|
|
116846
|
+
__typename?: 'HelpCenterHubTranslationBlock';
|
|
116847
|
+
fields: Array<HelpCenterHubTranslationField>;
|
|
116848
|
+
localId: Scalars['ID']['output'];
|
|
116849
|
+
};
|
|
116850
|
+
export type HelpCenterHubTranslationBlockInput = {
|
|
116851
|
+
extensionType: Scalars['String']['input'];
|
|
116852
|
+
fields: Array<HelpCenterHubTranslationFieldInput>;
|
|
116853
|
+
localId: Scalars['ID']['input'];
|
|
116854
|
+
};
|
|
116855
|
+
export type HelpCenterHubTranslationField = {
|
|
116856
|
+
__typename?: 'HelpCenterHubTranslationField';
|
|
116857
|
+
fieldPath: Scalars['String']['output'];
|
|
116858
|
+
value: Scalars['String']['output'];
|
|
116859
|
+
};
|
|
116860
|
+
export type HelpCenterHubTranslationFieldInput = {
|
|
116861
|
+
fieldPath: Scalars['String']['input'];
|
|
116862
|
+
value: Scalars['String']['input'];
|
|
116863
|
+
};
|
|
116864
|
+
export type HelpCenterHubTranslationsInput = {
|
|
116865
|
+
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
116866
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116867
|
+
locale: Scalars['String']['input'];
|
|
116868
|
+
parentId: Scalars['ID']['input'];
|
|
116869
|
+
};
|
|
116568
116870
|
export type HelpCenterLayoutAdf = {
|
|
116569
116871
|
__typename?: 'HelpCenterLayoutAdf';
|
|
116570
116872
|
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
116873
|
+
translatableBlocksSchema: Array<HelpCenterTranslatableBlock>;
|
|
116571
116874
|
};
|
|
116572
116875
|
export type HelpCenterLayoutAdfContentArgs = {
|
|
116573
116876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -116618,7 +116921,9 @@ export type HelpCenterMutationApi = {
|
|
|
116618
116921
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
116619
116922
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
116620
116923
|
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
116924
|
+
deleteLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116621
116925
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
116926
|
+
setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116622
116927
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
116623
116928
|
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
116624
116929
|
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
@@ -116644,9 +116949,15 @@ export type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
|
116644
116949
|
export type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
|
|
116645
116950
|
input: HelpCenterPageDeleteInput;
|
|
116646
116951
|
};
|
|
116952
|
+
export type HelpCenterMutationApiDeleteLayoutTranslationsArgs = {
|
|
116953
|
+
input: HelpCenterDeleteHubTranslationsInput;
|
|
116954
|
+
};
|
|
116647
116955
|
export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
116648
116956
|
input: HelpCenterBulkDeleteTopicInput;
|
|
116649
116957
|
};
|
|
116958
|
+
export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
|
|
116959
|
+
input: HelpCenterHubTranslationsInput;
|
|
116960
|
+
};
|
|
116650
116961
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
116651
116962
|
input: HelpCenterUpdateInput;
|
|
116652
116963
|
};
|
|
@@ -116977,6 +117288,7 @@ export type HelpCenterQueryApi = {
|
|
|
116977
117288
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
116978
117289
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
116979
117290
|
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
117291
|
+
layoutTranslations: Array<HelpCenterHubLayoutTranslations>;
|
|
116980
117292
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
116981
117293
|
};
|
|
116982
117294
|
export type HelpCenterQueryApiCustomerExperiencesArgs = {
|
|
@@ -117052,6 +117364,10 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
|
117052
117364
|
helpCenterAri: Scalars['ID']['input'];
|
|
117053
117365
|
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
117054
117366
|
};
|
|
117367
|
+
export type HelpCenterQueryApiLayoutTranslationsArgs = {
|
|
117368
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117369
|
+
parentId: Scalars['ID']['input'];
|
|
117370
|
+
};
|
|
117055
117371
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
117056
117372
|
helpCenterAri: Scalars['ID']['input'];
|
|
117057
117373
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -117161,6 +117477,32 @@ export type HelpCenterTopicItemInput = {
|
|
|
117161
117477
|
ari: Scalars['ID']['input'];
|
|
117162
117478
|
};
|
|
117163
117479
|
export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
117480
|
+
export type HelpCenterTranslatableBlock = {
|
|
117481
|
+
__typename?: 'HelpCenterTranslatableBlock';
|
|
117482
|
+
blockType: HelpCenterTranslatableBlockType;
|
|
117483
|
+
extensionType: Scalars['String']['output'];
|
|
117484
|
+
fields: Array<HelpCenterTranslatableField>;
|
|
117485
|
+
};
|
|
117486
|
+
export declare enum HelpCenterTranslatableBlockType {
|
|
117487
|
+
Carousel = "CAROUSEL",
|
|
117488
|
+
JsmHelp = "JSM_HELP",
|
|
117489
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
117490
|
+
LinksMenu = "LINKS_MENU",
|
|
117491
|
+
LinkCards = "LINK_CARDS",
|
|
117492
|
+
PageTopper = "PAGE_TOPPER",
|
|
117493
|
+
Spotlight = "SPOTLIGHT"
|
|
117494
|
+
}
|
|
117495
|
+
export type HelpCenterTranslatableField = {
|
|
117496
|
+
__typename?: 'HelpCenterTranslatableField';
|
|
117497
|
+
arrayKey?: Maybe<Scalars['String']['output']>;
|
|
117498
|
+
idField?: Maybe<Scalars['String']['output']>;
|
|
117499
|
+
kind: HelpCenterTranslatableFieldKind;
|
|
117500
|
+
path: Scalars['String']['output'];
|
|
117501
|
+
};
|
|
117502
|
+
export declare enum HelpCenterTranslatableFieldKind {
|
|
117503
|
+
ArrayItem = "ARRAY_ITEM",
|
|
117504
|
+
Scalar = "SCALAR"
|
|
117505
|
+
}
|
|
117164
117506
|
export type HelpCenterTranslation = {
|
|
117165
117507
|
__typename?: 'HelpCenterTranslation';
|
|
117166
117508
|
locale: Scalars['String']['output'];
|
|
@@ -118521,10 +118863,9 @@ export type HydratingJiraIssueEdge = {
|
|
|
118521
118863
|
};
|
|
118522
118864
|
export type HypothesisIndicator = {
|
|
118523
118865
|
__typename?: 'HypothesisIndicator';
|
|
118524
|
-
hypothesisId?: Maybe<Scalars['String']['output']>;
|
|
118525
118866
|
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
118526
118867
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
118527
|
-
|
|
118868
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
118528
118869
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
118529
118870
|
};
|
|
118530
118871
|
export type Icon = {
|
|
@@ -120210,17 +120551,6 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
120210
120551
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
120211
120552
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
120212
120553
|
};
|
|
120213
|
-
export declare enum JiraAiAgentConversationState {
|
|
120214
|
-
ArtefactReady = "ARTEFACT_READY",
|
|
120215
|
-
AuthRequired = "AUTH_REQUIRED",
|
|
120216
|
-
Cancelled = "CANCELLED",
|
|
120217
|
-
Completed = "COMPLETED",
|
|
120218
|
-
Failed = "FAILED",
|
|
120219
|
-
InputRequired = "INPUT_REQUIRED",
|
|
120220
|
-
Rejected = "REJECTED",
|
|
120221
|
-
Unknown = "UNKNOWN",
|
|
120222
|
-
Working = "WORKING"
|
|
120223
|
-
}
|
|
120224
120554
|
export type JiraAiAgentSession = {
|
|
120225
120555
|
__typename?: 'JiraAiAgentSession';
|
|
120226
120556
|
agent?: Maybe<User>;
|
|
@@ -120245,11 +120575,6 @@ export type JiraAiAgentSessionEnrichmentInput = {
|
|
|
120245
120575
|
conversationId: Scalars['String']['input'];
|
|
120246
120576
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
120247
120577
|
};
|
|
120248
|
-
export type JiraAiAgentSessionStatus = {
|
|
120249
|
-
__typename?: 'JiraAiAgentSessionStatus';
|
|
120250
|
-
conversationId: Scalars['ID']['output'];
|
|
120251
|
-
state: JiraAiAgentConversationState;
|
|
120252
|
-
};
|
|
120253
120578
|
export declare enum JiraAiContextPanel {
|
|
120254
120579
|
None = "NONE",
|
|
120255
120580
|
ResolutionPlan = "RESOLUTION_PLAN",
|
|
@@ -122388,6 +122713,7 @@ export type JiraBoardViewCellContextField = {
|
|
|
122388
122713
|
__typename?: 'JiraBoardViewCellContextField';
|
|
122389
122714
|
field?: Maybe<JiraField>;
|
|
122390
122715
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
122716
|
+
fieldValues?: Maybe<JiraBoardViewContextFieldValue>;
|
|
122391
122717
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
122392
122718
|
};
|
|
122393
122719
|
export type JiraBoardViewCellContextFieldIssueTypesArgs = {
|
|
@@ -122436,6 +122762,7 @@ export type JiraBoardViewColumnLayoutCellsArgs = {
|
|
|
122436
122762
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122437
122763
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
122438
122764
|
};
|
|
122765
|
+
export type JiraBoardViewContextFieldValue = JiraBoardViewMultiFieldValue | JiraBoardViewSingleFieldValue;
|
|
122439
122766
|
export type JiraBoardViewCustomSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
122440
122767
|
__typename?: 'JiraBoardViewCustomSwimlane';
|
|
122441
122768
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
@@ -122528,6 +122855,10 @@ export type JiraBoardViewIssuePositions = {
|
|
|
122528
122855
|
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
122529
122856
|
};
|
|
122530
122857
|
export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
122858
|
+
export type JiraBoardViewMultiFieldValue = {
|
|
122859
|
+
__typename?: 'JiraBoardViewMultiFieldValue';
|
|
122860
|
+
values?: Maybe<Array<JiraJqlFieldValue>>;
|
|
122861
|
+
};
|
|
122531
122862
|
export type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
122532
122863
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
122533
122864
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122580,6 +122911,10 @@ export type JiraBoardViewSettingsSwimlaneCollapsedEdge = {
|
|
|
122580
122911
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
122581
122912
|
node?: Maybe<JiraBoardViewSettingsSwimlaneCollapsed>;
|
|
122582
122913
|
};
|
|
122914
|
+
export type JiraBoardViewSingleFieldValue = {
|
|
122915
|
+
__typename?: 'JiraBoardViewSingleFieldValue';
|
|
122916
|
+
value?: Maybe<JiraJqlFieldValue>;
|
|
122917
|
+
};
|
|
122583
122918
|
export type JiraBoardViewStatus = {
|
|
122584
122919
|
__typename?: 'JiraBoardViewStatus';
|
|
122585
122920
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -128867,11 +129202,9 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128867
129202
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
128868
129203
|
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
128869
129204
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
128870
|
-
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
128871
129205
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
128872
129206
|
archivedBy?: Maybe<User>;
|
|
128873
129207
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
128874
|
-
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
128875
129208
|
assignee?: Maybe<User>;
|
|
128876
129209
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
128877
129210
|
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
@@ -129081,11 +129414,6 @@ export type JiraIssueAllActivitiesArgs = {
|
|
|
129081
129414
|
first: Scalars['Int']['input'];
|
|
129082
129415
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
129083
129416
|
};
|
|
129084
|
-
export type JiraIssueAllAgentSessionsArgs = {
|
|
129085
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
129086
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129087
|
-
sort?: InputMaybe<Scalars['String']['input']>;
|
|
129088
|
-
};
|
|
129089
129417
|
export type JiraIssueApprovalActivitiesArgs = {
|
|
129090
129418
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129091
129419
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -135100,6 +135428,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
135100
135428
|
Reports = "REPORTS",
|
|
135101
135429
|
Requests = "REQUESTS",
|
|
135102
135430
|
Security = "SECURITY",
|
|
135431
|
+
Sessions = "SESSIONS",
|
|
135103
135432
|
Shortcuts = "SHORTCUTS",
|
|
135104
135433
|
Summary = "SUMMARY",
|
|
135105
135434
|
Teams = "TEAMS",
|
|
@@ -136060,6 +136389,26 @@ export type JiraPermissionGrantHolder = {
|
|
|
136060
136389
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
136061
136390
|
permission: JiraProjectPermission;
|
|
136062
136391
|
};
|
|
136392
|
+
export type JiraPermissionGrantUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
136393
|
+
__typename?: 'JiraPermissionGrantUsageMetric';
|
|
136394
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
136395
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
136396
|
+
id: Scalars['ID']['output'];
|
|
136397
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
136398
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
136399
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
136400
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
136401
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
136402
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
136403
|
+
};
|
|
136404
|
+
export type JiraPermissionGrantUsageMetricValuesArgs = {
|
|
136405
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136406
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
136407
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136408
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136409
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136410
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136411
|
+
};
|
|
136063
136412
|
export type JiraPermissionGrantValue = {
|
|
136064
136413
|
__typename?: 'JiraPermissionGrantValue';
|
|
136065
136414
|
id: Scalars['ID']['output'];
|
|
@@ -136815,6 +137164,7 @@ export type JiraProject = Node & {
|
|
|
136815
137164
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
136816
137165
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
136817
137166
|
name: Scalars['String']['output'];
|
|
137167
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
136818
137168
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
136819
137169
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
136820
137170
|
optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136985,6 +137335,13 @@ export type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
|
136985
137335
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
136986
137336
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136987
137337
|
};
|
|
137338
|
+
export type JiraProjectNavigationItemsArgs = {
|
|
137339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137340
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
137341
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137342
|
+
itemTypeKey?: InputMaybe<JiraNavigationItemTypeKey>;
|
|
137343
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137344
|
+
};
|
|
136988
137345
|
export type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
136989
137346
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
136990
137347
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -137655,6 +138012,7 @@ export type JiraProjectPolicyRuleViolation = {
|
|
|
137655
138012
|
message?: Maybe<Scalars['String']['output']>;
|
|
137656
138013
|
policy?: Maybe<JiraProjectPolicy>;
|
|
137657
138014
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
138015
|
+
ruleTypeId?: Maybe<Scalars['String']['output']>;
|
|
137658
138016
|
};
|
|
137659
138017
|
export type JiraProjectPolicyRuleViolationConnection = HasPageInfo & HasTotal & {
|
|
137660
138018
|
__typename?: 'JiraProjectPolicyRuleViolationConnection';
|
|
@@ -138116,6 +138474,7 @@ export type JiraQuery = {
|
|
|
138116
138474
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
138117
138475
|
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
138118
138476
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138477
|
+
hasJsmAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
138119
138478
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138120
138479
|
hasSystemConfluenceApplicationLink?: Maybe<Scalars['Boolean']['output']>;
|
|
138121
138480
|
hipaaCompliance?: Maybe<JiraHipaaComplianceResponse>;
|
|
@@ -138181,6 +138540,7 @@ export type JiraQuery = {
|
|
|
138181
138540
|
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
138182
138541
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
138183
138542
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
138543
|
+
jira_recommendedAgentsV2?: Maybe<JiraActorConnection>;
|
|
138184
138544
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
138185
138545
|
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
138186
138546
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -138782,6 +139142,9 @@ export type JiraQueryHasGlobalPermissionArgs = {
|
|
|
138782
139142
|
cloudId: Scalars['ID']['input'];
|
|
138783
139143
|
key: JiraGlobalPermissionType;
|
|
138784
139144
|
};
|
|
139145
|
+
export type JiraQueryHasJsmAdminAccessArgs = {
|
|
139146
|
+
cloudId: Scalars['ID']['input'];
|
|
139147
|
+
};
|
|
138785
139148
|
export type JiraQueryHasProjectPermissionArgs = {
|
|
138786
139149
|
cloudId: Scalars['ID']['input'];
|
|
138787
139150
|
permission: JiraProjectPermissionType;
|
|
@@ -139095,6 +139458,15 @@ export type JiraQueryJira_RecommendedAgentsArgs = {
|
|
|
139095
139458
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
139096
139459
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139097
139460
|
};
|
|
139461
|
+
export type JiraQueryJira_RecommendedAgentsV2Args = {
|
|
139462
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139463
|
+
cloudId: Scalars['ID']['input'];
|
|
139464
|
+
contextAri: Scalars['ID']['input'];
|
|
139465
|
+
contextSurface?: InputMaybe<Scalars['String']['input']>;
|
|
139466
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139467
|
+
includeSemanticallyAvailable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139468
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139469
|
+
};
|
|
139098
139470
|
export type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
139099
139471
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139100
139472
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139881,7 +140253,6 @@ export type JiraReleaseHistoryItem = {
|
|
|
139881
140253
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
139882
140254
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
139883
140255
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
139884
|
-
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
139885
140256
|
i18nFieldName?: Maybe<Scalars['String']['output']>;
|
|
139886
140257
|
id: Scalars['ID']['output'];
|
|
139887
140258
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -141038,6 +141409,7 @@ export type JiraRovoEnablementStatus = {
|
|
|
141038
141409
|
export declare enum JiraRovoWithAiDisabledReason {
|
|
141039
141410
|
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
141040
141411
|
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
141412
|
+
NoWritePermsForRovo = "NO_WRITE_PERMS_FOR_ROVO",
|
|
141041
141413
|
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
141042
141414
|
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
141043
141415
|
}
|
|
@@ -150075,6 +150447,11 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
150075
150447
|
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
150076
150448
|
ValidationError = "VALIDATION_ERROR"
|
|
150077
150449
|
}
|
|
150450
|
+
export type JsmTelemetryIncidentTelemetryResult = {
|
|
150451
|
+
__typename?: 'JsmTelemetryIncidentTelemetryResult';
|
|
150452
|
+
data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
|
|
150453
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150454
|
+
};
|
|
150078
150455
|
export type JsmTelemetryMetricAggregation = {
|
|
150079
150456
|
__typename?: 'JsmTelemetryMetricAggregation';
|
|
150080
150457
|
function: JsmTelemetryMetricAggregationFunction;
|
|
@@ -150188,6 +150565,7 @@ export type JsmTelemetryMetricMetadata = {
|
|
|
150188
150565
|
__typename?: 'JsmTelemetryMetricMetadata';
|
|
150189
150566
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
150190
150567
|
metricName: Scalars['String']['output'];
|
|
150568
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
150191
150569
|
type?: Maybe<JsmTelemetryMetricType>;
|
|
150192
150570
|
unit?: Maybe<Scalars['String']['output']>;
|
|
150193
150571
|
};
|
|
@@ -151143,6 +151521,7 @@ export type KitsuneSection = Node & {
|
|
|
151143
151521
|
__typename?: 'KitsuneSection';
|
|
151144
151522
|
createdAt: Scalars['DateTime']['output'];
|
|
151145
151523
|
description?: Maybe<Scalars['String']['output']>;
|
|
151524
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151146
151525
|
id: Scalars['ID']['output'];
|
|
151147
151526
|
name: Scalars['String']['output'];
|
|
151148
151527
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -151462,6 +151841,7 @@ export type KitsuneView = Node & {
|
|
|
151462
151841
|
__typename?: 'KitsuneView';
|
|
151463
151842
|
config?: Maybe<KitsuneViewConfig>;
|
|
151464
151843
|
description?: Maybe<Scalars['String']['output']>;
|
|
151844
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151465
151845
|
entityType: KitsuneEntityType;
|
|
151466
151846
|
id: Scalars['ID']['output'];
|
|
151467
151847
|
name: Scalars['String']['output'];
|
|
@@ -153548,6 +153928,29 @@ export type LoomCreateVideoReactionPayload = {
|
|
|
153548
153928
|
reaction?: Maybe<LoomVideoReaction>;
|
|
153549
153929
|
success: Scalars['Boolean']['output'];
|
|
153550
153930
|
};
|
|
153931
|
+
export type LoomCurrentUserVideosInput = {
|
|
153932
|
+
createdAtRange?: InputMaybe<LoomDateRangeInput>;
|
|
153933
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
153934
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
153935
|
+
siteId: Scalars['ID']['input'];
|
|
153936
|
+
sortOrder?: InputMaybe<LoomSortDirection>;
|
|
153937
|
+
source?: InputMaybe<LoomCurrentUserVideosSource>;
|
|
153938
|
+
};
|
|
153939
|
+
export type LoomCurrentUserVideosPayload = {
|
|
153940
|
+
__typename?: 'LoomCurrentUserVideosPayload';
|
|
153941
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
153942
|
+
success: Scalars['Boolean']['output'];
|
|
153943
|
+
videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
153944
|
+
};
|
|
153945
|
+
export declare enum LoomCurrentUserVideosSource {
|
|
153946
|
+
All = "ALL",
|
|
153947
|
+
Mine = "MINE",
|
|
153948
|
+
SharedWithMe = "SHARED_WITH_ME"
|
|
153949
|
+
}
|
|
153950
|
+
export type LoomDateRangeInput = {
|
|
153951
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
153952
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
153953
|
+
};
|
|
153551
153954
|
export type LoomDeleteVideo = {
|
|
153552
153955
|
__typename?: 'LoomDeleteVideo';
|
|
153553
153956
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -158772,33 +159175,37 @@ export type MercuryAsk = Node & {
|
|
|
158772
159175
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158773
159176
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158774
159177
|
createdBy?: Maybe<User>;
|
|
158775
|
-
createdByUserId?: Maybe<Scalars['
|
|
159178
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158776
159179
|
description?: Maybe<Scalars['String']['output']>;
|
|
158777
159180
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158778
159181
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158779
159182
|
id: Scalars['ID']['output'];
|
|
158780
159183
|
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158781
|
-
impactedWorkId?: Maybe<Scalars['
|
|
159184
|
+
impactedWorkId?: Maybe<Scalars['ID']['output']>;
|
|
158782
159185
|
justification?: Maybe<Scalars['String']['output']>;
|
|
158783
159186
|
links?: Maybe<MercuryAskLinkConnection>;
|
|
158784
159187
|
name: Scalars['String']['output'];
|
|
158785
159188
|
owner?: Maybe<User>;
|
|
158786
|
-
ownerId?: Maybe<Scalars['
|
|
159189
|
+
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
158787
159190
|
priority: MercuryAskPriority;
|
|
158788
159191
|
proposedBy?: Maybe<User>;
|
|
158789
159192
|
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159193
|
+
receivingOrganization?: Maybe<MercuryOrganization>;
|
|
159194
|
+
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158790
159195
|
receivingTeam?: Maybe<TeamV2>;
|
|
158791
|
-
receivingTeamId?: Maybe<Scalars['
|
|
159196
|
+
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158792
159197
|
status: MercuryAskStatus;
|
|
158793
159198
|
submitter?: Maybe<User>;
|
|
158794
|
-
submitterId: Scalars['
|
|
159199
|
+
submitterId: Scalars['ID']['output'];
|
|
159200
|
+
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
159201
|
+
submittingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158795
159202
|
submittingTeam?: Maybe<TeamV2>;
|
|
158796
|
-
submittingTeamId?: Maybe<Scalars['
|
|
159203
|
+
submittingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158797
159204
|
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158798
159205
|
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158799
159206
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158800
159207
|
updatedBy?: Maybe<User>;
|
|
158801
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159208
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158802
159209
|
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158803
159210
|
url?: Maybe<Scalars['URL']['output']>;
|
|
158804
159211
|
};
|
|
@@ -158838,10 +159245,10 @@ export type MercuryAskUpdatesArgs = {
|
|
|
158838
159245
|
export type MercuryAskActivity = {
|
|
158839
159246
|
__typename?: 'MercuryAskActivity';
|
|
158840
159247
|
askActivityType: MercuryAskActivityType;
|
|
158841
|
-
askId: Scalars['
|
|
159248
|
+
askId: Scalars['ID']['output'];
|
|
158842
159249
|
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158843
159250
|
askUpdatedByUser?: Maybe<User>;
|
|
158844
|
-
askUpdatedByUserId: Scalars['
|
|
159251
|
+
askUpdatedByUserId: Scalars['ID']['output'];
|
|
158845
159252
|
id: Scalars['ID']['output'];
|
|
158846
159253
|
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158847
159254
|
};
|
|
@@ -158855,9 +159262,11 @@ export declare enum MercuryAskActivityAttribute {
|
|
|
158855
159262
|
Owner = "OWNER",
|
|
158856
159263
|
Priority = "PRIORITY",
|
|
158857
159264
|
ProposedDate = "PROPOSED_DATE",
|
|
159265
|
+
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
158858
159266
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
158859
159267
|
Status = "STATUS",
|
|
158860
159268
|
Submitter = "SUBMITTER",
|
|
159269
|
+
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
158861
159270
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
158862
159271
|
TargetDate = "TARGET_DATE"
|
|
158863
159272
|
}
|
|
@@ -158917,6 +159326,14 @@ export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
|
158917
159326
|
newValue?: Maybe<MercuryAskActivityLink>;
|
|
158918
159327
|
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
158919
159328
|
};
|
|
159329
|
+
export type MercuryAskActivityUpdatedOrganization = MercuryAskActivityUpdatedValue & {
|
|
159330
|
+
__typename?: 'MercuryAskActivityUpdatedOrganization';
|
|
159331
|
+
attribute: MercuryAskActivityAttribute;
|
|
159332
|
+
newOrganization?: Maybe<MercuryOrganization>;
|
|
159333
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159334
|
+
oldOrganization?: Maybe<MercuryOrganization>;
|
|
159335
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159336
|
+
};
|
|
158920
159337
|
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
158921
159338
|
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
158922
159339
|
attribute: MercuryAskActivityAttribute;
|
|
@@ -158979,7 +159396,7 @@ export type MercuryAskConnectedWorkEdge = {
|
|
|
158979
159396
|
node?: Maybe<MercuryAskConnectedWork>;
|
|
158980
159397
|
};
|
|
158981
159398
|
export type MercuryAskConnectedWorkInput = {
|
|
158982
|
-
connectedWorkIds: Array<Scalars['
|
|
159399
|
+
connectedWorkIds: Array<Scalars['ID']['input']>;
|
|
158983
159400
|
id: Scalars['ID']['input'];
|
|
158984
159401
|
};
|
|
158985
159402
|
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
@@ -159001,9 +159418,9 @@ export type MercuryAskEdge = {
|
|
|
159001
159418
|
};
|
|
159002
159419
|
export type MercuryAskLink = Node & {
|
|
159003
159420
|
__typename?: 'MercuryAskLink';
|
|
159004
|
-
askId: Scalars['
|
|
159421
|
+
askId: Scalars['ID']['output'];
|
|
159005
159422
|
attachedByUser?: Maybe<User>;
|
|
159006
|
-
attachedByUserId?: Maybe<Scalars['
|
|
159423
|
+
attachedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159007
159424
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159008
159425
|
id: Scalars['ID']['output'];
|
|
159009
159426
|
linkText?: Maybe<Scalars['String']['output']>;
|
|
@@ -159043,7 +159460,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159043
159460
|
__typename?: 'MercuryAskStatusUpdate';
|
|
159044
159461
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159045
159462
|
createdBy?: Maybe<User>;
|
|
159046
|
-
createdByUserId?: Maybe<Scalars['
|
|
159463
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159047
159464
|
description?: Maybe<Scalars['String']['output']>;
|
|
159048
159465
|
id: Scalars['ID']['output'];
|
|
159049
159466
|
newProposedBy?: Maybe<User>;
|
|
@@ -159056,7 +159473,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159056
159473
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159057
159474
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159058
159475
|
updatedBy?: Maybe<User>;
|
|
159059
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159476
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159060
159477
|
};
|
|
159061
159478
|
export type MercuryAskStatusUpdateConnection = {
|
|
159062
159479
|
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
@@ -159098,7 +159515,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
159098
159515
|
}
|
|
159099
159516
|
export type MercuryAskTransition = {
|
|
159100
159517
|
__typename?: 'MercuryAskTransition';
|
|
159101
|
-
askId: Scalars['
|
|
159518
|
+
askId: Scalars['ID']['output'];
|
|
159102
159519
|
status?: Maybe<MercuryAskStatus>;
|
|
159103
159520
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159104
159521
|
};
|
|
@@ -159907,15 +160324,15 @@ export type MercuryCostType = Node & {
|
|
|
159907
160324
|
export type MercuryCreateAskInput = {
|
|
159908
160325
|
cloudId: Scalars['ID']['input'];
|
|
159909
160326
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159910
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160327
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
159911
160328
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
159912
160329
|
name: Scalars['String']['input'];
|
|
159913
|
-
ownerId?: InputMaybe<Scalars['
|
|
160330
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
159914
160331
|
priority: MercuryAskPriority;
|
|
159915
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160332
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159916
160333
|
status: MercuryAskStatus;
|
|
159917
|
-
submitterId: Scalars['
|
|
159918
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160334
|
+
submitterId: Scalars['ID']['input'];
|
|
160335
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159919
160336
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159920
160337
|
};
|
|
159921
160338
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
@@ -159927,16 +160344,16 @@ export type MercuryCreateAskStatusUpdateInput = {
|
|
|
159927
160344
|
};
|
|
159928
160345
|
export type MercuryCreateAsksAskInput = {
|
|
159929
160346
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159930
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160347
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
159931
160348
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
159932
160349
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
159933
160350
|
name: Scalars['String']['input'];
|
|
159934
|
-
ownerId?: InputMaybe<Scalars['
|
|
160351
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
159935
160352
|
priority: MercuryAskPriority;
|
|
159936
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160353
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159937
160354
|
status: MercuryAskStatus;
|
|
159938
|
-
submitterId: Scalars['
|
|
159939
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160355
|
+
submitterId: Scalars['ID']['input'];
|
|
160356
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159940
160357
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159941
160358
|
};
|
|
159942
160359
|
export type MercuryCreateAsksAskLinkInput = {
|
|
@@ -160944,6 +161361,7 @@ export declare enum MercuryDismissalType {
|
|
|
160944
161361
|
Snooze = "SNOOZE"
|
|
160945
161362
|
}
|
|
160946
161363
|
export declare enum MercuryEntityType {
|
|
161364
|
+
Ask = "ASK",
|
|
160947
161365
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
160948
161366
|
Comment = "COMMENT",
|
|
160949
161367
|
FocusArea = "FOCUS_AREA",
|
|
@@ -164362,7 +164780,7 @@ export type MercuryProjectType = {
|
|
|
164362
164780
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
164363
164781
|
};
|
|
164364
164782
|
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164365
|
-
connectedWorkId: Scalars['
|
|
164783
|
+
connectedWorkId: Scalars['ID']['input'];
|
|
164366
164784
|
id: Scalars['ID']['input'];
|
|
164367
164785
|
};
|
|
164368
164786
|
export type MercuryProposeChangesInput = {
|
|
@@ -166472,7 +166890,7 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
166472
166890
|
};
|
|
166473
166891
|
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166474
166892
|
id: Scalars['ID']['input'];
|
|
166475
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
166893
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
166476
166894
|
};
|
|
166477
166895
|
export type MercuryUpdateAskJustificationInput = {
|
|
166478
166896
|
id: Scalars['ID']['input'];
|
|
@@ -166484,7 +166902,7 @@ export type MercuryUpdateAskNameInput = {
|
|
|
166484
166902
|
};
|
|
166485
166903
|
export type MercuryUpdateAskOwnerInput = {
|
|
166486
166904
|
id: Scalars['ID']['input'];
|
|
166487
|
-
ownerId?: InputMaybe<Scalars['
|
|
166905
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
166488
166906
|
};
|
|
166489
166907
|
export type MercuryUpdateAskPriorityInput = {
|
|
166490
166908
|
id: Scalars['ID']['input'];
|
|
@@ -166492,25 +166910,25 @@ export type MercuryUpdateAskPriorityInput = {
|
|
|
166492
166910
|
};
|
|
166493
166911
|
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166494
166912
|
id: Scalars['ID']['input'];
|
|
166495
|
-
ownerId?: InputMaybe<Scalars['
|
|
166496
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
166913
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
166914
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166497
166915
|
};
|
|
166498
166916
|
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166499
166917
|
id: Scalars['ID']['input'];
|
|
166500
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
166918
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166501
166919
|
};
|
|
166502
166920
|
export type MercuryUpdateAskSubmitterInput = {
|
|
166503
166921
|
id: Scalars['ID']['input'];
|
|
166504
|
-
submitterId: Scalars['
|
|
166922
|
+
submitterId: Scalars['ID']['input'];
|
|
166505
166923
|
};
|
|
166506
166924
|
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166507
166925
|
id: Scalars['ID']['input'];
|
|
166508
|
-
submitterId: Scalars['
|
|
166509
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
166926
|
+
submitterId: Scalars['ID']['input'];
|
|
166927
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166510
166928
|
};
|
|
166511
166929
|
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166512
166930
|
id: Scalars['ID']['input'];
|
|
166513
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
166931
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166514
166932
|
};
|
|
166515
166933
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
166516
166934
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167450,6 +167868,11 @@ export type Mitigation = Node & {
|
|
|
167450
167868
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167451
167869
|
version?: Maybe<Scalars['Int']['output']>;
|
|
167452
167870
|
};
|
|
167871
|
+
export declare enum MitigationConfidence {
|
|
167872
|
+
High = "HIGH",
|
|
167873
|
+
Low = "LOW",
|
|
167874
|
+
Medium = "MEDIUM"
|
|
167875
|
+
}
|
|
167453
167876
|
export declare enum MitigationDocumentType {
|
|
167454
167877
|
Confluence = "CONFLUENCE",
|
|
167455
167878
|
GoogleDoc = "GOOGLE_DOC",
|
|
@@ -167480,7 +167903,6 @@ export declare enum MitigationHypothesisType {
|
|
|
167480
167903
|
}
|
|
167481
167904
|
export type MitigationIndicator = Node & {
|
|
167482
167905
|
__typename?: 'MitigationIndicator';
|
|
167483
|
-
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
167484
167906
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167485
167907
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
167486
167908
|
id: Scalars['ID']['output'];
|
|
@@ -167512,6 +167934,7 @@ export declare enum MitigationPipelineStep {
|
|
|
167512
167934
|
}
|
|
167513
167935
|
export type MitigationPlan = Node & {
|
|
167514
167936
|
__typename?: 'MitigationPlan';
|
|
167937
|
+
confidence?: Maybe<MitigationConfidence>;
|
|
167515
167938
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167516
167939
|
id: Scalars['ID']['output'];
|
|
167517
167940
|
indicatorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -167733,6 +168156,7 @@ export type Mutation = {
|
|
|
167733
168156
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
167734
168157
|
agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
|
|
167735
168158
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
168159
|
+
agentWorkspace_setShiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfigPayload>;
|
|
167736
168160
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
167737
168161
|
agentWorkspace_setWorkloadJql?: Maybe<AgentWorkspaceSetWorkloadJqlPayload>;
|
|
167738
168162
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -168363,6 +168787,7 @@ export type Mutation = {
|
|
|
168363
168787
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168364
168788
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168365
168789
|
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
168790
|
+
globalApp_tmpPersonalAppSignForgeContextTokens?: Maybe<GlobalAppTmpPersonalAppSignForgeContextTokensResponse>;
|
|
168366
168791
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
168367
168792
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
168368
168793
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -168997,6 +169422,7 @@ export type Mutation = {
|
|
|
168997
169422
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
168998
169423
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
168999
169424
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
169425
|
+
projects_removeWatchers?: Maybe<TownsquareProjectsRemoveWatchersPayload>;
|
|
169000
169426
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
169001
169427
|
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
169002
169428
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -169013,6 +169439,7 @@ export type Mutation = {
|
|
|
169013
169439
|
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
169014
169440
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
169015
169441
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
169442
|
+
radar_createSkill?: Maybe<RadarSkill>;
|
|
169016
169443
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
169017
169444
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
169018
169445
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -169036,7 +169463,7 @@ export type Mutation = {
|
|
|
169036
169463
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
169037
169464
|
radar_updateSkill?: Maybe<RadarSkill>;
|
|
169038
169465
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
169039
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<
|
|
169466
|
+
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
169040
169467
|
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
169041
169468
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
169042
169469
|
radar_upsertView?: Maybe<RadarView>;
|
|
@@ -169709,6 +170136,9 @@ export type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
|
|
|
169709
170136
|
export type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
169710
170137
|
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
169711
170138
|
};
|
|
170139
|
+
export type MutationAgentWorkspace_SetShiftReminderConfigArgs = {
|
|
170140
|
+
input: AgentWorkspaceSetShiftReminderConfigInput;
|
|
170141
|
+
};
|
|
169712
170142
|
export type MutationAgentWorkspace_SetTeamCapacitiesArgs = {
|
|
169713
170143
|
input: AgentWorkspaceSetTeamCapacitiesInput;
|
|
169714
170144
|
};
|
|
@@ -172033,6 +172463,9 @@ export type MutationGeneratePermsReportArgs = {
|
|
|
172033
172463
|
export type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
172034
172464
|
input: GlobalAppSignForgeContextTokensInput;
|
|
172035
172465
|
};
|
|
172466
|
+
export type MutationGlobalApp_TmpPersonalAppSignForgeContextTokensArgs = {
|
|
172467
|
+
input: GlobalAppTmpPersonalAppSignForgeContextTokensInput;
|
|
172468
|
+
};
|
|
172036
172469
|
export type MutationGoals_AddGoalTeamLinkArgs = {
|
|
172037
172470
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
172038
172471
|
};
|
|
@@ -173478,6 +173911,7 @@ export type MutationKitsune_CreateOrganizationFieldArgs = {
|
|
|
173478
173911
|
};
|
|
173479
173912
|
export type MutationKitsune_CreateSectionArgs = {
|
|
173480
173913
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
173914
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173481
173915
|
name: Scalars['String']['input'];
|
|
173482
173916
|
spaceAri: Scalars['ID']['input'];
|
|
173483
173917
|
};
|
|
@@ -173494,6 +173928,7 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
173494
173928
|
export type MutationKitsune_CreateViewArgs = {
|
|
173495
173929
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173496
173930
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
173931
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173497
173932
|
entityType?: InputMaybe<KitsuneEntityType>;
|
|
173498
173933
|
name: Scalars['String']['input'];
|
|
173499
173934
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -173624,6 +174059,7 @@ export type MutationKitsune_UpdateOrganizationFieldArgs = {
|
|
|
173624
174059
|
};
|
|
173625
174060
|
export type MutationKitsune_UpdateSectionArgs = {
|
|
173626
174061
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174062
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173627
174063
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173628
174064
|
sectionAri: Scalars['ID']['input'];
|
|
173629
174065
|
};
|
|
@@ -173640,6 +174076,7 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
173640
174076
|
export type MutationKitsune_UpdateViewArgs = {
|
|
173641
174077
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173642
174078
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174079
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173643
174080
|
id: Scalars['ID']['input'];
|
|
173644
174081
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173645
174082
|
};
|
|
@@ -174043,6 +174480,9 @@ export type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
174043
174480
|
export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
174044
174481
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
174045
174482
|
};
|
|
174483
|
+
export type MutationProjects_RemoveWatchersArgs = {
|
|
174484
|
+
input: TownsquareProjectsRemoveWatchersInput;
|
|
174485
|
+
};
|
|
174046
174486
|
export type MutationProjects_RevokeAccessArgs = {
|
|
174047
174487
|
input: TownsquareProjectRevokeAccessInput;
|
|
174048
174488
|
};
|
|
@@ -174095,6 +174535,10 @@ export type MutationRadar_CreateRoleAssignmentArgs = {
|
|
|
174095
174535
|
cloudId: Scalars['ID']['input'];
|
|
174096
174536
|
input: RadarRoleAssignmentRequest;
|
|
174097
174537
|
};
|
|
174538
|
+
export type MutationRadar_CreateSkillArgs = {
|
|
174539
|
+
cloudId: Scalars['ID']['input'];
|
|
174540
|
+
input: RadarCreateSkillInput;
|
|
174541
|
+
};
|
|
174098
174542
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
174099
174543
|
cloudId: Scalars['ID']['input'];
|
|
174100
174544
|
input: RadarDeleteConnectorInput;
|
|
@@ -174187,7 +174631,7 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
174187
174631
|
};
|
|
174188
174632
|
export type MutationRadar_UpsertAiScopedBudgetPoliciesArgs = {
|
|
174189
174633
|
cloudId: Scalars['ID']['input'];
|
|
174190
|
-
input:
|
|
174634
|
+
input: RadarUpsertAiScopedBudgetPoliciesInput;
|
|
174191
174635
|
};
|
|
174192
174636
|
export type MutationRadar_UpsertAiWorkspaceBudgetPolicyArgs = {
|
|
174193
174637
|
cloudId: Scalars['ID']['input'];
|
|
@@ -178299,10 +178743,12 @@ export type Query = {
|
|
|
178299
178743
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
178300
178744
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
178301
178745
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
178746
|
+
agentWorkspace_serviceOptions?: Maybe<AgentWorkspaceServiceOptionsPage>;
|
|
178302
178747
|
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178303
178748
|
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178304
178749
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178305
178750
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
178751
|
+
agentWorkspace_shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
178306
178752
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
178307
178753
|
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
178308
178754
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
@@ -178428,6 +178874,7 @@ export type Query = {
|
|
|
178428
178874
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
178429
178875
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
178430
178876
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
178877
|
+
assetsDM_objectsListDataRowsV2?: Maybe<AssetsDmObjectsListDataRows>;
|
|
178431
178878
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
178432
178879
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
178433
178880
|
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
@@ -178436,6 +178883,7 @@ export type Query = {
|
|
|
178436
178883
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
178437
178884
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
178438
178885
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
178886
|
+
assetsDM_savedSearchDetailsV2?: Maybe<AssetsDmSavedSearchDetailsV2>;
|
|
178439
178887
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
178440
178888
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
178441
178889
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
@@ -178444,6 +178892,7 @@ export type Query = {
|
|
|
178444
178892
|
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
178445
178893
|
assetsVertical_asyncTasks?: Maybe<AssetsVerticalAsyncTaskConnection>;
|
|
178446
178894
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
178895
|
+
assetsVertical_checkPermissions?: Maybe<AssetsVerticalCheckPermissionsResult>;
|
|
178447
178896
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
178448
178897
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
178449
178898
|
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
@@ -178465,13 +178914,15 @@ export type Query = {
|
|
|
178465
178914
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
178466
178915
|
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
178467
178916
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
178468
|
-
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<
|
|
178469
|
-
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<
|
|
178917
|
+
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
178918
|
+
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
178919
|
+
assetsVertical_nonConfiguredItemMappings?: Maybe<AssetsVerticalNonConfiguredItemMappingConnection>;
|
|
178470
178920
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
178471
178921
|
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
178472
178922
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
178473
178923
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
178474
178924
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
178925
|
+
assetsVertical_tenantContext?: Maybe<AssetsVerticalTenantContextResult>;
|
|
178475
178926
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
178476
178927
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
178477
178928
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
@@ -179028,6 +179479,9 @@ export type Query = {
|
|
|
179028
179479
|
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
179029
179480
|
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179030
179481
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179482
|
+
globalApp_extensionsByContextAri?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
179483
|
+
globalApp_extensionsByInstallationId?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
179484
|
+
globalApp_isProductAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
179031
179485
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
179032
179486
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
179033
179487
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -181342,6 +181796,7 @@ export type Query = {
|
|
|
181342
181796
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
181343
181797
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
181344
181798
|
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
181799
|
+
jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
|
|
181345
181800
|
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
181346
181801
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
181347
181802
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
@@ -181410,6 +181865,7 @@ export type Query = {
|
|
|
181410
181865
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
181411
181866
|
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
181412
181867
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
181868
|
+
loom_currentUserVideos?: Maybe<LoomCurrentUserVideosPayload>;
|
|
181413
181869
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
181414
181870
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
181415
181871
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
@@ -181801,6 +182257,7 @@ export type Query = {
|
|
|
181801
182257
|
tenant?: Maybe<Tenant>;
|
|
181802
182258
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
181803
182259
|
testing?: Maybe<Testing>;
|
|
182260
|
+
testingV2?: Maybe<Testing>;
|
|
181804
182261
|
timeseriesCount?: Maybe<TimeseriesCount>;
|
|
181805
182262
|
timeseriesPageBlogCount?: Maybe<TimeseriesPageBlogCount>;
|
|
181806
182263
|
timeseriesUniqueUserCount?: Maybe<TimeseriesUniqueUserCount>;
|
|
@@ -182344,6 +182801,7 @@ export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
|
182344
182801
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182345
182802
|
cloudId: Scalars['String']['input'];
|
|
182346
182803
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182804
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
182347
182805
|
};
|
|
182348
182806
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
182349
182807
|
cloudId: Scalars['String']['input'];
|
|
@@ -182652,6 +183110,15 @@ export type QueryAgentWorkspace_SchedulesArgs = {
|
|
|
182652
183110
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
182653
183111
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
182654
183112
|
};
|
|
183113
|
+
export type QueryAgentWorkspace_ServiceOptionsArgs = {
|
|
183114
|
+
cloudId: Scalars['ID']['input'];
|
|
183115
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
183116
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
183117
|
+
projectId: Scalars['ID']['input'];
|
|
183118
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
183119
|
+
serviceFieldId: Scalars['ID']['input'];
|
|
183120
|
+
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
183121
|
+
};
|
|
182655
183122
|
export type QueryAgentWorkspace_ServicesArgs = {
|
|
182656
183123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182657
183124
|
cloudId: Scalars['ID']['input'];
|
|
@@ -182678,6 +183145,10 @@ export type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
|
182678
183145
|
export type QueryAgentWorkspace_ShiftEditBoundsArgs = {
|
|
182679
183146
|
input: AgentWorkspaceShiftEditBoundsInput;
|
|
182680
183147
|
};
|
|
183148
|
+
export type QueryAgentWorkspace_ShiftReminderConfigArgs = {
|
|
183149
|
+
cloudId: Scalars['ID']['input'];
|
|
183150
|
+
projectId: Scalars['ID']['input'];
|
|
183151
|
+
};
|
|
182681
183152
|
export type QueryAgentWorkspace_ShiftsArgs = {
|
|
182682
183153
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182683
183154
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -183356,6 +183827,14 @@ export type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
183356
183827
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
183357
183828
|
workspaceId: Scalars['ID']['input'];
|
|
183358
183829
|
};
|
|
183830
|
+
export type QueryAssetsDm_ObjectsListDataRowsV2Args = {
|
|
183831
|
+
cloudId: Scalars['ID']['input'];
|
|
183832
|
+
objectId: Scalars['ID']['input'];
|
|
183833
|
+
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
183834
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
183835
|
+
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
183836
|
+
workspaceId: Scalars['ID']['input'];
|
|
183837
|
+
};
|
|
183359
183838
|
export type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
183360
183839
|
cloudId: Scalars['ID']['input'];
|
|
183361
183840
|
name: Scalars['String']['input'];
|
|
@@ -183409,6 +183888,11 @@ export type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
|
183409
183888
|
savedSearchId: Scalars['ID']['input'];
|
|
183410
183889
|
workspaceId: Scalars['ID']['input'];
|
|
183411
183890
|
};
|
|
183891
|
+
export type QueryAssetsDm_SavedSearchDetailsV2Args = {
|
|
183892
|
+
cloudId: Scalars['ID']['input'];
|
|
183893
|
+
savedSearchId: Scalars['ID']['input'];
|
|
183894
|
+
workspaceId: Scalars['ID']['input'];
|
|
183895
|
+
};
|
|
183412
183896
|
export type QueryAssetsDm_SavedSearchesListArgs = {
|
|
183413
183897
|
cloudId: Scalars['ID']['input'];
|
|
183414
183898
|
objectId: Scalars['ID']['input'];
|
|
@@ -183453,6 +183937,10 @@ export type QueryAssetsVertical_BundleArgs = {
|
|
|
183453
183937
|
cloudId: Scalars['ID']['input'];
|
|
183454
183938
|
type: AssetsVerticalBundleType;
|
|
183455
183939
|
};
|
|
183940
|
+
export type QueryAssetsVertical_CheckPermissionsArgs = {
|
|
183941
|
+
checks: Array<AssetsVerticalPermissionCheckInput>;
|
|
183942
|
+
cloudId: Scalars['ID']['input'];
|
|
183943
|
+
};
|
|
183456
183944
|
export type QueryAssetsVertical_ConfiguredObjectTypesArgs = {
|
|
183457
183945
|
cloudId: Scalars['ID']['input'];
|
|
183458
183946
|
input: AssetsVerticalObjectTypesInput;
|
|
@@ -183543,13 +184031,24 @@ export type QueryAssetsVertical_ModelObjectsArgs = {
|
|
|
183543
184031
|
input: AssetsVerticalModelObjectsInput;
|
|
183544
184032
|
};
|
|
183545
184033
|
export type QueryAssetsVertical_NonConfiguredAssetTypesTrackingsArgs = {
|
|
184034
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183546
184035
|
cloudId: Scalars['ID']['input'];
|
|
184036
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183547
184037
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
183548
184038
|
};
|
|
183549
184039
|
export type QueryAssetsVertical_NonConfiguredDepreciationRuleAssetTypesArgs = {
|
|
184040
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183550
184041
|
cloudId: Scalars['ID']['input'];
|
|
184042
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183551
184043
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
183552
184044
|
};
|
|
184045
|
+
export type QueryAssetsVertical_NonConfiguredItemMappingsArgs = {
|
|
184046
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
184047
|
+
cloudId: Scalars['ID']['input'];
|
|
184048
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
184049
|
+
spaceId: Scalars['ID']['input'];
|
|
184050
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
184051
|
+
};
|
|
183553
184052
|
export type QueryAssetsVertical_ObjectsArgs = {
|
|
183554
184053
|
cloudId: Scalars['ID']['input'];
|
|
183555
184054
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -183570,6 +184069,9 @@ export type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
|
183570
184069
|
cloudId: Scalars['ID']['input'];
|
|
183571
184070
|
input: AssetsVerticalStockroomObjectsInput;
|
|
183572
184071
|
};
|
|
184072
|
+
export type QueryAssetsVertical_TenantContextArgs = {
|
|
184073
|
+
cloudId: Scalars['ID']['input'];
|
|
184074
|
+
};
|
|
183573
184075
|
export type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
183574
184076
|
cloudId: Scalars['ID']['input'];
|
|
183575
184077
|
id: Scalars['ID']['input'];
|
|
@@ -186061,6 +186563,15 @@ export type QueryGetSummaryArgs = {
|
|
|
186061
186563
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
186062
186564
|
responseType?: InputMaybe<ResponseType>;
|
|
186063
186565
|
};
|
|
186566
|
+
export type QueryGlobalApp_ExtensionsByContextAriArgs = {
|
|
186567
|
+
contextAri: Scalars['ID']['input'];
|
|
186568
|
+
};
|
|
186569
|
+
export type QueryGlobalApp_ExtensionsByInstallationIdArgs = {
|
|
186570
|
+
installationId: Scalars['ID']['input'];
|
|
186571
|
+
};
|
|
186572
|
+
export type QueryGlobalApp_IsProductAdminArgs = {
|
|
186573
|
+
contextAri: Scalars['ID']['input'];
|
|
186574
|
+
};
|
|
186064
186575
|
export type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
186065
186576
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186066
186577
|
containerId: Scalars['ID']['input'];
|
|
@@ -202532,6 +203043,10 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
|
202532
203043
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202533
203044
|
id: Scalars['ID']['input'];
|
|
202534
203045
|
};
|
|
203046
|
+
export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
203047
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203048
|
+
incidentId: Scalars['ID']['input'];
|
|
203049
|
+
};
|
|
202535
203050
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
202536
203051
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202537
203052
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
@@ -202797,6 +203312,9 @@ export type QueryLoom_CreateSpaceArgs = {
|
|
|
202797
203312
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
202798
203313
|
siteId: Scalars['ID']['input'];
|
|
202799
203314
|
};
|
|
203315
|
+
export type QueryLoom_CurrentUserVideosArgs = {
|
|
203316
|
+
input: LoomCurrentUserVideosInput;
|
|
203317
|
+
};
|
|
202800
203318
|
export type QueryLoom_FoldersSearchArgs = {
|
|
202801
203319
|
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202802
203320
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -204681,6 +205199,12 @@ export type RadarCreateAiConnectorInput = {
|
|
|
204681
205199
|
provider: RadarAiConnectorProvider;
|
|
204682
205200
|
type: RadarAiConnectorType;
|
|
204683
205201
|
};
|
|
205202
|
+
export type RadarCreateSkillInput = {
|
|
205203
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
205204
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
205205
|
+
name: Scalars['String']['input'];
|
|
205206
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
205207
|
+
};
|
|
204684
205208
|
export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
204685
205209
|
__typename?: 'RadarCustomFieldDefinition';
|
|
204686
205210
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -205263,6 +205787,7 @@ export type RadarSkill = Node & {
|
|
|
205263
205787
|
description?: Maybe<Scalars['String']['output']>;
|
|
205264
205788
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
205265
205789
|
id: Scalars['ID']['output'];
|
|
205790
|
+
level?: Maybe<Scalars['Int']['output']>;
|
|
205266
205791
|
name: Scalars['String']['output'];
|
|
205267
205792
|
parent?: Maybe<RadarSkill>;
|
|
205268
205793
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -205417,6 +205942,15 @@ export type RadarUpdateSkillInput = {
|
|
|
205417
205942
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
205418
205943
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
205419
205944
|
};
|
|
205945
|
+
export type RadarUpsertAiScopedBudgetPoliciesInput = {
|
|
205946
|
+
deletedScopeFieldValues: Array<Scalars['String']['input']>;
|
|
205947
|
+
upserts: Array<RadarUpsertAiScopedBudgetPolicyInput>;
|
|
205948
|
+
};
|
|
205949
|
+
export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
205950
|
+
__typename?: 'RadarUpsertAiScopedBudgetPoliciesPayload';
|
|
205951
|
+
deletedScopeFieldValues: Array<Scalars['String']['output']>;
|
|
205952
|
+
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
205953
|
+
};
|
|
205420
205954
|
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
205421
205955
|
allowanceAmount: Scalars['Int']['input'];
|
|
205422
205956
|
scopeFieldValue: Scalars['String']['input'];
|
|
@@ -228477,9 +229011,16 @@ export type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
|
228477
229011
|
export type SmartsRecommendedUser = {
|
|
228478
229012
|
__typename?: 'SmartsRecommendedUser';
|
|
228479
229013
|
id: Scalars['ID']['output'];
|
|
229014
|
+
linkedThirdPartyUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
228480
229015
|
score?: Maybe<Scalars['Float']['output']>;
|
|
228481
229016
|
user?: Maybe<User>;
|
|
228482
229017
|
};
|
|
229018
|
+
export type SmartsRecommendedUserLinkedThirdPartyUsersArgs = {
|
|
229019
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
229020
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
229021
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
229022
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
229023
|
+
};
|
|
228483
229024
|
export type SmartsThirdPartyContext = {
|
|
228484
229025
|
__typename?: 'SmartsThirdPartyContext';
|
|
228485
229026
|
ari: Scalars['ID']['output'];
|
|
@@ -232401,7 +232942,6 @@ export type Subscription = {
|
|
|
232401
232942
|
sandbox: SandboxSubscription;
|
|
232402
232943
|
signup: SignupSubscriptionApi;
|
|
232403
232944
|
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
232404
|
-
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
232405
232945
|
testing?: Maybe<TestingSubscription>;
|
|
232406
232946
|
trello: TrelloSubscriptionApi;
|
|
232407
232947
|
};
|
|
@@ -232538,9 +233078,6 @@ export type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
|
232538
233078
|
export type SubscriptionSpf_OnPlanUpdateArgs = {
|
|
232539
233079
|
id: Scalars['ID']['input'];
|
|
232540
233080
|
};
|
|
232541
|
-
export type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
232542
|
-
changeRequestId: Scalars['ID']['input'];
|
|
232543
|
-
};
|
|
232544
233081
|
export declare enum SummaryType {
|
|
232545
233082
|
Blogpost = "BLOGPOST",
|
|
232546
233083
|
Page = "PAGE"
|
|
@@ -235033,6 +235570,7 @@ export type TownsquareCreateGoalInput = {
|
|
|
235033
235570
|
name: Scalars['String']['input'];
|
|
235034
235571
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
235035
235572
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
235573
|
+
subGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
235036
235574
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
235037
235575
|
};
|
|
235038
235576
|
export type TownsquareCreateGoalPayload = {
|
|
@@ -236165,6 +236703,7 @@ export type TownsquareGoalsCreateInput = {
|
|
|
236165
236703
|
name: Scalars['String']['input'];
|
|
236166
236704
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
236167
236705
|
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
236706
|
+
subGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
236168
236707
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
236169
236708
|
};
|
|
236170
236709
|
export type TownsquareGoalsCreateLearningInput = {
|
|
@@ -236981,6 +237520,7 @@ export type TownsquareMetricUpdateInput = {
|
|
|
236981
237520
|
export type TownsquareMetricValue = Node & {
|
|
236982
237521
|
__typename?: 'TownsquareMetricValue';
|
|
236983
237522
|
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
237523
|
+
creator?: Maybe<User>;
|
|
236984
237524
|
id: Scalars['ID']['output'];
|
|
236985
237525
|
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
236986
237526
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -238256,6 +238796,17 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
238256
238796
|
success: Scalars['Boolean']['output'];
|
|
238257
238797
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
238258
238798
|
};
|
|
238799
|
+
export type TownsquareProjectsRemoveWatchersInput = {
|
|
238800
|
+
projectId: Scalars['ID']['input'];
|
|
238801
|
+
watcherIds: Array<Scalars['ID']['input']>;
|
|
238802
|
+
};
|
|
238803
|
+
export type TownsquareProjectsRemoveWatchersPayload = {
|
|
238804
|
+
__typename?: 'TownsquareProjectsRemoveWatchersPayload';
|
|
238805
|
+
errors?: Maybe<Array<MutationError>>;
|
|
238806
|
+
project?: Maybe<TownsquareProject>;
|
|
238807
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
238808
|
+
success: Scalars['Boolean']['output'];
|
|
238809
|
+
};
|
|
238259
238810
|
export type TownsquareProjectsSetDefaultAccessLevelInput = {
|
|
238260
238811
|
accessLevel: TownsquareProjectAccessLevel;
|
|
238261
238812
|
containerId: Scalars['ID']['input'];
|
|
@@ -239355,6 +239906,31 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239355
239906
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239356
239907
|
id: Scalars['ID']['output'];
|
|
239357
239908
|
};
|
|
239909
|
+
export type TrelloAgentTask = {
|
|
239910
|
+
__typename?: 'TrelloAgentTask';
|
|
239911
|
+
id: Scalars['ID']['output'];
|
|
239912
|
+
key: Scalars['String']['output'];
|
|
239913
|
+
objectId: Scalars['ID']['output'];
|
|
239914
|
+
status: TrelloAgentTaskStatus;
|
|
239915
|
+
};
|
|
239916
|
+
export declare enum TrelloAgentTaskState {
|
|
239917
|
+
ApprovalRequired = "APPROVAL_REQUIRED",
|
|
239918
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
239919
|
+
Canceled = "CANCELED",
|
|
239920
|
+
Completed = "COMPLETED",
|
|
239921
|
+
Failed = "FAILED",
|
|
239922
|
+
InputRequired = "INPUT_REQUIRED",
|
|
239923
|
+
Rejected = "REJECTED",
|
|
239924
|
+
Submitted = "SUBMITTED",
|
|
239925
|
+
Unspecified = "UNSPECIFIED",
|
|
239926
|
+
Working = "WORKING"
|
|
239927
|
+
}
|
|
239928
|
+
export type TrelloAgentTaskStatus = {
|
|
239929
|
+
__typename?: 'TrelloAgentTaskStatus';
|
|
239930
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
239931
|
+
state: TrelloAgentTaskState;
|
|
239932
|
+
timestamp: Scalars['DateTime']['output'];
|
|
239933
|
+
};
|
|
239358
239934
|
export type TrelloAgenticActivity = {
|
|
239359
239935
|
__typename?: 'TrelloAgenticActivity';
|
|
239360
239936
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241117,6 +241693,18 @@ export type TrelloCopyCardActionDisplayEntities = {
|
|
|
241117
241693
|
list?: Maybe<TrelloActionListEntity>;
|
|
241118
241694
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
241119
241695
|
};
|
|
241696
|
+
export type TrelloCopyCardInput = {
|
|
241697
|
+
cardId: Scalars['ID']['input'];
|
|
241698
|
+
listId?: InputMaybe<Scalars['ID']['input']>;
|
|
241699
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
241700
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
241701
|
+
};
|
|
241702
|
+
export type TrelloCopyCardPayload = Payload & {
|
|
241703
|
+
__typename?: 'TrelloCopyCardPayload';
|
|
241704
|
+
card?: Maybe<TrelloBaseCard>;
|
|
241705
|
+
errors?: Maybe<Array<MutationError>>;
|
|
241706
|
+
success: Scalars['Boolean']['output'];
|
|
241707
|
+
};
|
|
241120
241708
|
export type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
241121
241709
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
241122
241710
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241209,6 +241797,7 @@ export type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
241209
241797
|
boardV2?: Maybe<TrelloBaseBoard>;
|
|
241210
241798
|
errors?: Maybe<Array<MutationError>>;
|
|
241211
241799
|
success: Scalars['Boolean']['output'];
|
|
241800
|
+
task?: Maybe<TrelloAgentTask>;
|
|
241212
241801
|
};
|
|
241213
241802
|
export type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
241214
241803
|
__typename?: 'TrelloCreateCardAction';
|
|
@@ -242871,6 +243460,7 @@ export type TrelloMutationApi = {
|
|
|
242871
243460
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
242872
243461
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
242873
243462
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
243463
|
+
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
242874
243464
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
242875
243465
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
242876
243466
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
@@ -243046,6 +243636,9 @@ export type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
|
243046
243636
|
export type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
243047
243637
|
input: TrelloConvertTemplateToBoardInput;
|
|
243048
243638
|
};
|
|
243639
|
+
export type TrelloMutationApiCopyCardArgs = {
|
|
243640
|
+
input: TrelloCopyCardInput;
|
|
243641
|
+
};
|
|
243049
243642
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
243050
243643
|
input: TrelloCreateApplicationInput;
|
|
243051
243644
|
};
|