@forge/cli-shared 9.2.0-next.3-experimental-c6a3916 → 9.2.0-next.5
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 -9
- package/out/graphql/graphql-types.d.ts +187 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +67 -47
- package/out/ui/log-color.d.ts +0 -1
- package/out/ui/log-color.d.ts.map +1 -1
- package/out/ui/log-color.js +0 -1
- package/out/ui/text.d.ts +2 -9
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +13 -35
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.2.0-next.
|
|
3
|
+
## 9.2.0-next.5
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
7
|
+
- d415c89: Surface rate limit errors in CLI, improve E2E test robustness
|
|
8
|
+
|
|
9
|
+
## 9.2.0-next.4
|
|
9
10
|
|
|
10
11
|
### Patch Changes
|
|
11
12
|
|
|
12
13
|
- 903d6c1: Updated UI to show error when no installations
|
|
13
|
-
- 9cd0e0e: Update Forge CLI output rendering to incorporate pre-deployment API rules
|
|
14
|
-
- 3991f92: Update `tmp` from 0.2.5 to 0.2.6 in `@forge/cli-shared` to remediate vulnerability
|
|
15
|
-
- Updated dependencies [4c5ba1c]
|
|
16
|
-
- Updated dependencies [7195f29]
|
|
17
|
-
- Updated dependencies [3252a62]
|
|
18
|
-
- @forge/manifest@13.1.1-next.2-experimental-c6a3916
|
|
19
14
|
|
|
20
15
|
## 9.2.0-next.3
|
|
21
16
|
|
|
@@ -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'];
|
|
@@ -8563,6 +8593,7 @@ export type AgentWorkspaceServiceConnection = {
|
|
|
8563
8593
|
errors?: Maybe<Array<QueryError>>;
|
|
8564
8594
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
|
|
8565
8595
|
pageInfo: PageInfo;
|
|
8596
|
+
totalCount: Scalars['Int']['output'];
|
|
8566
8597
|
};
|
|
8567
8598
|
export type AgentWorkspaceServiceEdge = {
|
|
8568
8599
|
__typename?: 'AgentWorkspaceServiceEdge';
|
|
@@ -8615,6 +8646,12 @@ export type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
|
8615
8646
|
projectId: Scalars['ID']['input'];
|
|
8616
8647
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8617
8648
|
};
|
|
8649
|
+
export type AgentWorkspaceSetShiftReminderConfigInput = {
|
|
8650
|
+
cloudId: Scalars['ID']['input'];
|
|
8651
|
+
enabled: Scalars['Boolean']['input'];
|
|
8652
|
+
projectId: Scalars['ID']['input'];
|
|
8653
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8654
|
+
};
|
|
8618
8655
|
export type AgentWorkspaceSetTeamCapacitiesInput = {
|
|
8619
8656
|
cloudId: Scalars['ID']['input'];
|
|
8620
8657
|
projectKey: Scalars['String']['input'];
|
|
@@ -8666,6 +8703,25 @@ export type AgentWorkspaceShiftEditBoundsInput = {
|
|
|
8666
8703
|
projectARI: Scalars['ID']['input'];
|
|
8667
8704
|
scheduleId: Scalars['ID']['input'];
|
|
8668
8705
|
};
|
|
8706
|
+
export type AgentWorkspaceShiftReminderConfig = {
|
|
8707
|
+
__typename?: 'AgentWorkspaceShiftReminderConfig';
|
|
8708
|
+
enabled: Scalars['Boolean']['output'];
|
|
8709
|
+
projectId: Scalars['ID']['output'];
|
|
8710
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8711
|
+
updatedBy?: Maybe<Scalars['ID']['output']>;
|
|
8712
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8713
|
+
};
|
|
8714
|
+
export type AgentWorkspaceShiftReminderConfigPayload = {
|
|
8715
|
+
__typename?: 'AgentWorkspaceShiftReminderConfigPayload';
|
|
8716
|
+
errors: Array<AgentWorkspaceMutationError>;
|
|
8717
|
+
shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
8718
|
+
success: Scalars['Boolean']['output'];
|
|
8719
|
+
};
|
|
8720
|
+
export declare enum AgentWorkspaceShiftReminderWindow {
|
|
8721
|
+
Minutes_15 = "MINUTES_15",
|
|
8722
|
+
Minutes_30 = "MINUTES_30",
|
|
8723
|
+
Minutes_60 = "MINUTES_60"
|
|
8724
|
+
}
|
|
8669
8725
|
export type AgentWorkspaceShiftsAppliedFilters = {
|
|
8670
8726
|
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
8671
8727
|
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -14867,6 +14923,11 @@ export declare enum AssetsVerticalBundleType {
|
|
|
14867
14923
|
Ham = "HAM",
|
|
14868
14924
|
Osc = "OSC"
|
|
14869
14925
|
}
|
|
14926
|
+
export type AssetsVerticalCheckPermissionsResult = AssetsVerticalCheckPermissionsSuccess | QueryError;
|
|
14927
|
+
export type AssetsVerticalCheckPermissionsSuccess = {
|
|
14928
|
+
__typename?: 'AssetsVerticalCheckPermissionsSuccess';
|
|
14929
|
+
results: Array<AssetsVerticalPermissionCheckResult>;
|
|
14930
|
+
};
|
|
14870
14931
|
export type AssetsVerticalCountByStatus = {
|
|
14871
14932
|
__typename?: 'AssetsVerticalCountByStatus';
|
|
14872
14933
|
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
@@ -15505,6 +15566,18 @@ export type AssetsVerticalObjectsSuccess = {
|
|
|
15505
15566
|
pageInfo?: Maybe<PageInfo>;
|
|
15506
15567
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15507
15568
|
};
|
|
15569
|
+
export type AssetsVerticalPermissionCheckInput = {
|
|
15570
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15571
|
+
permissionId: Scalars['String']['input'];
|
|
15572
|
+
resourceId: Scalars['ID']['input'];
|
|
15573
|
+
};
|
|
15574
|
+
export type AssetsVerticalPermissionCheckResult = {
|
|
15575
|
+
__typename?: 'AssetsVerticalPermissionCheckResult';
|
|
15576
|
+
dontRequirePrincipalInSite: Scalars['Boolean']['output'];
|
|
15577
|
+
permissionId: Scalars['String']['output'];
|
|
15578
|
+
permitted: Scalars['Boolean']['output'];
|
|
15579
|
+
resourceId: Scalars['ID']['output'];
|
|
15580
|
+
};
|
|
15508
15581
|
export type AssetsVerticalPinInsightPayload = Payload & {
|
|
15509
15582
|
__typename?: 'AssetsVerticalPinInsightPayload';
|
|
15510
15583
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15653,6 +15726,26 @@ export type AssetsVerticalStockroomObjectsInput = {
|
|
|
15653
15726
|
workspaceId: Scalars['ID']['input'];
|
|
15654
15727
|
};
|
|
15655
15728
|
export type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
15729
|
+
export type AssetsVerticalTenantContext = {
|
|
15730
|
+
__typename?: 'AssetsVerticalTenantContext';
|
|
15731
|
+
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
15732
|
+
};
|
|
15733
|
+
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
15734
|
+
NotFound = "NOT_FOUND",
|
|
15735
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
15736
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
15737
|
+
}
|
|
15738
|
+
export type AssetsVerticalTenantContextQueryErrorExtension = QueryErrorExtension & {
|
|
15739
|
+
__typename?: 'AssetsVerticalTenantContextQueryErrorExtension';
|
|
15740
|
+
code?: Maybe<AssetsVerticalTenantContextQueryErrorCode>;
|
|
15741
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
15742
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15743
|
+
};
|
|
15744
|
+
export type AssetsVerticalTenantContextResult = AssetsVerticalTenantContextSuccess | QueryError;
|
|
15745
|
+
export type AssetsVerticalTenantContextSuccess = {
|
|
15746
|
+
__typename?: 'AssetsVerticalTenantContextSuccess';
|
|
15747
|
+
tenantContext: AssetsVerticalTenantContext;
|
|
15748
|
+
};
|
|
15656
15749
|
export type AssetsVerticalUpdateCustomInsightInput = {
|
|
15657
15750
|
category: AssetsVerticalInsightCategory;
|
|
15658
15751
|
cloudId: Scalars['ID']['input'];
|
|
@@ -38293,6 +38386,7 @@ export type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
|
|
|
38293
38386
|
artifact?: Maybe<ConvoAiMessageArtifact>;
|
|
38294
38387
|
audio?: Maybe<Scalars['String']['output']>;
|
|
38295
38388
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38389
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38296
38390
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
38297
38391
|
role: ConvoAiMessageAuthorRole;
|
|
38298
38392
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38337,6 +38431,7 @@ export type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
|
38337
38431
|
export type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
38338
38432
|
__typename?: 'ConvoAiErrorMessage';
|
|
38339
38433
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38434
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38340
38435
|
messageTemplate: ConvoAiErrorMessageTemplate;
|
|
38341
38436
|
statusCode: Scalars['Int']['output'];
|
|
38342
38437
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38697,6 +38792,7 @@ export type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
|
38697
38792
|
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
38698
38793
|
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
38699
38794
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38795
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38700
38796
|
messageTemplate: Scalars['String']['output'];
|
|
38701
38797
|
timeCreated: Scalars['DateTime']['output'];
|
|
38702
38798
|
};
|
|
@@ -118521,10 +118617,9 @@ export type HydratingJiraIssueEdge = {
|
|
|
118521
118617
|
};
|
|
118522
118618
|
export type HypothesisIndicator = {
|
|
118523
118619
|
__typename?: 'HypothesisIndicator';
|
|
118524
|
-
hypothesisId?: Maybe<Scalars['String']['output']>;
|
|
118525
118620
|
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
118526
118621
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
118527
|
-
|
|
118622
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
118528
118623
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
118529
118624
|
};
|
|
118530
118625
|
export type Icon = {
|
|
@@ -122388,6 +122483,7 @@ export type JiraBoardViewCellContextField = {
|
|
|
122388
122483
|
__typename?: 'JiraBoardViewCellContextField';
|
|
122389
122484
|
field?: Maybe<JiraField>;
|
|
122390
122485
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
122486
|
+
fieldValues?: Maybe<JiraBoardViewContextFieldValue>;
|
|
122391
122487
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
122392
122488
|
};
|
|
122393
122489
|
export type JiraBoardViewCellContextFieldIssueTypesArgs = {
|
|
@@ -122436,6 +122532,7 @@ export type JiraBoardViewColumnLayoutCellsArgs = {
|
|
|
122436
122532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122437
122533
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
122438
122534
|
};
|
|
122535
|
+
export type JiraBoardViewContextFieldValue = JiraBoardViewMultiFieldValue | JiraBoardViewSingleFieldValue;
|
|
122439
122536
|
export type JiraBoardViewCustomSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
122440
122537
|
__typename?: 'JiraBoardViewCustomSwimlane';
|
|
122441
122538
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
@@ -122528,6 +122625,10 @@ export type JiraBoardViewIssuePositions = {
|
|
|
122528
122625
|
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
122529
122626
|
};
|
|
122530
122627
|
export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
122628
|
+
export type JiraBoardViewMultiFieldValue = {
|
|
122629
|
+
__typename?: 'JiraBoardViewMultiFieldValue';
|
|
122630
|
+
values?: Maybe<Array<JiraJqlFieldValue>>;
|
|
122631
|
+
};
|
|
122531
122632
|
export type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
122532
122633
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
122533
122634
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122580,6 +122681,10 @@ export type JiraBoardViewSettingsSwimlaneCollapsedEdge = {
|
|
|
122580
122681
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
122581
122682
|
node?: Maybe<JiraBoardViewSettingsSwimlaneCollapsed>;
|
|
122582
122683
|
};
|
|
122684
|
+
export type JiraBoardViewSingleFieldValue = {
|
|
122685
|
+
__typename?: 'JiraBoardViewSingleFieldValue';
|
|
122686
|
+
value?: Maybe<JiraJqlFieldValue>;
|
|
122687
|
+
};
|
|
122583
122688
|
export type JiraBoardViewStatus = {
|
|
122584
122689
|
__typename?: 'JiraBoardViewStatus';
|
|
122585
122690
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -138116,6 +138221,7 @@ export type JiraQuery = {
|
|
|
138116
138221
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
138117
138222
|
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
138118
138223
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138224
|
+
hasJsmAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
138119
138225
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138120
138226
|
hasSystemConfluenceApplicationLink?: Maybe<Scalars['Boolean']['output']>;
|
|
138121
138227
|
hipaaCompliance?: Maybe<JiraHipaaComplianceResponse>;
|
|
@@ -138181,6 +138287,7 @@ export type JiraQuery = {
|
|
|
138181
138287
|
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
138182
138288
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
138183
138289
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
138290
|
+
jira_recommendedAgentsV2?: Maybe<JiraActorConnection>;
|
|
138184
138291
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
138185
138292
|
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
138186
138293
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -138782,6 +138889,9 @@ export type JiraQueryHasGlobalPermissionArgs = {
|
|
|
138782
138889
|
cloudId: Scalars['ID']['input'];
|
|
138783
138890
|
key: JiraGlobalPermissionType;
|
|
138784
138891
|
};
|
|
138892
|
+
export type JiraQueryHasJsmAdminAccessArgs = {
|
|
138893
|
+
cloudId: Scalars['ID']['input'];
|
|
138894
|
+
};
|
|
138785
138895
|
export type JiraQueryHasProjectPermissionArgs = {
|
|
138786
138896
|
cloudId: Scalars['ID']['input'];
|
|
138787
138897
|
permission: JiraProjectPermissionType;
|
|
@@ -139095,6 +139205,15 @@ export type JiraQueryJira_RecommendedAgentsArgs = {
|
|
|
139095
139205
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
139096
139206
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139097
139207
|
};
|
|
139208
|
+
export type JiraQueryJira_RecommendedAgentsV2Args = {
|
|
139209
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139210
|
+
cloudId: Scalars['ID']['input'];
|
|
139211
|
+
contextAri: Scalars['ID']['input'];
|
|
139212
|
+
contextSurface?: InputMaybe<Scalars['String']['input']>;
|
|
139213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139214
|
+
includeSemanticallyAvailable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139215
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139216
|
+
};
|
|
139098
139217
|
export type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
139099
139218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139100
139219
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141038,6 +141157,7 @@ export type JiraRovoEnablementStatus = {
|
|
|
141038
141157
|
export declare enum JiraRovoWithAiDisabledReason {
|
|
141039
141158
|
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
141040
141159
|
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
141160
|
+
NoWritePermsForRovo = "NO_WRITE_PERMS_FOR_ROVO",
|
|
141041
141161
|
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
141042
141162
|
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
141043
141163
|
}
|
|
@@ -160944,6 +161064,7 @@ export declare enum MercuryDismissalType {
|
|
|
160944
161064
|
Snooze = "SNOOZE"
|
|
160945
161065
|
}
|
|
160946
161066
|
export declare enum MercuryEntityType {
|
|
161067
|
+
Ask = "ASK",
|
|
160947
161068
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
160948
161069
|
Comment = "COMMENT",
|
|
160949
161070
|
FocusArea = "FOCUS_AREA",
|
|
@@ -167450,6 +167571,11 @@ export type Mitigation = Node & {
|
|
|
167450
167571
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167451
167572
|
version?: Maybe<Scalars['Int']['output']>;
|
|
167452
167573
|
};
|
|
167574
|
+
export declare enum MitigationConfidence {
|
|
167575
|
+
High = "HIGH",
|
|
167576
|
+
Low = "LOW",
|
|
167577
|
+
Medium = "MEDIUM"
|
|
167578
|
+
}
|
|
167453
167579
|
export declare enum MitigationDocumentType {
|
|
167454
167580
|
Confluence = "CONFLUENCE",
|
|
167455
167581
|
GoogleDoc = "GOOGLE_DOC",
|
|
@@ -167480,7 +167606,6 @@ export declare enum MitigationHypothesisType {
|
|
|
167480
167606
|
}
|
|
167481
167607
|
export type MitigationIndicator = Node & {
|
|
167482
167608
|
__typename?: 'MitigationIndicator';
|
|
167483
|
-
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
167484
167609
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167485
167610
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
167486
167611
|
id: Scalars['ID']['output'];
|
|
@@ -167512,6 +167637,7 @@ export declare enum MitigationPipelineStep {
|
|
|
167512
167637
|
}
|
|
167513
167638
|
export type MitigationPlan = Node & {
|
|
167514
167639
|
__typename?: 'MitigationPlan';
|
|
167640
|
+
confidence?: Maybe<MitigationConfidence>;
|
|
167515
167641
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167516
167642
|
id: Scalars['ID']['output'];
|
|
167517
167643
|
indicatorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -167733,6 +167859,7 @@ export type Mutation = {
|
|
|
167733
167859
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
167734
167860
|
agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
|
|
167735
167861
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
167862
|
+
agentWorkspace_setShiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfigPayload>;
|
|
167736
167863
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
167737
167864
|
agentWorkspace_setWorkloadJql?: Maybe<AgentWorkspaceSetWorkloadJqlPayload>;
|
|
167738
167865
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -169013,6 +169140,7 @@ export type Mutation = {
|
|
|
169013
169140
|
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
169014
169141
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
169015
169142
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
169143
|
+
radar_createSkill?: Maybe<RadarSkill>;
|
|
169016
169144
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
169017
169145
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
169018
169146
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -169036,7 +169164,7 @@ export type Mutation = {
|
|
|
169036
169164
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
169037
169165
|
radar_updateSkill?: Maybe<RadarSkill>;
|
|
169038
169166
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
169039
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<
|
|
169167
|
+
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
169040
169168
|
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
169041
169169
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
169042
169170
|
radar_upsertView?: Maybe<RadarView>;
|
|
@@ -169709,6 +169837,9 @@ export type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
|
|
|
169709
169837
|
export type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
169710
169838
|
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
169711
169839
|
};
|
|
169840
|
+
export type MutationAgentWorkspace_SetShiftReminderConfigArgs = {
|
|
169841
|
+
input: AgentWorkspaceSetShiftReminderConfigInput;
|
|
169842
|
+
};
|
|
169712
169843
|
export type MutationAgentWorkspace_SetTeamCapacitiesArgs = {
|
|
169713
169844
|
input: AgentWorkspaceSetTeamCapacitiesInput;
|
|
169714
169845
|
};
|
|
@@ -174095,6 +174226,10 @@ export type MutationRadar_CreateRoleAssignmentArgs = {
|
|
|
174095
174226
|
cloudId: Scalars['ID']['input'];
|
|
174096
174227
|
input: RadarRoleAssignmentRequest;
|
|
174097
174228
|
};
|
|
174229
|
+
export type MutationRadar_CreateSkillArgs = {
|
|
174230
|
+
cloudId: Scalars['ID']['input'];
|
|
174231
|
+
input: RadarCreateSkillInput;
|
|
174232
|
+
};
|
|
174098
174233
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
174099
174234
|
cloudId: Scalars['ID']['input'];
|
|
174100
174235
|
input: RadarDeleteConnectorInput;
|
|
@@ -174187,7 +174322,7 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
174187
174322
|
};
|
|
174188
174323
|
export type MutationRadar_UpsertAiScopedBudgetPoliciesArgs = {
|
|
174189
174324
|
cloudId: Scalars['ID']['input'];
|
|
174190
|
-
input:
|
|
174325
|
+
input: RadarUpsertAiScopedBudgetPoliciesInput;
|
|
174191
174326
|
};
|
|
174192
174327
|
export type MutationRadar_UpsertAiWorkspaceBudgetPolicyArgs = {
|
|
174193
174328
|
cloudId: Scalars['ID']['input'];
|
|
@@ -178303,6 +178438,7 @@ export type Query = {
|
|
|
178303
178438
|
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178304
178439
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178305
178440
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
178441
|
+
agentWorkspace_shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
178306
178442
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
178307
178443
|
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
178308
178444
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
@@ -178444,6 +178580,7 @@ export type Query = {
|
|
|
178444
178580
|
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
178445
178581
|
assetsVertical_asyncTasks?: Maybe<AssetsVerticalAsyncTaskConnection>;
|
|
178446
178582
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
178583
|
+
assetsVertical_checkPermissions?: Maybe<AssetsVerticalCheckPermissionsResult>;
|
|
178447
178584
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
178448
178585
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
178449
178586
|
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
@@ -178472,6 +178609,7 @@ export type Query = {
|
|
|
178472
178609
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
178473
178610
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
178474
178611
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
178612
|
+
assetsVertical_tenantContext?: Maybe<AssetsVerticalTenantContextResult>;
|
|
178475
178613
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
178476
178614
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
178477
178615
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
@@ -181801,6 +181939,7 @@ export type Query = {
|
|
|
181801
181939
|
tenant?: Maybe<Tenant>;
|
|
181802
181940
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
181803
181941
|
testing?: Maybe<Testing>;
|
|
181942
|
+
testingV2?: Maybe<Testing>;
|
|
181804
181943
|
timeseriesCount?: Maybe<TimeseriesCount>;
|
|
181805
181944
|
timeseriesPageBlogCount?: Maybe<TimeseriesPageBlogCount>;
|
|
181806
181945
|
timeseriesUniqueUserCount?: Maybe<TimeseriesUniqueUserCount>;
|
|
@@ -182678,6 +182817,10 @@ export type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
|
182678
182817
|
export type QueryAgentWorkspace_ShiftEditBoundsArgs = {
|
|
182679
182818
|
input: AgentWorkspaceShiftEditBoundsInput;
|
|
182680
182819
|
};
|
|
182820
|
+
export type QueryAgentWorkspace_ShiftReminderConfigArgs = {
|
|
182821
|
+
cloudId: Scalars['ID']['input'];
|
|
182822
|
+
projectId: Scalars['ID']['input'];
|
|
182823
|
+
};
|
|
182681
182824
|
export type QueryAgentWorkspace_ShiftsArgs = {
|
|
182682
182825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182683
182826
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -183453,6 +183596,10 @@ export type QueryAssetsVertical_BundleArgs = {
|
|
|
183453
183596
|
cloudId: Scalars['ID']['input'];
|
|
183454
183597
|
type: AssetsVerticalBundleType;
|
|
183455
183598
|
};
|
|
183599
|
+
export type QueryAssetsVertical_CheckPermissionsArgs = {
|
|
183600
|
+
checks: Array<AssetsVerticalPermissionCheckInput>;
|
|
183601
|
+
cloudId: Scalars['ID']['input'];
|
|
183602
|
+
};
|
|
183456
183603
|
export type QueryAssetsVertical_ConfiguredObjectTypesArgs = {
|
|
183457
183604
|
cloudId: Scalars['ID']['input'];
|
|
183458
183605
|
input: AssetsVerticalObjectTypesInput;
|
|
@@ -183570,6 +183717,9 @@ export type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
|
183570
183717
|
cloudId: Scalars['ID']['input'];
|
|
183571
183718
|
input: AssetsVerticalStockroomObjectsInput;
|
|
183572
183719
|
};
|
|
183720
|
+
export type QueryAssetsVertical_TenantContextArgs = {
|
|
183721
|
+
cloudId: Scalars['ID']['input'];
|
|
183722
|
+
};
|
|
183573
183723
|
export type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
183574
183724
|
cloudId: Scalars['ID']['input'];
|
|
183575
183725
|
id: Scalars['ID']['input'];
|
|
@@ -204681,6 +204831,12 @@ export type RadarCreateAiConnectorInput = {
|
|
|
204681
204831
|
provider: RadarAiConnectorProvider;
|
|
204682
204832
|
type: RadarAiConnectorType;
|
|
204683
204833
|
};
|
|
204834
|
+
export type RadarCreateSkillInput = {
|
|
204835
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
204836
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
204837
|
+
name: Scalars['String']['input'];
|
|
204838
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
204839
|
+
};
|
|
204684
204840
|
export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
204685
204841
|
__typename?: 'RadarCustomFieldDefinition';
|
|
204686
204842
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -205263,6 +205419,7 @@ export type RadarSkill = Node & {
|
|
|
205263
205419
|
description?: Maybe<Scalars['String']['output']>;
|
|
205264
205420
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
205265
205421
|
id: Scalars['ID']['output'];
|
|
205422
|
+
level?: Maybe<Scalars['Int']['output']>;
|
|
205266
205423
|
name: Scalars['String']['output'];
|
|
205267
205424
|
parent?: Maybe<RadarSkill>;
|
|
205268
205425
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -205417,6 +205574,15 @@ export type RadarUpdateSkillInput = {
|
|
|
205417
205574
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
205418
205575
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
205419
205576
|
};
|
|
205577
|
+
export type RadarUpsertAiScopedBudgetPoliciesInput = {
|
|
205578
|
+
deletedScopeFieldValues: Array<Scalars['String']['input']>;
|
|
205579
|
+
upserts: Array<RadarUpsertAiScopedBudgetPolicyInput>;
|
|
205580
|
+
};
|
|
205581
|
+
export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
205582
|
+
__typename?: 'RadarUpsertAiScopedBudgetPoliciesPayload';
|
|
205583
|
+
deletedScopeFieldValues: Array<Scalars['String']['output']>;
|
|
205584
|
+
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
205585
|
+
};
|
|
205420
205586
|
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
205421
205587
|
allowanceAmount: Scalars['Int']['input'];
|
|
205422
205588
|
scopeFieldValue: Scalars['String']['input'];
|
|
@@ -241117,6 +241283,18 @@ export type TrelloCopyCardActionDisplayEntities = {
|
|
|
241117
241283
|
list?: Maybe<TrelloActionListEntity>;
|
|
241118
241284
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
241119
241285
|
};
|
|
241286
|
+
export type TrelloCopyCardInput = {
|
|
241287
|
+
cardId: Scalars['ID']['input'];
|
|
241288
|
+
listId?: InputMaybe<Scalars['ID']['input']>;
|
|
241289
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
241290
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
241291
|
+
};
|
|
241292
|
+
export type TrelloCopyCardPayload = Payload & {
|
|
241293
|
+
__typename?: 'TrelloCopyCardPayload';
|
|
241294
|
+
card?: Maybe<TrelloBaseCard>;
|
|
241295
|
+
errors?: Maybe<Array<MutationError>>;
|
|
241296
|
+
success: Scalars['Boolean']['output'];
|
|
241297
|
+
};
|
|
241120
241298
|
export type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
241121
241299
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
241122
241300
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -242871,6 +243049,7 @@ export type TrelloMutationApi = {
|
|
|
242871
243049
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
242872
243050
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
242873
243051
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
243052
|
+
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
242874
243053
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
242875
243054
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
242876
243055
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
@@ -243046,6 +243225,9 @@ export type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
|
243046
243225
|
export type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
243047
243226
|
input: TrelloConvertTemplateToBoardInput;
|
|
243048
243227
|
};
|
|
243228
|
+
export type TrelloMutationApiCopyCardArgs = {
|
|
243229
|
+
input: TrelloCopyCardInput;
|
|
243230
|
+
};
|
|
243049
243231
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
243050
243232
|
input: TrelloCreateApplicationInput;
|
|
243051
243233
|
};
|