@forge/cli-shared 9.2.0-next.4 → 9.2.0-next.5-experimental-a1600ff
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 +24 -0
- package/out/apps/create-an-app.d.ts +4 -4
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +8 -2
- package/out/apps/register-app.d.ts +2 -1
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +859 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +114 -46
- package/out/ui/text.d.ts +5 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +9 -5
- package/package.json +2 -2
|
@@ -517,6 +517,7 @@ export type AiOpsIncidentSuggestionInProgress = {
|
|
|
517
517
|
};
|
|
518
518
|
export type AiOpsIncidentSuggestionResponse = {
|
|
519
519
|
__typename?: 'AIOpsIncidentSuggestionResponse';
|
|
520
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
520
521
|
incidentSummaryDescription?: Maybe<Scalars['String']['output']>;
|
|
521
522
|
incidentSummaryTitle?: Maybe<Scalars['String']['output']>;
|
|
522
523
|
probableRCADescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -1763,6 +1764,15 @@ export type AvpAnalyticsVisualizationConfigMetadataInput = {
|
|
|
1763
1764
|
key: Scalars['String']['input'];
|
|
1764
1765
|
value: Scalars['String']['input'];
|
|
1765
1766
|
};
|
|
1767
|
+
export type AvpBusinessHours = {
|
|
1768
|
+
__typename?: 'AVPBusinessHours';
|
|
1769
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
1770
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
1771
|
+
};
|
|
1772
|
+
export type AvpBusinessHoursInput = {
|
|
1773
|
+
end?: InputMaybe<Scalars['String']['input']>;
|
|
1774
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
1775
|
+
};
|
|
1766
1776
|
export declare enum AvpCanvasRowHeight {
|
|
1767
1777
|
Large = "large",
|
|
1768
1778
|
Medium = "medium",
|
|
@@ -2261,6 +2271,7 @@ export type AvpDashboardSettings = {
|
|
|
2261
2271
|
autoRefreshInterval?: Maybe<Scalars['Int']['output']>;
|
|
2262
2272
|
cacheDuration?: Maybe<Scalars['Int']['output']>;
|
|
2263
2273
|
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
2274
|
+
productSettings?: Maybe<AvpProductSettings>;
|
|
2264
2275
|
refreshMethod?: Maybe<AvpRefreshMethod>;
|
|
2265
2276
|
subscriptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2266
2277
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
@@ -2271,6 +2282,7 @@ export type AvpDashboardSettingsInput = {
|
|
|
2271
2282
|
autoApplyVars?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2272
2283
|
autoRefreshInterval?: InputMaybe<Scalars['Int']['input']>;
|
|
2273
2284
|
cacheDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
2285
|
+
productSettings?: InputMaybe<AvpProductSettingsInput>;
|
|
2274
2286
|
refreshMethod?: InputMaybe<AvpRefreshMethod>;
|
|
2275
2287
|
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2276
2288
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2831,6 +2843,22 @@ export declare enum AvpPlatformFilterVisibility {
|
|
|
2831
2843
|
None = "NONE",
|
|
2832
2844
|
ViewAndEdit = "VIEW_AND_EDIT"
|
|
2833
2845
|
}
|
|
2846
|
+
export type AvpProductConfig = {
|
|
2847
|
+
__typename?: 'AVPProductConfig';
|
|
2848
|
+
businessDays?: Maybe<Array<Scalars['String']['output']>>;
|
|
2849
|
+
businessHours?: Maybe<AvpBusinessHours>;
|
|
2850
|
+
};
|
|
2851
|
+
export type AvpProductConfigInput = {
|
|
2852
|
+
businessDays?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2853
|
+
businessHours?: InputMaybe<AvpBusinessHoursInput>;
|
|
2854
|
+
};
|
|
2855
|
+
export type AvpProductSettings = {
|
|
2856
|
+
__typename?: 'AVPProductSettings';
|
|
2857
|
+
opsgenie?: Maybe<AvpProductConfig>;
|
|
2858
|
+
};
|
|
2859
|
+
export type AvpProductSettingsInput = {
|
|
2860
|
+
opsgenie?: InputMaybe<AvpProductConfigInput>;
|
|
2861
|
+
};
|
|
2834
2862
|
export type AvpProductWorkspaceMapEntry = {
|
|
2835
2863
|
product: Scalars['String']['input'];
|
|
2836
2864
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -5128,6 +5156,7 @@ export type AdminSearchGroupInput = {
|
|
|
5128
5156
|
export type AdminSearchUserInput = {
|
|
5129
5157
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5130
5158
|
accountStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5159
|
+
accountType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5131
5160
|
claimStatus?: InputMaybe<Scalars['String']['input']>;
|
|
5132
5161
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5133
5162
|
emailDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -5499,6 +5528,7 @@ export type AdminUsageInfo = {
|
|
|
5499
5528
|
export type AdminUser = {
|
|
5500
5529
|
__typename?: 'AdminUser';
|
|
5501
5530
|
accountStatus: Scalars['String']['output'];
|
|
5531
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
5502
5532
|
addedAt?: Maybe<Scalars['String']['output']>;
|
|
5503
5533
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
5504
5534
|
claimStatus: Scalars['String']['output'];
|
|
@@ -6141,6 +6171,7 @@ export type AgentStudioAssistantConversation = {
|
|
|
6141
6171
|
hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
|
|
6142
6172
|
hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
|
|
6143
6173
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6174
|
+
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
6144
6175
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
6145
6176
|
lifecycleStatus?: Maybe<AgentStudioConversationLifecycleStatus>;
|
|
6146
6177
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -6863,6 +6894,7 @@ export type AgentStudioLiveConversationFilterInput = {
|
|
|
6863
6894
|
annotationLabels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6864
6895
|
conversationReviewStatus?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6865
6896
|
customerFeedback?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6897
|
+
interactionChannels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6866
6898
|
llmJudgedResolution?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6867
6899
|
messageReviewStatus?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6868
6900
|
updatedAfter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8561,12 +8593,24 @@ export type AgentWorkspaceServiceConnection = {
|
|
|
8561
8593
|
errors?: Maybe<Array<QueryError>>;
|
|
8562
8594
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
|
|
8563
8595
|
pageInfo: PageInfo;
|
|
8596
|
+
totalCount: Scalars['Int']['output'];
|
|
8564
8597
|
};
|
|
8565
8598
|
export type AgentWorkspaceServiceEdge = {
|
|
8566
8599
|
__typename?: 'AgentWorkspaceServiceEdge';
|
|
8567
8600
|
cursor: Scalars['String']['output'];
|
|
8568
8601
|
node: AgentWorkspaceService;
|
|
8569
8602
|
};
|
|
8603
|
+
export type AgentWorkspaceServiceOptionsPage = {
|
|
8604
|
+
__typename?: 'AgentWorkspaceServiceOptionsPage';
|
|
8605
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
8606
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
8607
|
+
limit: Scalars['Int']['output'];
|
|
8608
|
+
offset: Scalars['Int']['output'];
|
|
8609
|
+
page: Scalars['Int']['output'];
|
|
8610
|
+
services: Array<AgentWorkspaceService>;
|
|
8611
|
+
totalCount: Scalars['Int']['output'];
|
|
8612
|
+
totalPages: Scalars['Int']['output'];
|
|
8613
|
+
};
|
|
8570
8614
|
export declare enum AgentWorkspaceServiceProcessingStatus {
|
|
8571
8615
|
Enriched = "ENRICHED",
|
|
8572
8616
|
Enriching = "ENRICHING",
|
|
@@ -8613,6 +8657,12 @@ export type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
|
8613
8657
|
projectId: Scalars['ID']['input'];
|
|
8614
8658
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8615
8659
|
};
|
|
8660
|
+
export type AgentWorkspaceSetShiftReminderConfigInput = {
|
|
8661
|
+
cloudId: Scalars['ID']['input'];
|
|
8662
|
+
enabled: Scalars['Boolean']['input'];
|
|
8663
|
+
projectId: Scalars['ID']['input'];
|
|
8664
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8665
|
+
};
|
|
8616
8666
|
export type AgentWorkspaceSetTeamCapacitiesInput = {
|
|
8617
8667
|
cloudId: Scalars['ID']['input'];
|
|
8618
8668
|
projectKey: Scalars['String']['input'];
|
|
@@ -8664,6 +8714,25 @@ export type AgentWorkspaceShiftEditBoundsInput = {
|
|
|
8664
8714
|
projectARI: Scalars['ID']['input'];
|
|
8665
8715
|
scheduleId: Scalars['ID']['input'];
|
|
8666
8716
|
};
|
|
8717
|
+
export type AgentWorkspaceShiftReminderConfig = {
|
|
8718
|
+
__typename?: 'AgentWorkspaceShiftReminderConfig';
|
|
8719
|
+
enabled: Scalars['Boolean']['output'];
|
|
8720
|
+
projectId: Scalars['ID']['output'];
|
|
8721
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8722
|
+
updatedBy?: Maybe<Scalars['ID']['output']>;
|
|
8723
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8724
|
+
};
|
|
8725
|
+
export type AgentWorkspaceShiftReminderConfigPayload = {
|
|
8726
|
+
__typename?: 'AgentWorkspaceShiftReminderConfigPayload';
|
|
8727
|
+
errors: Array<AgentWorkspaceMutationError>;
|
|
8728
|
+
shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
8729
|
+
success: Scalars['Boolean']['output'];
|
|
8730
|
+
};
|
|
8731
|
+
export declare enum AgentWorkspaceShiftReminderWindow {
|
|
8732
|
+
Minutes_15 = "MINUTES_15",
|
|
8733
|
+
Minutes_30 = "MINUTES_30",
|
|
8734
|
+
Minutes_60 = "MINUTES_60"
|
|
8735
|
+
}
|
|
8667
8736
|
export type AgentWorkspaceShiftsAppliedFilters = {
|
|
8668
8737
|
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
8669
8738
|
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -14865,6 +14934,11 @@ export declare enum AssetsVerticalBundleType {
|
|
|
14865
14934
|
Ham = "HAM",
|
|
14866
14935
|
Osc = "OSC"
|
|
14867
14936
|
}
|
|
14937
|
+
export type AssetsVerticalCheckPermissionsResult = AssetsVerticalCheckPermissionsSuccess | QueryError;
|
|
14938
|
+
export type AssetsVerticalCheckPermissionsSuccess = {
|
|
14939
|
+
__typename?: 'AssetsVerticalCheckPermissionsSuccess';
|
|
14940
|
+
results: Array<AssetsVerticalPermissionCheckResult>;
|
|
14941
|
+
};
|
|
14868
14942
|
export type AssetsVerticalCountByStatus = {
|
|
14869
14943
|
__typename?: 'AssetsVerticalCountByStatus';
|
|
14870
14944
|
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
@@ -15503,6 +15577,18 @@ export type AssetsVerticalObjectsSuccess = {
|
|
|
15503
15577
|
pageInfo?: Maybe<PageInfo>;
|
|
15504
15578
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15505
15579
|
};
|
|
15580
|
+
export type AssetsVerticalPermissionCheckInput = {
|
|
15581
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15582
|
+
permissionId: Scalars['String']['input'];
|
|
15583
|
+
resourceId: Scalars['ID']['input'];
|
|
15584
|
+
};
|
|
15585
|
+
export type AssetsVerticalPermissionCheckResult = {
|
|
15586
|
+
__typename?: 'AssetsVerticalPermissionCheckResult';
|
|
15587
|
+
dontRequirePrincipalInSite: Scalars['Boolean']['output'];
|
|
15588
|
+
permissionId: Scalars['String']['output'];
|
|
15589
|
+
permitted: Scalars['Boolean']['output'];
|
|
15590
|
+
resourceId: Scalars['ID']['output'];
|
|
15591
|
+
};
|
|
15506
15592
|
export type AssetsVerticalPinInsightPayload = Payload & {
|
|
15507
15593
|
__typename?: 'AssetsVerticalPinInsightPayload';
|
|
15508
15594
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15651,6 +15737,26 @@ export type AssetsVerticalStockroomObjectsInput = {
|
|
|
15651
15737
|
workspaceId: Scalars['ID']['input'];
|
|
15652
15738
|
};
|
|
15653
15739
|
export type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
15740
|
+
export type AssetsVerticalTenantContext = {
|
|
15741
|
+
__typename?: 'AssetsVerticalTenantContext';
|
|
15742
|
+
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
15743
|
+
};
|
|
15744
|
+
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
15745
|
+
NotFound = "NOT_FOUND",
|
|
15746
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
15747
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
15748
|
+
}
|
|
15749
|
+
export type AssetsVerticalTenantContextQueryErrorExtension = QueryErrorExtension & {
|
|
15750
|
+
__typename?: 'AssetsVerticalTenantContextQueryErrorExtension';
|
|
15751
|
+
code?: Maybe<AssetsVerticalTenantContextQueryErrorCode>;
|
|
15752
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
15753
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15754
|
+
};
|
|
15755
|
+
export type AssetsVerticalTenantContextResult = AssetsVerticalTenantContextSuccess | QueryError;
|
|
15756
|
+
export type AssetsVerticalTenantContextSuccess = {
|
|
15757
|
+
__typename?: 'AssetsVerticalTenantContextSuccess';
|
|
15758
|
+
tenantContext: AssetsVerticalTenantContext;
|
|
15759
|
+
};
|
|
15654
15760
|
export type AssetsVerticalUpdateCustomInsightInput = {
|
|
15655
15761
|
category: AssetsVerticalInsightCategory;
|
|
15656
15762
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32291,6 +32397,7 @@ export type ConfluenceForgeExtension = {
|
|
|
32291
32397
|
oauthClientId: Scalars['ID']['output'];
|
|
32292
32398
|
principal?: Maybe<ConfluenceExtensionPrincipal>;
|
|
32293
32399
|
properties: Array<KeyValueHierarchyMap>;
|
|
32400
|
+
sandboxPolicies?: Maybe<Array<Scalars['String']['output']>>;
|
|
32294
32401
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
32295
32402
|
type: Scalars['String']['output'];
|
|
32296
32403
|
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
@@ -38291,6 +38398,7 @@ export type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
|
|
|
38291
38398
|
artifact?: Maybe<ConvoAiMessageArtifact>;
|
|
38292
38399
|
audio?: Maybe<Scalars['String']['output']>;
|
|
38293
38400
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38401
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38294
38402
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
38295
38403
|
role: ConvoAiMessageAuthorRole;
|
|
38296
38404
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38335,6 +38443,7 @@ export type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
|
38335
38443
|
export type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
38336
38444
|
__typename?: 'ConvoAiErrorMessage';
|
|
38337
38445
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38446
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38338
38447
|
messageTemplate: ConvoAiErrorMessageTemplate;
|
|
38339
38448
|
statusCode: Scalars['Int']['output'];
|
|
38340
38449
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38695,6 +38804,7 @@ export type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
|
38695
38804
|
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
38696
38805
|
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
38697
38806
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38807
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38698
38808
|
messageTemplate: Scalars['String']['output'];
|
|
38699
38809
|
timeCreated: Scalars['DateTime']['output'];
|
|
38700
38810
|
};
|
|
@@ -118519,10 +118629,9 @@ export type HydratingJiraIssueEdge = {
|
|
|
118519
118629
|
};
|
|
118520
118630
|
export type HypothesisIndicator = {
|
|
118521
118631
|
__typename?: 'HypothesisIndicator';
|
|
118522
|
-
hypothesisId?: Maybe<Scalars['String']['output']>;
|
|
118523
118632
|
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
118524
118633
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
118525
|
-
|
|
118634
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
118526
118635
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
118527
118636
|
};
|
|
118528
118637
|
export type Icon = {
|
|
@@ -122386,6 +122495,7 @@ export type JiraBoardViewCellContextField = {
|
|
|
122386
122495
|
__typename?: 'JiraBoardViewCellContextField';
|
|
122387
122496
|
field?: Maybe<JiraField>;
|
|
122388
122497
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
122498
|
+
fieldValues?: Maybe<JiraBoardViewContextFieldValue>;
|
|
122389
122499
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
122390
122500
|
};
|
|
122391
122501
|
export type JiraBoardViewCellContextFieldIssueTypesArgs = {
|
|
@@ -122434,6 +122544,7 @@ export type JiraBoardViewColumnLayoutCellsArgs = {
|
|
|
122434
122544
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122435
122545
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
122436
122546
|
};
|
|
122547
|
+
export type JiraBoardViewContextFieldValue = JiraBoardViewMultiFieldValue | JiraBoardViewSingleFieldValue;
|
|
122437
122548
|
export type JiraBoardViewCustomSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
122438
122549
|
__typename?: 'JiraBoardViewCustomSwimlane';
|
|
122439
122550
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
@@ -122526,6 +122637,10 @@ export type JiraBoardViewIssuePositions = {
|
|
|
122526
122637
|
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
122527
122638
|
};
|
|
122528
122639
|
export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
122640
|
+
export type JiraBoardViewMultiFieldValue = {
|
|
122641
|
+
__typename?: 'JiraBoardViewMultiFieldValue';
|
|
122642
|
+
values?: Maybe<Array<JiraJqlFieldValue>>;
|
|
122643
|
+
};
|
|
122529
122644
|
export type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
122530
122645
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
122531
122646
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122578,6 +122693,10 @@ export type JiraBoardViewSettingsSwimlaneCollapsedEdge = {
|
|
|
122578
122693
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
122579
122694
|
node?: Maybe<JiraBoardViewSettingsSwimlaneCollapsed>;
|
|
122580
122695
|
};
|
|
122696
|
+
export type JiraBoardViewSingleFieldValue = {
|
|
122697
|
+
__typename?: 'JiraBoardViewSingleFieldValue';
|
|
122698
|
+
value?: Maybe<JiraJqlFieldValue>;
|
|
122699
|
+
};
|
|
122581
122700
|
export type JiraBoardViewStatus = {
|
|
122582
122701
|
__typename?: 'JiraBoardViewStatus';
|
|
122583
122702
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -136813,6 +136932,7 @@ export type JiraProject = Node & {
|
|
|
136813
136932
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
136814
136933
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
136815
136934
|
name: Scalars['String']['output'];
|
|
136935
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
136816
136936
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
136817
136937
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
136818
136938
|
optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136983,6 +137103,13 @@ export type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
|
136983
137103
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
136984
137104
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136985
137105
|
};
|
|
137106
|
+
export type JiraProjectNavigationItemsArgs = {
|
|
137107
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137108
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
137109
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137110
|
+
itemTypeKey?: InputMaybe<JiraNavigationItemTypeKey>;
|
|
137111
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137112
|
+
};
|
|
136986
137113
|
export type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
136987
137114
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
136988
137115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -138114,6 +138241,7 @@ export type JiraQuery = {
|
|
|
138114
138241
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
138115
138242
|
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
138116
138243
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138244
|
+
hasJsmAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
138117
138245
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138118
138246
|
hasSystemConfluenceApplicationLink?: Maybe<Scalars['Boolean']['output']>;
|
|
138119
138247
|
hipaaCompliance?: Maybe<JiraHipaaComplianceResponse>;
|
|
@@ -138179,6 +138307,7 @@ export type JiraQuery = {
|
|
|
138179
138307
|
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
138180
138308
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
138181
138309
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
138310
|
+
jira_recommendedAgentsV2?: Maybe<JiraActorConnection>;
|
|
138182
138311
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
138183
138312
|
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
138184
138313
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -138780,6 +138909,9 @@ export type JiraQueryHasGlobalPermissionArgs = {
|
|
|
138780
138909
|
cloudId: Scalars['ID']['input'];
|
|
138781
138910
|
key: JiraGlobalPermissionType;
|
|
138782
138911
|
};
|
|
138912
|
+
export type JiraQueryHasJsmAdminAccessArgs = {
|
|
138913
|
+
cloudId: Scalars['ID']['input'];
|
|
138914
|
+
};
|
|
138783
138915
|
export type JiraQueryHasProjectPermissionArgs = {
|
|
138784
138916
|
cloudId: Scalars['ID']['input'];
|
|
138785
138917
|
permission: JiraProjectPermissionType;
|
|
@@ -139093,6 +139225,15 @@ export type JiraQueryJira_RecommendedAgentsArgs = {
|
|
|
139093
139225
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
139094
139226
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139095
139227
|
};
|
|
139228
|
+
export type JiraQueryJira_RecommendedAgentsV2Args = {
|
|
139229
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139230
|
+
cloudId: Scalars['ID']['input'];
|
|
139231
|
+
contextAri: Scalars['ID']['input'];
|
|
139232
|
+
contextSurface?: InputMaybe<Scalars['String']['input']>;
|
|
139233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139234
|
+
includeSemanticallyAvailable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139235
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139236
|
+
};
|
|
139096
139237
|
export type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
139097
139238
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139098
139239
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141036,6 +141177,7 @@ export type JiraRovoEnablementStatus = {
|
|
|
141036
141177
|
export declare enum JiraRovoWithAiDisabledReason {
|
|
141037
141178
|
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
141038
141179
|
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
141180
|
+
NoWritePermsForRovo = "NO_WRITE_PERMS_FOR_ROVO",
|
|
141039
141181
|
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
141040
141182
|
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
141041
141183
|
}
|
|
@@ -158763,6 +158905,343 @@ export type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
|
158763
158905
|
errors?: Maybe<Array<MutationError>>;
|
|
158764
158906
|
success: Scalars['Boolean']['output'];
|
|
158765
158907
|
};
|
|
158908
|
+
export type MercuryAsk = Node & {
|
|
158909
|
+
__typename?: 'MercuryAsk';
|
|
158910
|
+
activities?: Maybe<MercuryAskActivityConnection>;
|
|
158911
|
+
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
158912
|
+
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158913
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158914
|
+
createdBy?: Maybe<User>;
|
|
158915
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
158916
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
158917
|
+
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158918
|
+
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158919
|
+
id: Scalars['ID']['output'];
|
|
158920
|
+
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158921
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
158922
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
158923
|
+
links?: Maybe<MercuryAskLinkConnection>;
|
|
158924
|
+
name: Scalars['String']['output'];
|
|
158925
|
+
owner?: Maybe<User>;
|
|
158926
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
158927
|
+
priority: MercuryAskPriority;
|
|
158928
|
+
proposedBy?: Maybe<User>;
|
|
158929
|
+
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
158930
|
+
receivingTeam?: Maybe<TeamV2>;
|
|
158931
|
+
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
158932
|
+
status: MercuryAskStatus;
|
|
158933
|
+
submitter?: Maybe<User>;
|
|
158934
|
+
submitterId: Scalars['String']['output'];
|
|
158935
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
158936
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
158937
|
+
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158938
|
+
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158939
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158940
|
+
updatedBy?: Maybe<User>;
|
|
158941
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
158942
|
+
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158943
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
158944
|
+
};
|
|
158945
|
+
export type MercuryAskActivitiesArgs = {
|
|
158946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158947
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158948
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158949
|
+
};
|
|
158950
|
+
export type MercuryAskCommentsArgs = {
|
|
158951
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158952
|
+
cloudId: Scalars['ID']['input'];
|
|
158953
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158954
|
+
};
|
|
158955
|
+
export type MercuryAskConnectedWorkArgs = {
|
|
158956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158958
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158959
|
+
};
|
|
158960
|
+
export type MercuryAskFocusAreasArgs = {
|
|
158961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158962
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158963
|
+
};
|
|
158964
|
+
export type MercuryAskGoalsArgs = {
|
|
158965
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158966
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158967
|
+
};
|
|
158968
|
+
export type MercuryAskLinksArgs = {
|
|
158969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158971
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158972
|
+
};
|
|
158973
|
+
export type MercuryAskUpdatesArgs = {
|
|
158974
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158975
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158976
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158977
|
+
};
|
|
158978
|
+
export type MercuryAskActivity = {
|
|
158979
|
+
__typename?: 'MercuryAskActivity';
|
|
158980
|
+
askActivityType: MercuryAskActivityType;
|
|
158981
|
+
askId: Scalars['String']['output'];
|
|
158982
|
+
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158983
|
+
askUpdatedByUser?: Maybe<User>;
|
|
158984
|
+
askUpdatedByUserId: Scalars['String']['output'];
|
|
158985
|
+
id: Scalars['ID']['output'];
|
|
158986
|
+
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158987
|
+
};
|
|
158988
|
+
export declare enum MercuryAskActivityAttribute {
|
|
158989
|
+
ConnectedWork = "CONNECTED_WORK",
|
|
158990
|
+
Description = "DESCRIPTION",
|
|
158991
|
+
ImpactedWork = "IMPACTED_WORK",
|
|
158992
|
+
Justification = "JUSTIFICATION",
|
|
158993
|
+
Link = "LINK",
|
|
158994
|
+
Name = "NAME",
|
|
158995
|
+
Owner = "OWNER",
|
|
158996
|
+
Priority = "PRIORITY",
|
|
158997
|
+
ProposedDate = "PROPOSED_DATE",
|
|
158998
|
+
ReceivingTeam = "RECEIVING_TEAM",
|
|
158999
|
+
Status = "STATUS",
|
|
159000
|
+
Submitter = "SUBMITTER",
|
|
159001
|
+
SubmittingTeam = "SUBMITTING_TEAM",
|
|
159002
|
+
TargetDate = "TARGET_DATE"
|
|
159003
|
+
}
|
|
159004
|
+
export type MercuryAskActivityConnection = {
|
|
159005
|
+
__typename?: 'MercuryAskActivityConnection';
|
|
159006
|
+
edges?: Maybe<Array<Maybe<MercuryAskActivityEdge>>>;
|
|
159007
|
+
pageInfo: PageInfo;
|
|
159008
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159009
|
+
};
|
|
159010
|
+
export type MercuryAskActivityEdge = {
|
|
159011
|
+
__typename?: 'MercuryAskActivityEdge';
|
|
159012
|
+
cursor: Scalars['String']['output'];
|
|
159013
|
+
node?: Maybe<MercuryAskActivityResult>;
|
|
159014
|
+
};
|
|
159015
|
+
export type MercuryAskActivityLink = {
|
|
159016
|
+
__typename?: 'MercuryAskActivityLink';
|
|
159017
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
159018
|
+
linkUrl?: Maybe<Scalars['String']['output']>;
|
|
159019
|
+
};
|
|
159020
|
+
export type MercuryAskActivityProposedDate = {
|
|
159021
|
+
__typename?: 'MercuryAskActivityProposedDate';
|
|
159022
|
+
proposedDate?: Maybe<Scalars['String']['output']>;
|
|
159023
|
+
proposedDateType?: Maybe<MercuryAskTargetDateType>;
|
|
159024
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
159025
|
+
targetDateType?: Maybe<MercuryAskTargetDateType>;
|
|
159026
|
+
};
|
|
159027
|
+
export type MercuryAskActivityResult = MercuryAskActivity | QueryError;
|
|
159028
|
+
export declare enum MercuryAskActivityType {
|
|
159029
|
+
Created = "CREATED",
|
|
159030
|
+
Updated = "UPDATED"
|
|
159031
|
+
}
|
|
159032
|
+
export type MercuryAskActivityUpdatedConnectedWork = MercuryAskActivityUpdatedValue & {
|
|
159033
|
+
__typename?: 'MercuryAskActivityUpdatedConnectedWork';
|
|
159034
|
+
attribute: MercuryAskActivityAttribute;
|
|
159035
|
+
newConnectedWork?: Maybe<Array<Maybe<MercuryAskConnectedWork>>>;
|
|
159036
|
+
newValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159037
|
+
oldConnectedWork?: Maybe<Array<Maybe<MercuryAskConnectedWork>>>;
|
|
159038
|
+
oldValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159039
|
+
};
|
|
159040
|
+
export type MercuryAskActivityUpdatedDocument = MercuryAskActivityUpdatedValue & {
|
|
159041
|
+
__typename?: 'MercuryAskActivityUpdatedDocument';
|
|
159042
|
+
attribute: MercuryAskActivityAttribute;
|
|
159043
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159044
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159045
|
+
};
|
|
159046
|
+
export type MercuryAskActivityUpdatedImpactedWork = MercuryAskActivityUpdatedValue & {
|
|
159047
|
+
__typename?: 'MercuryAskActivityUpdatedImpactedWork';
|
|
159048
|
+
attribute: MercuryAskActivityAttribute;
|
|
159049
|
+
newImpactedWork?: Maybe<MercuryImpactedWork>;
|
|
159050
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159051
|
+
oldImpactedWork?: Maybe<MercuryImpactedWork>;
|
|
159052
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159053
|
+
};
|
|
159054
|
+
export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
159055
|
+
__typename?: 'MercuryAskActivityUpdatedLink';
|
|
159056
|
+
attribute: MercuryAskActivityAttribute;
|
|
159057
|
+
newValue?: Maybe<MercuryAskActivityLink>;
|
|
159058
|
+
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
159059
|
+
};
|
|
159060
|
+
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
159061
|
+
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
159062
|
+
attribute: MercuryAskActivityAttribute;
|
|
159063
|
+
newValue?: Maybe<MercuryAskPriority>;
|
|
159064
|
+
oldValue?: Maybe<MercuryAskPriority>;
|
|
159065
|
+
};
|
|
159066
|
+
export type MercuryAskActivityUpdatedProposedDate = MercuryAskActivityUpdatedValue & {
|
|
159067
|
+
__typename?: 'MercuryAskActivityUpdatedProposedDate';
|
|
159068
|
+
attribute: MercuryAskActivityAttribute;
|
|
159069
|
+
newValue?: Maybe<MercuryAskActivityProposedDate>;
|
|
159070
|
+
oldValue?: Maybe<MercuryAskActivityProposedDate>;
|
|
159071
|
+
};
|
|
159072
|
+
export type MercuryAskActivityUpdatedStatus = MercuryAskActivityUpdatedValue & {
|
|
159073
|
+
__typename?: 'MercuryAskActivityUpdatedStatus';
|
|
159074
|
+
attribute: MercuryAskActivityAttribute;
|
|
159075
|
+
newValue?: Maybe<MercuryAskStatus>;
|
|
159076
|
+
oldValue?: Maybe<MercuryAskStatus>;
|
|
159077
|
+
};
|
|
159078
|
+
export type MercuryAskActivityUpdatedString = MercuryAskActivityUpdatedValue & {
|
|
159079
|
+
__typename?: 'MercuryAskActivityUpdatedString';
|
|
159080
|
+
attribute: MercuryAskActivityAttribute;
|
|
159081
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159082
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159083
|
+
};
|
|
159084
|
+
export type MercuryAskActivityUpdatedTargetDate = MercuryAskActivityUpdatedValue & {
|
|
159085
|
+
__typename?: 'MercuryAskActivityUpdatedTargetDate';
|
|
159086
|
+
attribute: MercuryAskActivityAttribute;
|
|
159087
|
+
newValue?: Maybe<MercuryAskTargetDate>;
|
|
159088
|
+
oldValue?: Maybe<MercuryAskTargetDate>;
|
|
159089
|
+
};
|
|
159090
|
+
export type MercuryAskActivityUpdatedTeam = MercuryAskActivityUpdatedValue & {
|
|
159091
|
+
__typename?: 'MercuryAskActivityUpdatedTeam';
|
|
159092
|
+
attribute: MercuryAskActivityAttribute;
|
|
159093
|
+
newTeam?: Maybe<TeamV2>;
|
|
159094
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159095
|
+
oldTeam?: Maybe<TeamV2>;
|
|
159096
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159097
|
+
};
|
|
159098
|
+
export type MercuryAskActivityUpdatedUser = MercuryAskActivityUpdatedValue & {
|
|
159099
|
+
__typename?: 'MercuryAskActivityUpdatedUser';
|
|
159100
|
+
attribute: MercuryAskActivityAttribute;
|
|
159101
|
+
newUser?: Maybe<User>;
|
|
159102
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159103
|
+
oldUser?: Maybe<User>;
|
|
159104
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159105
|
+
};
|
|
159106
|
+
export type MercuryAskActivityUpdatedValue = {
|
|
159107
|
+
attribute: MercuryAskActivityAttribute;
|
|
159108
|
+
};
|
|
159109
|
+
export type MercuryAskConnectedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
159110
|
+
export type MercuryAskConnectedWorkConnection = {
|
|
159111
|
+
__typename?: 'MercuryAskConnectedWorkConnection';
|
|
159112
|
+
edges?: Maybe<Array<Maybe<MercuryAskConnectedWorkEdge>>>;
|
|
159113
|
+
pageInfo: PageInfo;
|
|
159114
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159115
|
+
};
|
|
159116
|
+
export type MercuryAskConnectedWorkEdge = {
|
|
159117
|
+
__typename?: 'MercuryAskConnectedWorkEdge';
|
|
159118
|
+
cursor: Scalars['String']['output'];
|
|
159119
|
+
node?: Maybe<MercuryAskConnectedWork>;
|
|
159120
|
+
};
|
|
159121
|
+
export type MercuryAskConnectedWorkInput = {
|
|
159122
|
+
connectedWorkIds: Array<Scalars['String']['input']>;
|
|
159123
|
+
id: Scalars['ID']['input'];
|
|
159124
|
+
};
|
|
159125
|
+
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
159126
|
+
__typename?: 'MercuryAskConnectedWorkPayload';
|
|
159127
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159128
|
+
ids: Array<Scalars['ID']['output']>;
|
|
159129
|
+
success: Scalars['Boolean']['output'];
|
|
159130
|
+
};
|
|
159131
|
+
export type MercuryAskConnection = {
|
|
159132
|
+
__typename?: 'MercuryAskConnection';
|
|
159133
|
+
edges?: Maybe<Array<Maybe<MercuryAskEdge>>>;
|
|
159134
|
+
pageInfo: PageInfo;
|
|
159135
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159136
|
+
};
|
|
159137
|
+
export type MercuryAskEdge = {
|
|
159138
|
+
__typename?: 'MercuryAskEdge';
|
|
159139
|
+
cursor: Scalars['String']['output'];
|
|
159140
|
+
node?: Maybe<MercuryAskResult>;
|
|
159141
|
+
};
|
|
159142
|
+
export type MercuryAskLink = Node & {
|
|
159143
|
+
__typename?: 'MercuryAskLink';
|
|
159144
|
+
askId: Scalars['String']['output'];
|
|
159145
|
+
attachedByUser?: Maybe<User>;
|
|
159146
|
+
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
159147
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159148
|
+
id: Scalars['ID']['output'];
|
|
159149
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
159150
|
+
url: Scalars['URL']['output'];
|
|
159151
|
+
};
|
|
159152
|
+
export type MercuryAskLinkConnection = {
|
|
159153
|
+
__typename?: 'MercuryAskLinkConnection';
|
|
159154
|
+
edges?: Maybe<Array<Maybe<MercuryAskLinkEdge>>>;
|
|
159155
|
+
pageInfo: PageInfo;
|
|
159156
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159157
|
+
};
|
|
159158
|
+
export type MercuryAskLinkEdge = {
|
|
159159
|
+
__typename?: 'MercuryAskLinkEdge';
|
|
159160
|
+
cursor: Scalars['String']['output'];
|
|
159161
|
+
node?: Maybe<MercuryAskLinkResult>;
|
|
159162
|
+
};
|
|
159163
|
+
export type MercuryAskLinkResult = MercuryAskLink | QueryError;
|
|
159164
|
+
export declare enum MercuryAskPriority {
|
|
159165
|
+
Critical = "CRITICAL",
|
|
159166
|
+
High = "HIGH",
|
|
159167
|
+
Highest = "HIGHEST",
|
|
159168
|
+
Low = "LOW",
|
|
159169
|
+
Medium = "MEDIUM"
|
|
159170
|
+
}
|
|
159171
|
+
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
159172
|
+
export declare enum MercuryAskStatus {
|
|
159173
|
+
Accepted = "ACCEPTED",
|
|
159174
|
+
Canceled = "CANCELED",
|
|
159175
|
+
Deferred = "DEFERRED",
|
|
159176
|
+
Draft = "DRAFT",
|
|
159177
|
+
InReview = "IN_REVIEW",
|
|
159178
|
+
Resolved = "RESOLVED",
|
|
159179
|
+
Revising = "REVISING",
|
|
159180
|
+
Submitted = "SUBMITTED"
|
|
159181
|
+
}
|
|
159182
|
+
export type MercuryAskStatusUpdate = {
|
|
159183
|
+
__typename?: 'MercuryAskStatusUpdate';
|
|
159184
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159185
|
+
createdBy?: Maybe<User>;
|
|
159186
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
159187
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
159188
|
+
id: Scalars['ID']['output'];
|
|
159189
|
+
newProposedBy?: Maybe<User>;
|
|
159190
|
+
newProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159191
|
+
newStatus?: Maybe<MercuryAskStatus>;
|
|
159192
|
+
newTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159193
|
+
oldProposedBy?: Maybe<User>;
|
|
159194
|
+
oldProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159195
|
+
oldStatus?: Maybe<MercuryAskStatus>;
|
|
159196
|
+
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159197
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159198
|
+
updatedBy?: Maybe<User>;
|
|
159199
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
159200
|
+
};
|
|
159201
|
+
export type MercuryAskStatusUpdateConnection = {
|
|
159202
|
+
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
159203
|
+
edges?: Maybe<Array<Maybe<MercuryAskStatusUpdateEdge>>>;
|
|
159204
|
+
pageInfo: PageInfo;
|
|
159205
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159206
|
+
};
|
|
159207
|
+
export type MercuryAskStatusUpdateDescriptionInput = {
|
|
159208
|
+
description: Scalars['String']['input'];
|
|
159209
|
+
id: Scalars['ID']['input'];
|
|
159210
|
+
};
|
|
159211
|
+
export type MercuryAskStatusUpdateEdge = {
|
|
159212
|
+
__typename?: 'MercuryAskStatusUpdateEdge';
|
|
159213
|
+
cursor: Scalars['String']['output'];
|
|
159214
|
+
node?: Maybe<MercuryAskStatusUpdateResult>;
|
|
159215
|
+
};
|
|
159216
|
+
export type MercuryAskStatusUpdateResult = MercuryAskStatusUpdate | QueryError;
|
|
159217
|
+
export type MercuryAskStatusUpdateStatusInput = {
|
|
159218
|
+
id: Scalars['ID']['input'];
|
|
159219
|
+
status: MercuryAskStatus;
|
|
159220
|
+
};
|
|
159221
|
+
export type MercuryAskStatusUpdateTargetDateInput = {
|
|
159222
|
+
id: Scalars['ID']['input'];
|
|
159223
|
+
targetDate: MercuryAskTargetDateInput;
|
|
159224
|
+
};
|
|
159225
|
+
export type MercuryAskTargetDate = {
|
|
159226
|
+
__typename?: 'MercuryAskTargetDate';
|
|
159227
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
159228
|
+
targetDateType?: Maybe<MercuryAskTargetDateType>;
|
|
159229
|
+
};
|
|
159230
|
+
export type MercuryAskTargetDateInput = {
|
|
159231
|
+
targetDate: Scalars['String']['input'];
|
|
159232
|
+
targetDateType: MercuryAskTargetDateType;
|
|
159233
|
+
};
|
|
159234
|
+
export declare enum MercuryAskTargetDateType {
|
|
159235
|
+
Day = "DAY",
|
|
159236
|
+
Month = "MONTH",
|
|
159237
|
+
Quarter = "QUARTER"
|
|
159238
|
+
}
|
|
159239
|
+
export type MercuryAskTransition = {
|
|
159240
|
+
__typename?: 'MercuryAskTransition';
|
|
159241
|
+
askId: Scalars['String']['output'];
|
|
159242
|
+
status?: Maybe<MercuryAskStatus>;
|
|
159243
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159244
|
+
};
|
|
158766
159245
|
export type MercuryAssignUserAccessToFocusAreaInput = {
|
|
158767
159246
|
focusAreaAri: Scalars['ID']['input'];
|
|
158768
159247
|
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
@@ -158783,6 +159262,17 @@ export type MercuryAssignUserAccessToOrganizationPayload = Payload & {
|
|
|
158783
159262
|
organizationUserAccessAssignment?: Maybe<Array<Maybe<MercuryOrganizationUserAccessMutation>>>;
|
|
158784
159263
|
success: Scalars['Boolean']['output'];
|
|
158785
159264
|
};
|
|
159265
|
+
export type MercuryAttachAskLinkInput = {
|
|
159266
|
+
askId: Scalars['ID']['input'];
|
|
159267
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
159268
|
+
url: Scalars['URL']['input'];
|
|
159269
|
+
};
|
|
159270
|
+
export type MercuryAttachAskLinkPayload = Payload & {
|
|
159271
|
+
__typename?: 'MercuryAttachAskLinkPayload';
|
|
159272
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159273
|
+
link?: Maybe<MercuryAskLink>;
|
|
159274
|
+
success: Scalars['Boolean']['output'];
|
|
159275
|
+
};
|
|
158786
159276
|
export type MercuryBaseJiraWorkStatusMapping = {
|
|
158787
159277
|
jiraStatus?: Maybe<MercuryJiraStatus>;
|
|
158788
159278
|
jiraStatusCategory?: Maybe<MercuryJiraStatusCategory>;
|
|
@@ -159554,6 +160044,55 @@ export type MercuryCostType = Node & {
|
|
|
159554
160044
|
key: Scalars['String']['output'];
|
|
159555
160045
|
order: Scalars['Int']['output'];
|
|
159556
160046
|
};
|
|
160047
|
+
export type MercuryCreateAskInput = {
|
|
160048
|
+
cloudId: Scalars['ID']['input'];
|
|
160049
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
160050
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
160051
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160052
|
+
name: Scalars['String']['input'];
|
|
160053
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
160054
|
+
priority: MercuryAskPriority;
|
|
160055
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
160056
|
+
status: MercuryAskStatus;
|
|
160057
|
+
submitterId: Scalars['String']['input'];
|
|
160058
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
160059
|
+
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160060
|
+
};
|
|
160061
|
+
export type MercuryCreateAskStatusUpdateInput = {
|
|
160062
|
+
askId: Scalars['ID']['input'];
|
|
160063
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
160064
|
+
proposedDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160065
|
+
status?: InputMaybe<MercuryAskStatus>;
|
|
160066
|
+
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160067
|
+
};
|
|
160068
|
+
export type MercuryCreateAsksAskInput = {
|
|
160069
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
160070
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
160071
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
160072
|
+
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
160073
|
+
name: Scalars['String']['input'];
|
|
160074
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
160075
|
+
priority: MercuryAskPriority;
|
|
160076
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
160077
|
+
status: MercuryAskStatus;
|
|
160078
|
+
submitterId: Scalars['String']['input'];
|
|
160079
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
160080
|
+
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
160081
|
+
};
|
|
160082
|
+
export type MercuryCreateAsksAskLinkInput = {
|
|
160083
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
160084
|
+
url: Scalars['URL']['input'];
|
|
160085
|
+
};
|
|
160086
|
+
export type MercuryCreateAsksInput = {
|
|
160087
|
+
asks: Array<MercuryCreateAsksAskInput>;
|
|
160088
|
+
cloudId: Scalars['ID']['input'];
|
|
160089
|
+
};
|
|
160090
|
+
export type MercuryCreateAsksPayload = Payload & {
|
|
160091
|
+
__typename?: 'MercuryCreateAsksPayload';
|
|
160092
|
+
asks?: Maybe<Array<MercuryAsk>>;
|
|
160093
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160094
|
+
success: Scalars['Boolean']['output'];
|
|
160095
|
+
};
|
|
159557
160096
|
export type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
159558
160097
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159559
160098
|
name: Scalars['String']['input'];
|
|
@@ -160141,6 +160680,33 @@ export type MercuryDeleteAllPreferencesByUserPayload = Payload & {
|
|
|
160141
160680
|
errors?: Maybe<Array<MutationError>>;
|
|
160142
160681
|
success: Scalars['Boolean']['output'];
|
|
160143
160682
|
};
|
|
160683
|
+
export type MercuryDeleteAskInput = {
|
|
160684
|
+
id: Scalars['ID']['input'];
|
|
160685
|
+
};
|
|
160686
|
+
export type MercuryDeleteAskLinkInput = {
|
|
160687
|
+
id: Scalars['ID']['input'];
|
|
160688
|
+
};
|
|
160689
|
+
export type MercuryDeleteAskLinkPayload = Payload & {
|
|
160690
|
+
__typename?: 'MercuryDeleteAskLinkPayload';
|
|
160691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160692
|
+
id: Scalars['ID']['output'];
|
|
160693
|
+
success: Scalars['Boolean']['output'];
|
|
160694
|
+
};
|
|
160695
|
+
export type MercuryDeleteAskPayload = Payload & {
|
|
160696
|
+
__typename?: 'MercuryDeleteAskPayload';
|
|
160697
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160698
|
+
id: Scalars['ID']['output'];
|
|
160699
|
+
success: Scalars['Boolean']['output'];
|
|
160700
|
+
};
|
|
160701
|
+
export type MercuryDeleteAskStatusUpdateInput = {
|
|
160702
|
+
id: Scalars['ID']['input'];
|
|
160703
|
+
};
|
|
160704
|
+
export type MercuryDeleteAskStatusUpdatePayload = Payload & {
|
|
160705
|
+
__typename?: 'MercuryDeleteAskStatusUpdatePayload';
|
|
160706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160707
|
+
id: Scalars['ID']['output'];
|
|
160708
|
+
success: Scalars['Boolean']['output'];
|
|
160709
|
+
};
|
|
160144
160710
|
export type MercuryDeleteBenefitItemInput = {
|
|
160145
160711
|
id: Scalars['ID']['input'];
|
|
160146
160712
|
};
|
|
@@ -160518,6 +161084,7 @@ export declare enum MercuryDismissalType {
|
|
|
160518
161084
|
Snooze = "SNOOZE"
|
|
160519
161085
|
}
|
|
160520
161086
|
export declare enum MercuryEntityType {
|
|
161087
|
+
Ask = "ASK",
|
|
160521
161088
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
160522
161089
|
Comment = "COMMENT",
|
|
160523
161090
|
FocusArea = "FOCUS_AREA",
|
|
@@ -161785,6 +162352,7 @@ export type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
161785
162352
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
161786
162353
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
161787
162354
|
};
|
|
162355
|
+
export type MercuryImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
161788
162356
|
export type MercuryImportExecutionError = {
|
|
161789
162357
|
__typename?: 'MercuryImportExecutionError';
|
|
161790
162358
|
entityType?: Maybe<MercuryImportExecutionErrorEntityType>;
|
|
@@ -163934,6 +164502,10 @@ export declare enum MercuryProjectTargetDateType {
|
|
|
163934
164502
|
export type MercuryProjectType = {
|
|
163935
164503
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
163936
164504
|
};
|
|
164505
|
+
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164506
|
+
connectedWorkId: Scalars['String']['input'];
|
|
164507
|
+
id: Scalars['ID']['input'];
|
|
164508
|
+
};
|
|
163937
164509
|
export type MercuryProposeChangesInput = {
|
|
163938
164510
|
archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
|
|
163939
164511
|
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
@@ -164694,6 +165266,9 @@ export type MercuryRerankFocusAreasPayload = Payload & {
|
|
|
164694
165266
|
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
164695
165267
|
success: Scalars['Boolean']['output'];
|
|
164696
165268
|
};
|
|
165269
|
+
export type MercuryResolveProposedDateInput = {
|
|
165270
|
+
askId: Scalars['ID']['input'];
|
|
165271
|
+
};
|
|
164697
165272
|
export type MercuryRestrictedChangeProposal = {
|
|
164698
165273
|
__typename?: 'MercuryRestrictedChangeProposal';
|
|
164699
165274
|
id: Scalars['ID']['output'];
|
|
@@ -166032,6 +166607,52 @@ export type MercuryUpdateActiveCurrencyPayload = Payload & {
|
|
|
166032
166607
|
success: Scalars['Boolean']['output'];
|
|
166033
166608
|
updatedActiveCurrency?: Maybe<MercuryCurrency>;
|
|
166034
166609
|
};
|
|
166610
|
+
export type MercuryUpdateAskDescriptionInput = {
|
|
166611
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
166612
|
+
id: Scalars['ID']['input'];
|
|
166613
|
+
};
|
|
166614
|
+
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166615
|
+
id: Scalars['ID']['input'];
|
|
166616
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
166617
|
+
};
|
|
166618
|
+
export type MercuryUpdateAskJustificationInput = {
|
|
166619
|
+
id: Scalars['ID']['input'];
|
|
166620
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
166621
|
+
};
|
|
166622
|
+
export type MercuryUpdateAskNameInput = {
|
|
166623
|
+
id: Scalars['ID']['input'];
|
|
166624
|
+
name: Scalars['String']['input'];
|
|
166625
|
+
};
|
|
166626
|
+
export type MercuryUpdateAskOwnerInput = {
|
|
166627
|
+
id: Scalars['ID']['input'];
|
|
166628
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
166629
|
+
};
|
|
166630
|
+
export type MercuryUpdateAskPriorityInput = {
|
|
166631
|
+
id: Scalars['ID']['input'];
|
|
166632
|
+
priority: MercuryAskPriority;
|
|
166633
|
+
};
|
|
166634
|
+
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166635
|
+
id: Scalars['ID']['input'];
|
|
166636
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
166637
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166638
|
+
};
|
|
166639
|
+
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166640
|
+
id: Scalars['ID']['input'];
|
|
166641
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166642
|
+
};
|
|
166643
|
+
export type MercuryUpdateAskSubmitterInput = {
|
|
166644
|
+
id: Scalars['ID']['input'];
|
|
166645
|
+
submitterId: Scalars['String']['input'];
|
|
166646
|
+
};
|
|
166647
|
+
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166648
|
+
id: Scalars['ID']['input'];
|
|
166649
|
+
submitterId: Scalars['String']['input'];
|
|
166650
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166651
|
+
};
|
|
166652
|
+
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166653
|
+
id: Scalars['ID']['input'];
|
|
166654
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166655
|
+
};
|
|
166035
166656
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
166036
166657
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
166037
166658
|
id: Scalars['ID']['input'];
|
|
@@ -166623,6 +167244,19 @@ export type MercuryUpdatedField = {
|
|
|
166623
167244
|
oldString?: Maybe<Scalars['String']['output']>;
|
|
166624
167245
|
oldValue?: Maybe<Scalars['String']['output']>;
|
|
166625
167246
|
};
|
|
167247
|
+
export type MercuryUpsertAskPayload = Payload & {
|
|
167248
|
+
__typename?: 'MercuryUpsertAskPayload';
|
|
167249
|
+
ask?: Maybe<MercuryAsk>;
|
|
167250
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167251
|
+
success: Scalars['Boolean']['output'];
|
|
167252
|
+
};
|
|
167253
|
+
export type MercuryUpsertAskStatusUpdatePayload = Payload & {
|
|
167254
|
+
__typename?: 'MercuryUpsertAskStatusUpdatePayload';
|
|
167255
|
+
ask?: Maybe<MercuryAsk>;
|
|
167256
|
+
askStatusUpdate?: Maybe<MercuryAskStatusUpdate>;
|
|
167257
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167258
|
+
success: Scalars['Boolean']['output'];
|
|
167259
|
+
};
|
|
166626
167260
|
export type MercuryUpsertViewPayload = Payload & {
|
|
166627
167261
|
__typename?: 'MercuryUpsertViewPayload';
|
|
166628
167262
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -166957,6 +167591,11 @@ export type Mitigation = Node & {
|
|
|
166957
167591
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
166958
167592
|
version?: Maybe<Scalars['Int']['output']>;
|
|
166959
167593
|
};
|
|
167594
|
+
export declare enum MitigationConfidence {
|
|
167595
|
+
High = "HIGH",
|
|
167596
|
+
Low = "LOW",
|
|
167597
|
+
Medium = "MEDIUM"
|
|
167598
|
+
}
|
|
166960
167599
|
export declare enum MitigationDocumentType {
|
|
166961
167600
|
Confluence = "CONFLUENCE",
|
|
166962
167601
|
GoogleDoc = "GOOGLE_DOC",
|
|
@@ -166987,7 +167626,6 @@ export declare enum MitigationHypothesisType {
|
|
|
166987
167626
|
}
|
|
166988
167627
|
export type MitigationIndicator = Node & {
|
|
166989
167628
|
__typename?: 'MitigationIndicator';
|
|
166990
|
-
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
166991
167629
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
166992
167630
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
166993
167631
|
id: Scalars['ID']['output'];
|
|
@@ -167019,6 +167657,7 @@ export declare enum MitigationPipelineStep {
|
|
|
167019
167657
|
}
|
|
167020
167658
|
export type MitigationPlan = Node & {
|
|
167021
167659
|
__typename?: 'MitigationPlan';
|
|
167660
|
+
confidence?: Maybe<MitigationConfidence>;
|
|
167022
167661
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167023
167662
|
id: Scalars['ID']['output'];
|
|
167024
167663
|
indicatorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -167240,6 +167879,7 @@ export type Mutation = {
|
|
|
167240
167879
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
167241
167880
|
agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
|
|
167242
167881
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
167882
|
+
agentWorkspace_setShiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfigPayload>;
|
|
167243
167883
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
167244
167884
|
agentWorkspace_setWorkloadJql?: Maybe<AgentWorkspaceSetWorkloadJqlPayload>;
|
|
167245
167885
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -167890,6 +168530,7 @@ export type Mutation = {
|
|
|
167890
168530
|
goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
|
|
167891
168531
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
167892
168532
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
168533
|
+
goals_deleteMetricValue?: Maybe<TownsquareGoalsDeleteMetricValuePayload>;
|
|
167893
168534
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
167894
168535
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
167895
168536
|
goals_disconnectMsteamsChannel?: Maybe<TownsquareGoalsDisconnectMsteamsChannelPayload>;
|
|
@@ -168389,16 +169030,42 @@ export type Mutation = {
|
|
|
168389
169030
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
168390
169031
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
168391
169032
|
mercury?: Maybe<MercuryMutationApi>;
|
|
169033
|
+
mercury_acceptProposedDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
169034
|
+
mercury_addConnectedWork?: Maybe<MercuryAskConnectedWorkPayload>;
|
|
169035
|
+
mercury_attachAskLink?: Maybe<MercuryAttachAskLinkPayload>;
|
|
168392
169036
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
168393
169037
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
169038
|
+
mercury_createAsk?: Maybe<MercuryUpsertAskPayload>;
|
|
169039
|
+
mercury_createAskStatusUpdate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
169040
|
+
mercury_createAsks?: Maybe<MercuryCreateAsksPayload>;
|
|
169041
|
+
mercury_deleteAsk?: Maybe<MercuryDeleteAskPayload>;
|
|
169042
|
+
mercury_deleteAskLink?: Maybe<MercuryDeleteAskLinkPayload>;
|
|
169043
|
+
mercury_deleteAskStatusUpdate?: Maybe<MercuryDeleteAskStatusUpdatePayload>;
|
|
168394
169044
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
168395
169045
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
168396
169046
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
168397
169047
|
mercury_plans?: Maybe<MercuryPlansMutationApi>;
|
|
169048
|
+
mercury_promoteWorkItemToImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
168398
169049
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
169050
|
+
mercury_rejectProposedDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
169051
|
+
mercury_removeConnectedWork?: Maybe<MercuryAskConnectedWorkPayload>;
|
|
168399
169052
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
168400
169053
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
168401
169054
|
mercury_tags?: Maybe<MercuryTagsMutationApi>;
|
|
169055
|
+
mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
|
|
169056
|
+
mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
169057
|
+
mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
|
|
169058
|
+
mercury_updateAskName?: Maybe<MercuryUpsertAskPayload>;
|
|
169059
|
+
mercury_updateAskOwner?: Maybe<MercuryUpsertAskPayload>;
|
|
169060
|
+
mercury_updateAskPriority?: Maybe<MercuryUpsertAskPayload>;
|
|
169061
|
+
mercury_updateAskReceivingFields?: Maybe<MercuryUpsertAskPayload>;
|
|
169062
|
+
mercury_updateAskReceivingTeam?: Maybe<MercuryUpsertAskPayload>;
|
|
169063
|
+
mercury_updateAskStatusUpdateDescription?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
169064
|
+
mercury_updateAskStatusUpdateStatus?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
169065
|
+
mercury_updateAskStatusUpdateTargetDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
169066
|
+
mercury_updateAskSubmitter?: Maybe<MercuryUpsertAskPayload>;
|
|
169067
|
+
mercury_updateAskSubmittingFields?: Maybe<MercuryUpsertAskPayload>;
|
|
169068
|
+
mercury_updateAskSubmittingTeam?: Maybe<MercuryUpsertAskPayload>;
|
|
168402
169069
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
168403
169070
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
168404
169071
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -168493,6 +169160,7 @@ export type Mutation = {
|
|
|
168493
169160
|
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
168494
169161
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
168495
169162
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
169163
|
+
radar_createSkill?: Maybe<RadarSkill>;
|
|
168496
169164
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
168497
169165
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
168498
169166
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -168516,7 +169184,7 @@ export type Mutation = {
|
|
|
168516
169184
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
168517
169185
|
radar_updateSkill?: Maybe<RadarSkill>;
|
|
168518
169186
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
168519
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<
|
|
169187
|
+
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
168520
169188
|
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
168521
169189
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
168522
169190
|
radar_upsertView?: Maybe<RadarView>;
|
|
@@ -169189,6 +169857,9 @@ export type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
|
|
|
169189
169857
|
export type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
169190
169858
|
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
169191
169859
|
};
|
|
169860
|
+
export type MutationAgentWorkspace_SetShiftReminderConfigArgs = {
|
|
169861
|
+
input: AgentWorkspaceSetShiftReminderConfigInput;
|
|
169862
|
+
};
|
|
169192
169863
|
export type MutationAgentWorkspace_SetTeamCapacitiesArgs = {
|
|
169193
169864
|
input: AgentWorkspaceSetTeamCapacitiesInput;
|
|
169194
169865
|
};
|
|
@@ -171573,6 +172244,9 @@ export type MutationGoals_DeleteLatestUpdateArgs = {
|
|
|
171573
172244
|
export type MutationGoals_DeleteLearningArgs = {
|
|
171574
172245
|
input: TownsquareGoalsDeleteLearningInput;
|
|
171575
172246
|
};
|
|
172247
|
+
export type MutationGoals_DeleteMetricValueArgs = {
|
|
172248
|
+
input: TownsquareGoalsDeleteMetricValueInput;
|
|
172249
|
+
};
|
|
171576
172250
|
export type MutationGoals_DeleteProjectLinkArgs = {
|
|
171577
172251
|
input: TownsquareGoalsDeleteProjectLinkInput;
|
|
171578
172252
|
};
|
|
@@ -173214,6 +173888,84 @@ export type MutationMarkFeatureDiscoveredArgs = {
|
|
|
173214
173888
|
featureKey: Scalars['String']['input'];
|
|
173215
173889
|
pluginKey: Scalars['String']['input'];
|
|
173216
173890
|
};
|
|
173891
|
+
export type MutationMercury_AcceptProposedDateArgs = {
|
|
173892
|
+
input: MercuryResolveProposedDateInput;
|
|
173893
|
+
};
|
|
173894
|
+
export type MutationMercury_AddConnectedWorkArgs = {
|
|
173895
|
+
input: MercuryAskConnectedWorkInput;
|
|
173896
|
+
};
|
|
173897
|
+
export type MutationMercury_AttachAskLinkArgs = {
|
|
173898
|
+
input: MercuryAttachAskLinkInput;
|
|
173899
|
+
};
|
|
173900
|
+
export type MutationMercury_CreateAskArgs = {
|
|
173901
|
+
input: MercuryCreateAskInput;
|
|
173902
|
+
};
|
|
173903
|
+
export type MutationMercury_CreateAskStatusUpdateArgs = {
|
|
173904
|
+
input: MercuryCreateAskStatusUpdateInput;
|
|
173905
|
+
};
|
|
173906
|
+
export type MutationMercury_CreateAsksArgs = {
|
|
173907
|
+
input: MercuryCreateAsksInput;
|
|
173908
|
+
};
|
|
173909
|
+
export type MutationMercury_DeleteAskArgs = {
|
|
173910
|
+
input: MercuryDeleteAskInput;
|
|
173911
|
+
};
|
|
173912
|
+
export type MutationMercury_DeleteAskLinkArgs = {
|
|
173913
|
+
input: MercuryDeleteAskLinkInput;
|
|
173914
|
+
};
|
|
173915
|
+
export type MutationMercury_DeleteAskStatusUpdateArgs = {
|
|
173916
|
+
input: MercuryDeleteAskStatusUpdateInput;
|
|
173917
|
+
};
|
|
173918
|
+
export type MutationMercury_PromoteWorkItemToImpactedWorkArgs = {
|
|
173919
|
+
input: MercuryPromoteWorkItemToImpactedWorkInput;
|
|
173920
|
+
};
|
|
173921
|
+
export type MutationMercury_RejectProposedDateArgs = {
|
|
173922
|
+
input: MercuryResolveProposedDateInput;
|
|
173923
|
+
};
|
|
173924
|
+
export type MutationMercury_RemoveConnectedWorkArgs = {
|
|
173925
|
+
input: MercuryAskConnectedWorkInput;
|
|
173926
|
+
};
|
|
173927
|
+
export type MutationMercury_UpdateAskDescriptionArgs = {
|
|
173928
|
+
input: MercuryUpdateAskDescriptionInput;
|
|
173929
|
+
};
|
|
173930
|
+
export type MutationMercury_UpdateAskImpactedWorkArgs = {
|
|
173931
|
+
input: MercuryUpdateAskImpactedWorkInput;
|
|
173932
|
+
};
|
|
173933
|
+
export type MutationMercury_UpdateAskJustificationArgs = {
|
|
173934
|
+
input: MercuryUpdateAskJustificationInput;
|
|
173935
|
+
};
|
|
173936
|
+
export type MutationMercury_UpdateAskNameArgs = {
|
|
173937
|
+
input: MercuryUpdateAskNameInput;
|
|
173938
|
+
};
|
|
173939
|
+
export type MutationMercury_UpdateAskOwnerArgs = {
|
|
173940
|
+
input: MercuryUpdateAskOwnerInput;
|
|
173941
|
+
};
|
|
173942
|
+
export type MutationMercury_UpdateAskPriorityArgs = {
|
|
173943
|
+
input: MercuryUpdateAskPriorityInput;
|
|
173944
|
+
};
|
|
173945
|
+
export type MutationMercury_UpdateAskReceivingFieldsArgs = {
|
|
173946
|
+
input: MercuryUpdateAskReceivingFieldsInput;
|
|
173947
|
+
};
|
|
173948
|
+
export type MutationMercury_UpdateAskReceivingTeamArgs = {
|
|
173949
|
+
input: MercuryUpdateAskReceivingTeamInput;
|
|
173950
|
+
};
|
|
173951
|
+
export type MutationMercury_UpdateAskStatusUpdateDescriptionArgs = {
|
|
173952
|
+
input: MercuryAskStatusUpdateDescriptionInput;
|
|
173953
|
+
};
|
|
173954
|
+
export type MutationMercury_UpdateAskStatusUpdateStatusArgs = {
|
|
173955
|
+
input: MercuryAskStatusUpdateStatusInput;
|
|
173956
|
+
};
|
|
173957
|
+
export type MutationMercury_UpdateAskStatusUpdateTargetDateArgs = {
|
|
173958
|
+
input: MercuryAskStatusUpdateTargetDateInput;
|
|
173959
|
+
};
|
|
173960
|
+
export type MutationMercury_UpdateAskSubmitterArgs = {
|
|
173961
|
+
input: MercuryUpdateAskSubmitterInput;
|
|
173962
|
+
};
|
|
173963
|
+
export type MutationMercury_UpdateAskSubmittingFieldsArgs = {
|
|
173964
|
+
input: MercuryUpdateAskSubmittingFieldsInput;
|
|
173965
|
+
};
|
|
173966
|
+
export type MutationMercury_UpdateAskSubmittingTeamArgs = {
|
|
173967
|
+
input: MercuryUpdateAskSubmittingTeamInput;
|
|
173968
|
+
};
|
|
173217
173969
|
export type MutationMigrateSpaceShortcutsArgs = {
|
|
173218
173970
|
shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
|
|
173219
173971
|
spaceId: Scalars['ID']['input'];
|
|
@@ -173494,6 +174246,10 @@ export type MutationRadar_CreateRoleAssignmentArgs = {
|
|
|
173494
174246
|
cloudId: Scalars['ID']['input'];
|
|
173495
174247
|
input: RadarRoleAssignmentRequest;
|
|
173496
174248
|
};
|
|
174249
|
+
export type MutationRadar_CreateSkillArgs = {
|
|
174250
|
+
cloudId: Scalars['ID']['input'];
|
|
174251
|
+
input: RadarCreateSkillInput;
|
|
174252
|
+
};
|
|
173497
174253
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
173498
174254
|
cloudId: Scalars['ID']['input'];
|
|
173499
174255
|
input: RadarDeleteConnectorInput;
|
|
@@ -173586,7 +174342,7 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
173586
174342
|
};
|
|
173587
174343
|
export type MutationRadar_UpsertAiScopedBudgetPoliciesArgs = {
|
|
173588
174344
|
cloudId: Scalars['ID']['input'];
|
|
173589
|
-
input:
|
|
174345
|
+
input: RadarUpsertAiScopedBudgetPoliciesInput;
|
|
173590
174346
|
};
|
|
173591
174347
|
export type MutationRadar_UpsertAiWorkspaceBudgetPolicyArgs = {
|
|
173592
174348
|
cloudId: Scalars['ID']['input'];
|
|
@@ -177698,10 +178454,12 @@ export type Query = {
|
|
|
177698
178454
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
177699
178455
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
177700
178456
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
178457
|
+
agentWorkspace_serviceOptions?: Maybe<AgentWorkspaceServiceOptionsPage>;
|
|
177701
178458
|
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
177702
178459
|
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
177703
178460
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
177704
178461
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
178462
|
+
agentWorkspace_shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
177705
178463
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
177706
178464
|
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
177707
178465
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
@@ -177843,6 +178601,7 @@ export type Query = {
|
|
|
177843
178601
|
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
177844
178602
|
assetsVertical_asyncTasks?: Maybe<AssetsVerticalAsyncTaskConnection>;
|
|
177845
178603
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
178604
|
+
assetsVertical_checkPermissions?: Maybe<AssetsVerticalCheckPermissionsResult>;
|
|
177846
178605
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
177847
178606
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
177848
178607
|
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
@@ -177871,6 +178630,7 @@ export type Query = {
|
|
|
177871
178630
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
177872
178631
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
177873
178632
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
178633
|
+
assetsVertical_tenantContext?: Maybe<AssetsVerticalTenantContextResult>;
|
|
177874
178634
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
177875
178635
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
177876
178636
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
@@ -180850,6 +181610,11 @@ export type Query = {
|
|
|
180850
181610
|
media_items?: Maybe<Array<MediaItem>>;
|
|
180851
181611
|
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
180852
181612
|
mercury?: Maybe<MercuryQueryApi>;
|
|
181613
|
+
mercury_ask?: Maybe<MercuryAskResult>;
|
|
181614
|
+
mercury_askCountByStatusForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
181615
|
+
mercury_askLinksByIds?: Maybe<Array<Maybe<MercuryAskLink>>>;
|
|
181616
|
+
mercury_asks?: Maybe<MercuryAskConnection>;
|
|
181617
|
+
mercury_asksByIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
180853
181618
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
180854
181619
|
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
180855
181620
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
@@ -180862,6 +181627,7 @@ export type Query = {
|
|
|
180862
181627
|
mercury_plans?: Maybe<MercuryPlansQueryApi>;
|
|
180863
181628
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
180864
181629
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
181630
|
+
mercury_stalledAskCountForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
180865
181631
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
180866
181632
|
mercury_tags?: Maybe<MercuryTagsQueryApi>;
|
|
180867
181633
|
migration: MigrationQuery;
|
|
@@ -181194,6 +181960,7 @@ export type Query = {
|
|
|
181194
181960
|
tenant?: Maybe<Tenant>;
|
|
181195
181961
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
181196
181962
|
testing?: Maybe<Testing>;
|
|
181963
|
+
testingV2?: Maybe<Testing>;
|
|
181197
181964
|
timeseriesCount?: Maybe<TimeseriesCount>;
|
|
181198
181965
|
timeseriesPageBlogCount?: Maybe<TimeseriesPageBlogCount>;
|
|
181199
181966
|
timeseriesUniqueUserCount?: Maybe<TimeseriesUniqueUserCount>;
|
|
@@ -182045,6 +182812,15 @@ export type QueryAgentWorkspace_SchedulesArgs = {
|
|
|
182045
182812
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
182046
182813
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
182047
182814
|
};
|
|
182815
|
+
export type QueryAgentWorkspace_ServiceOptionsArgs = {
|
|
182816
|
+
cloudId: Scalars['ID']['input'];
|
|
182817
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
182818
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
182819
|
+
projectId: Scalars['ID']['input'];
|
|
182820
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
182821
|
+
serviceFieldId: Scalars['ID']['input'];
|
|
182822
|
+
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
182823
|
+
};
|
|
182048
182824
|
export type QueryAgentWorkspace_ServicesArgs = {
|
|
182049
182825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182050
182826
|
cloudId: Scalars['ID']['input'];
|
|
@@ -182071,6 +182847,10 @@ export type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
|
182071
182847
|
export type QueryAgentWorkspace_ShiftEditBoundsArgs = {
|
|
182072
182848
|
input: AgentWorkspaceShiftEditBoundsInput;
|
|
182073
182849
|
};
|
|
182850
|
+
export type QueryAgentWorkspace_ShiftReminderConfigArgs = {
|
|
182851
|
+
cloudId: Scalars['ID']['input'];
|
|
182852
|
+
projectId: Scalars['ID']['input'];
|
|
182853
|
+
};
|
|
182074
182854
|
export type QueryAgentWorkspace_ShiftsArgs = {
|
|
182075
182855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182076
182856
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -182846,6 +183626,10 @@ export type QueryAssetsVertical_BundleArgs = {
|
|
|
182846
183626
|
cloudId: Scalars['ID']['input'];
|
|
182847
183627
|
type: AssetsVerticalBundleType;
|
|
182848
183628
|
};
|
|
183629
|
+
export type QueryAssetsVertical_CheckPermissionsArgs = {
|
|
183630
|
+
checks: Array<AssetsVerticalPermissionCheckInput>;
|
|
183631
|
+
cloudId: Scalars['ID']['input'];
|
|
183632
|
+
};
|
|
182849
183633
|
export type QueryAssetsVertical_ConfiguredObjectTypesArgs = {
|
|
182850
183634
|
cloudId: Scalars['ID']['input'];
|
|
182851
183635
|
input: AssetsVerticalObjectTypesInput;
|
|
@@ -182963,6 +183747,9 @@ export type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
|
182963
183747
|
cloudId: Scalars['ID']['input'];
|
|
182964
183748
|
input: AssetsVerticalStockroomObjectsInput;
|
|
182965
183749
|
};
|
|
183750
|
+
export type QueryAssetsVertical_TenantContextArgs = {
|
|
183751
|
+
cloudId: Scalars['ID']['input'];
|
|
183752
|
+
};
|
|
182966
183753
|
export type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
182967
183754
|
cloudId: Scalars['ID']['input'];
|
|
182968
183755
|
id: Scalars['ID']['input'];
|
|
@@ -202315,6 +203102,28 @@ export type QueryMedia_ItemsByDescriptorArgs = {
|
|
|
202315
203102
|
cloudId: Scalars['String']['input'];
|
|
202316
203103
|
input: MediaItemsInput;
|
|
202317
203104
|
};
|
|
203105
|
+
export type QueryMercury_AskArgs = {
|
|
203106
|
+
id: Scalars['ID']['input'];
|
|
203107
|
+
};
|
|
203108
|
+
export type QueryMercury_AskCountByStatusForFocusAreaArgs = {
|
|
203109
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
203110
|
+
};
|
|
203111
|
+
export type QueryMercury_AskLinksByIdsArgs = {
|
|
203112
|
+
ids: Array<Scalars['ID']['input']>;
|
|
203113
|
+
};
|
|
203114
|
+
export type QueryMercury_AsksArgs = {
|
|
203115
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203116
|
+
cloudId: Scalars['ID']['input'];
|
|
203117
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203118
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
203119
|
+
};
|
|
203120
|
+
export type QueryMercury_AsksByIdsArgs = {
|
|
203121
|
+
ids: Array<Scalars['ID']['input']>;
|
|
203122
|
+
};
|
|
203123
|
+
export type QueryMercury_StalledAskCountForFocusAreaArgs = {
|
|
203124
|
+
cutoffDate: Scalars['String']['input'];
|
|
203125
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
203126
|
+
};
|
|
202318
203127
|
export type QueryMyMarketplaceAppsArgs = {
|
|
202319
203128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202320
203129
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -204052,6 +204861,12 @@ export type RadarCreateAiConnectorInput = {
|
|
|
204052
204861
|
provider: RadarAiConnectorProvider;
|
|
204053
204862
|
type: RadarAiConnectorType;
|
|
204054
204863
|
};
|
|
204864
|
+
export type RadarCreateSkillInput = {
|
|
204865
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
204866
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
204867
|
+
name: Scalars['String']['input'];
|
|
204868
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
204869
|
+
};
|
|
204055
204870
|
export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
204056
204871
|
__typename?: 'RadarCustomFieldDefinition';
|
|
204057
204872
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -204634,6 +205449,7 @@ export type RadarSkill = Node & {
|
|
|
204634
205449
|
description?: Maybe<Scalars['String']['output']>;
|
|
204635
205450
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
204636
205451
|
id: Scalars['ID']['output'];
|
|
205452
|
+
level?: Maybe<Scalars['Int']['output']>;
|
|
204637
205453
|
name: Scalars['String']['output'];
|
|
204638
205454
|
parent?: Maybe<RadarSkill>;
|
|
204639
205455
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -204788,6 +205604,15 @@ export type RadarUpdateSkillInput = {
|
|
|
204788
205604
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
204789
205605
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
204790
205606
|
};
|
|
205607
|
+
export type RadarUpsertAiScopedBudgetPoliciesInput = {
|
|
205608
|
+
deletedScopeFieldValues: Array<Scalars['String']['input']>;
|
|
205609
|
+
upserts: Array<RadarUpsertAiScopedBudgetPolicyInput>;
|
|
205610
|
+
};
|
|
205611
|
+
export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
205612
|
+
__typename?: 'RadarUpsertAiScopedBudgetPoliciesPayload';
|
|
205613
|
+
deletedScopeFieldValues: Array<Scalars['String']['output']>;
|
|
205614
|
+
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
205615
|
+
};
|
|
204791
205616
|
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
204792
205617
|
allowanceAmount: Scalars['Int']['input'];
|
|
204793
205618
|
scopeFieldValue: Scalars['String']['input'];
|
|
@@ -234404,6 +235229,7 @@ export type TownsquareCreateGoalInput = {
|
|
|
234404
235229
|
name: Scalars['String']['input'];
|
|
234405
235230
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
234406
235231
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
235232
|
+
subGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
234407
235233
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
234408
235234
|
};
|
|
234409
235235
|
export type TownsquareCreateGoalPayload = {
|
|
@@ -235536,6 +236362,7 @@ export type TownsquareGoalsCreateInput = {
|
|
|
235536
236362
|
name: Scalars['String']['input'];
|
|
235537
236363
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
235538
236364
|
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
236365
|
+
subGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
235539
236366
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
235540
236367
|
};
|
|
235541
236368
|
export type TownsquareGoalsCreateLearningInput = {
|
|
@@ -235632,6 +236459,15 @@ export type TownsquareGoalsDeleteLearningPayload = {
|
|
|
235632
236459
|
errors?: Maybe<Array<MutationError>>;
|
|
235633
236460
|
success: Scalars['Boolean']['output'];
|
|
235634
236461
|
};
|
|
236462
|
+
export type TownsquareGoalsDeleteMetricValueInput = {
|
|
236463
|
+
metricValueId: Scalars['ID']['input'];
|
|
236464
|
+
};
|
|
236465
|
+
export type TownsquareGoalsDeleteMetricValuePayload = {
|
|
236466
|
+
__typename?: 'TownsquareGoalsDeleteMetricValuePayload';
|
|
236467
|
+
deletedMetricValueId?: Maybe<Scalars['ID']['output']>;
|
|
236468
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236469
|
+
success: Scalars['Boolean']['output'];
|
|
236470
|
+
};
|
|
235635
236471
|
export type TownsquareGoalsDeleteProjectLinkInput = {
|
|
235636
236472
|
goalId: Scalars['ID']['input'];
|
|
235637
236473
|
projectId: Scalars['ID']['input'];
|
|
@@ -236342,6 +237178,8 @@ export type TownsquareMetricUpdateInput = {
|
|
|
236342
237178
|
};
|
|
236343
237179
|
export type TownsquareMetricValue = Node & {
|
|
236344
237180
|
__typename?: 'TownsquareMetricValue';
|
|
237181
|
+
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
237182
|
+
creator?: Maybe<User>;
|
|
236345
237183
|
id: Scalars['ID']['output'];
|
|
236346
237184
|
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
236347
237185
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -240478,6 +241316,18 @@ export type TrelloCopyCardActionDisplayEntities = {
|
|
|
240478
241316
|
list?: Maybe<TrelloActionListEntity>;
|
|
240479
241317
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
240480
241318
|
};
|
|
241319
|
+
export type TrelloCopyCardInput = {
|
|
241320
|
+
cardId: Scalars['ID']['input'];
|
|
241321
|
+
listId?: InputMaybe<Scalars['ID']['input']>;
|
|
241322
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
241323
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
241324
|
+
};
|
|
241325
|
+
export type TrelloCopyCardPayload = Payload & {
|
|
241326
|
+
__typename?: 'TrelloCopyCardPayload';
|
|
241327
|
+
card?: Maybe<TrelloBaseCard>;
|
|
241328
|
+
errors?: Maybe<Array<MutationError>>;
|
|
241329
|
+
success: Scalars['Boolean']['output'];
|
|
241330
|
+
};
|
|
240481
241331
|
export type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
240482
241332
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
240483
241333
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -242232,6 +243082,7 @@ export type TrelloMutationApi = {
|
|
|
242232
243082
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
242233
243083
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
242234
243084
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
243085
|
+
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
242235
243086
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
242236
243087
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
242237
243088
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
@@ -242407,6 +243258,9 @@ export type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
|
242407
243258
|
export type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
242408
243259
|
input: TrelloConvertTemplateToBoardInput;
|
|
242409
243260
|
};
|
|
243261
|
+
export type TrelloMutationApiCopyCardArgs = {
|
|
243262
|
+
input: TrelloCopyCardInput;
|
|
243263
|
+
};
|
|
242410
243264
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
242411
243265
|
input: TrelloCreateApplicationInput;
|
|
242412
243266
|
};
|