@forge/cli-shared 9.1.0-next.9 → 9.1.1-next.0
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 +33 -0
- package/out/graphql/graphql-types.d.ts +250 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +40 -33
- package/out/ui/text.d.ts +2 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -2
- package/package.json +2 -2
|
@@ -5638,7 +5638,7 @@ export type AdminWorkspaceTypeEdge = {
|
|
|
5638
5638
|
export type AdvisorySignalIndicator = {
|
|
5639
5639
|
__typename?: 'AdvisorySignalIndicator';
|
|
5640
5640
|
advisorySignalDescription?: Maybe<Scalars['JSON']['output']>;
|
|
5641
|
-
advisorySignalId
|
|
5641
|
+
advisorySignalId?: Maybe<Scalars['String']['output']>;
|
|
5642
5642
|
advisorySignalSummary?: Maybe<Scalars['String']['output']>;
|
|
5643
5643
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
5644
5644
|
};
|
|
@@ -5703,6 +5703,9 @@ export type AgentAiPanel = {
|
|
|
5703
5703
|
export type AgentAiPanelChangesFromLastVisitArgs = {
|
|
5704
5704
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
5705
5705
|
};
|
|
5706
|
+
export type AgentAiPanelShortSummaryArgs = {
|
|
5707
|
+
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
5708
|
+
};
|
|
5706
5709
|
export type AgentAiPanelRefreshPayload = {
|
|
5707
5710
|
__typename?: 'AgentAIPanelRefreshPayload';
|
|
5708
5711
|
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
@@ -5713,6 +5716,9 @@ export type AgentAiPanelRefreshPayload = {
|
|
|
5713
5716
|
export type AgentAiPanelRefreshPayloadChangesFromLastVisitArgs = {
|
|
5714
5717
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
5715
5718
|
};
|
|
5719
|
+
export type AgentAiPanelRefreshPayloadShortSummaryArgs = {
|
|
5720
|
+
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
5721
|
+
};
|
|
5716
5722
|
export type AgentAiPanelRefreshResult = AgentAiPanelRefreshPayload | QueryError;
|
|
5717
5723
|
export type AgentAiPanelResult = AgentAiPanel | QueryError;
|
|
5718
5724
|
export type AgentAiSuggestAction = {
|
|
@@ -8209,11 +8215,43 @@ export type AgentWorkspaceProjectSkillService = {
|
|
|
8209
8215
|
id: Scalars['ID']['output'];
|
|
8210
8216
|
name?: Maybe<Scalars['String']['output']>;
|
|
8211
8217
|
};
|
|
8218
|
+
export type AgentWorkspaceRebalancingCandidatePriority = {
|
|
8219
|
+
__typename?: 'AgentWorkspaceRebalancingCandidatePriority';
|
|
8220
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
8221
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8222
|
+
sequence?: Maybe<Scalars['Int']['output']>;
|
|
8223
|
+
};
|
|
8224
|
+
export type AgentWorkspaceRebalancingCandidateStatus = {
|
|
8225
|
+
__typename?: 'AgentWorkspaceRebalancingCandidateStatus';
|
|
8226
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8227
|
+
statusCategoryId?: Maybe<Scalars['String']['output']>;
|
|
8228
|
+
};
|
|
8229
|
+
export type AgentWorkspaceRebalancingCandidateUser = {
|
|
8230
|
+
__typename?: 'AgentWorkspaceRebalancingCandidateUser';
|
|
8231
|
+
accountId: Scalars['ID']['output'];
|
|
8232
|
+
name: Scalars['String']['output'];
|
|
8233
|
+
picture: Scalars['String']['output'];
|
|
8234
|
+
};
|
|
8235
|
+
export type AgentWorkspaceRebalancingCandidateWorkItem = {
|
|
8236
|
+
__typename?: 'AgentWorkspaceRebalancingCandidateWorkItem';
|
|
8237
|
+
assignee?: Maybe<AgentWorkspaceRebalancingCandidateUser>;
|
|
8238
|
+
issueARI: Scalars['ID']['output'];
|
|
8239
|
+
issueKey: Scalars['String']['output'];
|
|
8240
|
+
priority?: Maybe<AgentWorkspaceRebalancingCandidatePriority>;
|
|
8241
|
+
status?: Maybe<AgentWorkspaceRebalancingCandidateStatus>;
|
|
8242
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
8243
|
+
teamJiraSuppliedId?: Maybe<Scalars['ID']['output']>;
|
|
8244
|
+
};
|
|
8212
8245
|
export type AgentWorkspaceRebalancingRecommendation = {
|
|
8213
8246
|
__typename?: 'AgentWorkspaceRebalancingRecommendation';
|
|
8214
8247
|
sourceAgentId: Scalars['ID']['output'];
|
|
8215
8248
|
toAgentId: Scalars['ID']['output'];
|
|
8216
8249
|
};
|
|
8250
|
+
export type AgentWorkspaceRebalancingRecommendationsPayload = {
|
|
8251
|
+
__typename?: 'AgentWorkspaceRebalancingRecommendationsPayload';
|
|
8252
|
+
candidateWorkItems: Array<AgentWorkspaceRebalancingCandidateWorkItem>;
|
|
8253
|
+
recommendations: Array<AgentWorkspaceIssueRebalancingRecommendation>;
|
|
8254
|
+
};
|
|
8217
8255
|
export type AgentWorkspaceRecommendationError = {
|
|
8218
8256
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
8219
8257
|
message: Scalars['String']['output'];
|
|
@@ -10311,6 +10349,7 @@ export declare enum AppFeatureKey {
|
|
|
10311
10349
|
HasCustomLifecycle = "HAS_CUSTOM_LIFECYCLE",
|
|
10312
10350
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10313
10351
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10352
|
+
IsPersonalApp = "IS_PERSONAL_APP",
|
|
10314
10353
|
SupportsCompute = "SUPPORTS_COMPUTE"
|
|
10315
10354
|
}
|
|
10316
10355
|
export type AppFeaturesExposedCredentialsInput = {
|
|
@@ -10329,6 +10368,7 @@ export type AppFeaturesInput = {
|
|
|
10329
10368
|
hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10330
10369
|
hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
|
|
10331
10370
|
hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10371
|
+
isPersonalApp?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10332
10372
|
};
|
|
10333
10373
|
export type AppHostService = {
|
|
10334
10374
|
__typename?: 'AppHostService';
|
|
@@ -10371,6 +10411,7 @@ export type AppInstallation = {
|
|
|
10371
10411
|
installationContext: Scalars['ID']['output'];
|
|
10372
10412
|
isRecoverable: Scalars['Boolean']['output'];
|
|
10373
10413
|
license?: Maybe<AppInstallationLicense>;
|
|
10414
|
+
licenseId?: Maybe<Scalars['String']['output']>;
|
|
10374
10415
|
provisionedExternally?: Maybe<Scalars['Boolean']['output']>;
|
|
10375
10416
|
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
10376
10417
|
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -15750,6 +15791,7 @@ export type AssetsVerticalWorkbenchDashboard = {
|
|
|
15750
15791
|
viewId: Scalars['ID']['output'];
|
|
15751
15792
|
};
|
|
15752
15793
|
export declare enum AssetsVerticalWorkbenchDashboardErrorCode {
|
|
15794
|
+
Conflict = "CONFLICT",
|
|
15753
15795
|
InternalError = "INTERNAL_ERROR",
|
|
15754
15796
|
NotFound = "NOT_FOUND",
|
|
15755
15797
|
PermissionDenied = "PERMISSION_DENIED"
|
|
@@ -41075,6 +41117,41 @@ export type CustomerServiceAddConversationNotePayload = Payload & {
|
|
|
41075
41117
|
note?: Maybe<CustomerServiceConversationNote>;
|
|
41076
41118
|
success: Scalars['Boolean']['output'];
|
|
41077
41119
|
};
|
|
41120
|
+
export type CustomerServiceAgent = {
|
|
41121
|
+
__typename?: 'CustomerServiceAgent';
|
|
41122
|
+
activeChannels: Array<CustomerServiceAgentTaskChannel>;
|
|
41123
|
+
activitiesBySpace?: Maybe<CustomerServiceAgentSpaceActivityConnection>;
|
|
41124
|
+
activity?: Maybe<Scalars['String']['output']>;
|
|
41125
|
+
id: Scalars['ID']['output'];
|
|
41126
|
+
};
|
|
41127
|
+
export type CustomerServiceAgentActivitySpacesInput = {
|
|
41128
|
+
activity: Scalars['String']['input'];
|
|
41129
|
+
ids: Array<Scalars['ID']['input']>;
|
|
41130
|
+
};
|
|
41131
|
+
export type CustomerServiceAgentChannelActivity = {
|
|
41132
|
+
__typename?: 'CustomerServiceAgentChannelActivity';
|
|
41133
|
+
activity: Scalars['String']['output'];
|
|
41134
|
+
channel: CustomerServiceAgentTaskChannel;
|
|
41135
|
+
};
|
|
41136
|
+
export type CustomerServiceAgentSpaceActivity = {
|
|
41137
|
+
__typename?: 'CustomerServiceAgentSpaceActivity';
|
|
41138
|
+
channels: Array<CustomerServiceAgentChannelActivity>;
|
|
41139
|
+
id: Scalars['ID']['output'];
|
|
41140
|
+
};
|
|
41141
|
+
export type CustomerServiceAgentSpaceActivityConnection = {
|
|
41142
|
+
__typename?: 'CustomerServiceAgentSpaceActivityConnection';
|
|
41143
|
+
edges: Array<CustomerServiceAgentSpaceActivityEdge>;
|
|
41144
|
+
pageInfo: PageInfo;
|
|
41145
|
+
};
|
|
41146
|
+
export type CustomerServiceAgentSpaceActivityEdge = {
|
|
41147
|
+
__typename?: 'CustomerServiceAgentSpaceActivityEdge';
|
|
41148
|
+
cursor: Scalars['String']['output'];
|
|
41149
|
+
node: CustomerServiceAgentSpaceActivity;
|
|
41150
|
+
};
|
|
41151
|
+
export declare enum CustomerServiceAgentTaskChannel {
|
|
41152
|
+
Chat = "CHAT",
|
|
41153
|
+
Voice = "VOICE"
|
|
41154
|
+
}
|
|
41078
41155
|
export type CustomerServiceAiIssueSource = {
|
|
41079
41156
|
__typename?: 'CustomerServiceAiIssueSource';
|
|
41080
41157
|
issueKey: Scalars['String']['output'];
|
|
@@ -42572,6 +42649,19 @@ export type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
|
42572
42649
|
success: Scalars['Boolean']['output'];
|
|
42573
42650
|
successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
|
|
42574
42651
|
};
|
|
42652
|
+
export type CustomerServiceUpdateAgentAvailabilityInput = {
|
|
42653
|
+
activitiesBySpace: Array<CustomerServiceAgentActivitySpacesInput>;
|
|
42654
|
+
activity: Scalars['String']['input'];
|
|
42655
|
+
channels: Array<CustomerServiceAgentTaskChannel>;
|
|
42656
|
+
id: Scalars['ID']['input'];
|
|
42657
|
+
};
|
|
42658
|
+
export type CustomerServiceUpdateAgentAvailabilityPayload = Payload & {
|
|
42659
|
+
__typename?: 'CustomerServiceUpdateAgentAvailabilityPayload';
|
|
42660
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42661
|
+
id: Scalars['ID']['output'];
|
|
42662
|
+
success: Scalars['Boolean']['output'];
|
|
42663
|
+
successfullyUpdatedAgent?: Maybe<CustomerServiceAgent>;
|
|
42664
|
+
};
|
|
42575
42665
|
export type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
42576
42666
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
42577
42667
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -43854,6 +43944,7 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
43854
43944
|
}
|
|
43855
43945
|
export type DevAiAutodevNextWorkstreamSettings = {
|
|
43856
43946
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
43947
|
+
assigneeDenylist?: Maybe<Array<User>>;
|
|
43857
43948
|
assignees?: Maybe<Array<User>>;
|
|
43858
43949
|
boysenberrySessionInitiator?: Maybe<Scalars['ID']['output']>;
|
|
43859
43950
|
classificationRepositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -43869,6 +43960,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
43869
43960
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
43870
43961
|
};
|
|
43871
43962
|
export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
43963
|
+
assigneeDenylist?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43872
43964
|
assignees?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43873
43965
|
boysenberrySessionInitiator?: InputMaybe<DevAiAutodevNextBoysenberrySessionInitiatorInput>;
|
|
43874
43966
|
classificationRepositoryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52748,7 +52840,6 @@ export type GraphInferenceInferredProjectMeResponse = {
|
|
|
52748
52840
|
context?: Maybe<GraphInferenceInferredProjectContext>;
|
|
52749
52841
|
inferredProjects?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
52750
52842
|
viewer?: Maybe<GraphInferenceInferredProjectViewer>;
|
|
52751
|
-
weeklyProgressSummary: Scalars['JSON']['output'];
|
|
52752
52843
|
};
|
|
52753
52844
|
export type GraphInferenceInferredProjectViewer = {
|
|
52754
52845
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
@@ -117754,10 +117845,10 @@ export type HydratingJiraIssueEdge = {
|
|
|
117754
117845
|
};
|
|
117755
117846
|
export type HypothesisIndicator = {
|
|
117756
117847
|
__typename?: 'HypothesisIndicator';
|
|
117757
|
-
hypothesisId
|
|
117848
|
+
hypothesisId?: Maybe<Scalars['String']['output']>;
|
|
117758
117849
|
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
117759
117850
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
117760
|
-
investigationId
|
|
117851
|
+
investigationId?: Maybe<Scalars['String']['output']>;
|
|
117761
117852
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
117762
117853
|
};
|
|
117763
117854
|
export type Icon = {
|
|
@@ -117793,7 +117884,7 @@ export type IndexHintInputType = {
|
|
|
117793
117884
|
export type IndicatorProvenance = {
|
|
117794
117885
|
__typename?: 'IndicatorProvenance';
|
|
117795
117886
|
link?: Maybe<Scalars['String']['output']>;
|
|
117796
|
-
sourceId
|
|
117887
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
117797
117888
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
117798
117889
|
};
|
|
117799
117890
|
export declare enum IndicatorRejectionReason {
|
|
@@ -121431,6 +121522,7 @@ export declare enum JiraBoardType {
|
|
|
121431
121522
|
export type JiraBoardView = JiraView & Node & {
|
|
121432
121523
|
__typename?: 'JiraBoardView';
|
|
121433
121524
|
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
121525
|
+
availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
|
|
121434
121526
|
board?: Maybe<JiraBoard>;
|
|
121435
121527
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
121436
121528
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121472,6 +121564,11 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
121472
121564
|
sprints?: Maybe<JiraSprintConnection>;
|
|
121473
121565
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
121474
121566
|
};
|
|
121567
|
+
export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
121568
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121569
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121570
|
+
issueId: Scalars['ID']['input'];
|
|
121571
|
+
};
|
|
121475
121572
|
export type JiraBoardViewCanMoveIssueBetweenSwimlanesArgs = {
|
|
121476
121573
|
issueId: Scalars['ID']['input'];
|
|
121477
121574
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -121703,6 +121800,19 @@ export type JiraBoardViewFieldSwimlaneUser = {
|
|
|
121703
121800
|
user?: Maybe<User>;
|
|
121704
121801
|
};
|
|
121705
121802
|
export type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
121803
|
+
export type JiraBoardViewInlineCreatableField = {
|
|
121804
|
+
__typename?: 'JiraBoardViewInlineCreatableField';
|
|
121805
|
+
field?: Maybe<JiraField>;
|
|
121806
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
121807
|
+
};
|
|
121808
|
+
export type JiraBoardViewInlineCreatableIssueType = {
|
|
121809
|
+
__typename?: 'JiraBoardViewInlineCreatableIssueType';
|
|
121810
|
+
inlineCreatableFields?: Maybe<Array<JiraBoardViewInlineCreatableField>>;
|
|
121811
|
+
issueType?: Maybe<JiraIssueType>;
|
|
121812
|
+
};
|
|
121813
|
+
export type JiraBoardViewInlineCreatableIssueTypeInlineCreatableFieldsArgs = {
|
|
121814
|
+
fieldIdsOrAliases: Array<Scalars['ID']['input']>;
|
|
121815
|
+
};
|
|
121706
121816
|
export type JiraBoardViewInput = {
|
|
121707
121817
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
121708
121818
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -121902,6 +122012,7 @@ export type JiraBoardViewWorkflow = {
|
|
|
121902
122012
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
121903
122013
|
eligibleTransitions?: Maybe<JiraTransitionConnection>;
|
|
121904
122014
|
id: Scalars['ID']['output'];
|
|
122015
|
+
inlineCreatableIssueTypes?: Maybe<Array<JiraBoardViewInlineCreatableIssueType>>;
|
|
121905
122016
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
121906
122017
|
name?: Maybe<Scalars['String']['output']>;
|
|
121907
122018
|
workflowEntityId: Scalars['ID']['output'];
|
|
@@ -129257,6 +129368,8 @@ export type JiraIssueFieldConfig = Node & {
|
|
|
129257
129368
|
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
129258
129369
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
129259
129370
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
129371
|
+
translatedDescription?: Maybe<Scalars['String']['output']>;
|
|
129372
|
+
translatedName?: Maybe<Scalars['String']['output']>;
|
|
129260
129373
|
translations?: Maybe<Array<JiraFieldTranslation>>;
|
|
129261
129374
|
translationsCount?: Maybe<Scalars['Int']['output']>;
|
|
129262
129375
|
translationsLanguagesAvailableToAdd?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -130380,9 +130493,11 @@ export type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
130380
130493
|
barColorMode?: Maybe<JiraBarColorMode>;
|
|
130381
130494
|
hideDependencies?: Maybe<Scalars['Boolean']['output']>;
|
|
130382
130495
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
130496
|
+
hideUnParentedItems?: Maybe<Scalars['Boolean']['output']>;
|
|
130383
130497
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
130384
130498
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
130385
130499
|
lastAppliedFilters?: Maybe<JiraTimelineLastAppliedFilters>;
|
|
130500
|
+
maxHierarchyLevel?: Maybe<Scalars['Int']['output']>;
|
|
130386
130501
|
rangeMode?: Maybe<JiraTimelineViewRangeMode>;
|
|
130387
130502
|
};
|
|
130388
130503
|
export type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
@@ -137265,6 +137380,7 @@ export type JiraQuery = {
|
|
|
137265
137380
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
137266
137381
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
137267
137382
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
137383
|
+
requiresFigmaStatusUpdatesConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
137268
137384
|
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
137269
137385
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
137270
137386
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -138464,6 +138580,9 @@ export type JiraQueryRequestTypesArgs = {
|
|
|
138464
138580
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138465
138581
|
projectId: Scalars['ID']['input'];
|
|
138466
138582
|
};
|
|
138583
|
+
export type JiraQueryRequiresFigmaStatusUpdatesConfigurationArgs = {
|
|
138584
|
+
cloudId: Scalars['ID']['input'];
|
|
138585
|
+
};
|
|
138467
138586
|
export type JiraQueryResourceUsageCustomFieldRecommendationsArgs = {
|
|
138468
138587
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
138469
138588
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -138880,6 +138999,7 @@ export type JiraReleaseHistoryItem = {
|
|
|
138880
138999
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
138881
139000
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
138882
139001
|
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
139002
|
+
i18nFieldName?: Maybe<Scalars['String']['output']>;
|
|
138883
139003
|
id: Scalars['ID']['output'];
|
|
138884
139004
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
138885
139005
|
to?: Maybe<JiraReleaseHistoryValue>;
|
|
@@ -139912,9 +140032,13 @@ export declare enum JiraReviewState {
|
|
|
139912
140032
|
export type JiraRichText = {
|
|
139913
140033
|
__typename?: 'JiraRichText';
|
|
139914
140034
|
adfValue?: Maybe<JiraAdf>;
|
|
140035
|
+
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
139915
140036
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
139916
140037
|
wikiValue?: Maybe<Scalars['String']['output']>;
|
|
139917
140038
|
};
|
|
140039
|
+
export type JiraRichTextConvertedPlainTextArgs = {
|
|
140040
|
+
firstNCharacters?: InputMaybe<Scalars['Int']['input']>;
|
|
140041
|
+
};
|
|
139918
140042
|
export type JiraRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
139919
140043
|
__typename?: 'JiraRichTextField';
|
|
139920
140044
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -142448,6 +142572,16 @@ export type JiraSetTimelineViewHideReleasesPayload = Payload & {
|
|
|
142448
142572
|
success: Scalars['Boolean']['output'];
|
|
142449
142573
|
view?: Maybe<JiraView>;
|
|
142450
142574
|
};
|
|
142575
|
+
export type JiraSetTimelineViewHideUnParentedItemsInput = {
|
|
142576
|
+
hideUnParentedItems: Scalars['Boolean']['input'];
|
|
142577
|
+
viewId: Scalars['ID']['input'];
|
|
142578
|
+
};
|
|
142579
|
+
export type JiraSetTimelineViewHideUnParentedItemsPayload = Payload & {
|
|
142580
|
+
__typename?: 'JiraSetTimelineViewHideUnParentedItemsPayload';
|
|
142581
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142582
|
+
success: Scalars['Boolean']['output'];
|
|
142583
|
+
view?: Maybe<JiraView>;
|
|
142584
|
+
};
|
|
142451
142585
|
export type JiraSetTimelineViewHideWarningsInput = {
|
|
142452
142586
|
hideWarnings: Scalars['Boolean']['input'];
|
|
142453
142587
|
viewId: Scalars['ID']['input'];
|
|
@@ -142458,6 +142592,16 @@ export type JiraSetTimelineViewHideWarningsPayload = Payload & {
|
|
|
142458
142592
|
success: Scalars['Boolean']['output'];
|
|
142459
142593
|
view?: Maybe<JiraView>;
|
|
142460
142594
|
};
|
|
142595
|
+
export type JiraSetTimelineViewMaxHierarchyLevelInput = {
|
|
142596
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
142597
|
+
viewId: Scalars['ID']['input'];
|
|
142598
|
+
};
|
|
142599
|
+
export type JiraSetTimelineViewMaxHierarchyLevelPayload = Payload & {
|
|
142600
|
+
__typename?: 'JiraSetTimelineViewMaxHierarchyLevelPayload';
|
|
142601
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142602
|
+
success: Scalars['Boolean']['output'];
|
|
142603
|
+
view?: Maybe<JiraView>;
|
|
142604
|
+
};
|
|
142461
142605
|
export type JiraSetTimelineViewRangeModeInput = {
|
|
142462
142606
|
rangeMode: JiraTimelineViewRangeMode;
|
|
142463
142607
|
viewId: Scalars['ID']['input'];
|
|
@@ -144118,7 +144262,9 @@ export type JiraTimelineSearchFilterInput = {
|
|
|
144118
144262
|
export type JiraTimelineStaticViewInput = {
|
|
144119
144263
|
hideDependencies?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144120
144264
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144265
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144121
144266
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144267
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
144122
144268
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
144123
144269
|
};
|
|
144124
144270
|
export type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
@@ -145340,6 +145486,7 @@ export type JiraUserPreferences = {
|
|
|
145340
145486
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
145341
145487
|
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
145342
145488
|
workItemFavouriteFields?: Maybe<Scalars['String']['output']>;
|
|
145489
|
+
workItemViewContextGroupSections?: Maybe<Scalars['String']['output']>;
|
|
145343
145490
|
workItemViewFavouriteFields?: Maybe<Scalars['String']['output']>;
|
|
145344
145491
|
};
|
|
145345
145492
|
export type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
@@ -145377,6 +145524,9 @@ export type JiraUserPreferencesWorkItemFavouriteFieldsArgs = {
|
|
|
145377
145524
|
issueTypeId: Scalars['String']['input'];
|
|
145378
145525
|
projectKey: Scalars['String']['input'];
|
|
145379
145526
|
};
|
|
145527
|
+
export type JiraUserPreferencesWorkItemViewContextGroupSectionsArgs = {
|
|
145528
|
+
issueKey: Scalars['String']['input'];
|
|
145529
|
+
};
|
|
145380
145530
|
export type JiraUserPreferencesWorkItemViewFavouriteFieldsArgs = {
|
|
145381
145531
|
issueKey: Scalars['String']['input'];
|
|
145382
145532
|
};
|
|
@@ -157021,6 +157171,7 @@ export type MarketplaceStoreSiteDetailsResponse = {
|
|
|
157021
157171
|
export type MarketplaceStoreSiteInfoInput = {
|
|
157022
157172
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
157023
157173
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
157174
|
+
returnDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157024
157175
|
};
|
|
157025
157176
|
export type MarketplaceStoreSiteInfoResult = {
|
|
157026
157177
|
__typename?: 'MarketplaceStoreSiteInfoResult';
|
|
@@ -165659,9 +165810,9 @@ export type Mitigation = Node & {
|
|
|
165659
165810
|
__typename?: 'Mitigation';
|
|
165660
165811
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165661
165812
|
id: Scalars['ID']['output'];
|
|
165662
|
-
scopeId
|
|
165813
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
165663
165814
|
scopeType?: Maybe<MitigationScopeType>;
|
|
165664
|
-
state
|
|
165815
|
+
state?: Maybe<MitigationGenerationState>;
|
|
165665
165816
|
triggeredBy?: Maybe<User>;
|
|
165666
165817
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165667
165818
|
version?: Maybe<Scalars['Int']['output']>;
|
|
@@ -165699,9 +165850,9 @@ export type MitigationIndicator = Node & {
|
|
|
165699
165850
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165700
165851
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
165701
165852
|
id: Scalars['ID']['output'];
|
|
165702
|
-
indicatorId
|
|
165853
|
+
indicatorId?: Maybe<Scalars['ID']['output']>;
|
|
165703
165854
|
indicatorType?: Maybe<MitigationIndicatorType>;
|
|
165704
|
-
mitigationId
|
|
165855
|
+
mitigationId?: Maybe<Scalars['ID']['output']>;
|
|
165705
165856
|
plans?: Maybe<Array<MitigationPlan>>;
|
|
165706
165857
|
rejected?: Maybe<Scalars['Boolean']['output']>;
|
|
165707
165858
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -165730,10 +165881,10 @@ export type MitigationPlan = Node & {
|
|
|
165730
165881
|
__typename?: 'MitigationPlan';
|
|
165731
165882
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165732
165883
|
id: Scalars['ID']['output'];
|
|
165733
|
-
indicatorId
|
|
165734
|
-
mitigationId
|
|
165884
|
+
indicatorId?: Maybe<Scalars['ID']['output']>;
|
|
165885
|
+
mitigationId?: Maybe<Scalars['ID']['output']>;
|
|
165735
165886
|
planSources?: Maybe<Array<PlanSource>>;
|
|
165736
|
-
playbook?: Maybe<
|
|
165887
|
+
playbook?: Maybe<JiraPlaybookInstance>;
|
|
165737
165888
|
rejected?: Maybe<Scalars['Boolean']['output']>;
|
|
165738
165889
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165739
165890
|
rejectedBy?: Maybe<User>;
|
|
@@ -166436,6 +166587,7 @@ export type Mutation = {
|
|
|
166436
166587
|
csm_escalateWorkItem?: Maybe<CustomerServiceEscalateWorkItemPayload>;
|
|
166437
166588
|
csm_removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
166438
166589
|
csm_returnEscalation?: Maybe<CustomerServiceReturnEscalationPayload>;
|
|
166590
|
+
csm_updateAgentAvailability?: Maybe<CustomerServiceUpdateAgentAvailabilityPayload>;
|
|
166439
166591
|
csm_updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
166440
166592
|
csm_updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
166441
166593
|
csm_updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
|
|
@@ -166937,7 +167089,9 @@ export type Mutation = {
|
|
|
166937
167089
|
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
166938
167090
|
jira_setTimelineViewHideDependencies?: Maybe<JiraSetTimelineViewHideDependenciesPayload>;
|
|
166939
167091
|
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
167092
|
+
jira_setTimelineViewHideUnParentedItems?: Maybe<JiraSetTimelineViewHideUnParentedItemsPayload>;
|
|
166940
167093
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
167094
|
+
jira_setTimelineViewMaxHierarchyLevel?: Maybe<JiraSetTimelineViewMaxHierarchyLevelPayload>;
|
|
166941
167095
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
166942
167096
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
166943
167097
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -167187,6 +167341,7 @@ export type Mutation = {
|
|
|
167187
167341
|
radar_updateMetricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
167188
167342
|
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
167189
167343
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
167344
|
+
radar_updateSkill?: Maybe<RadarSkill>;
|
|
167190
167345
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
167191
167346
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
167192
167347
|
radar_upsertView?: Maybe<RadarView>;
|
|
@@ -169749,6 +169904,10 @@ export type MutationCsm_ReturnEscalationArgs = {
|
|
|
169749
169904
|
projectId: Scalars['ID']['input'];
|
|
169750
169905
|
workItemId: Scalars['ID']['input'];
|
|
169751
169906
|
};
|
|
169907
|
+
export type MutationCsm_UpdateAgentAvailabilityArgs = {
|
|
169908
|
+
cloudId: Scalars['ID']['input'];
|
|
169909
|
+
input: CustomerServiceUpdateAgentAvailabilityInput;
|
|
169910
|
+
};
|
|
169752
169911
|
export type MutationCsm_UpdateCustomDetailArgs = {
|
|
169753
169912
|
cloudId: Scalars['ID']['input'];
|
|
169754
169913
|
input: CustomerServiceCustomDetailUpdateInput;
|
|
@@ -171314,9 +171473,15 @@ export type MutationJira_SetTimelineViewHideDependenciesArgs = {
|
|
|
171314
171473
|
export type MutationJira_SetTimelineViewHideReleasesArgs = {
|
|
171315
171474
|
input: JiraSetTimelineViewHideReleasesInput;
|
|
171316
171475
|
};
|
|
171476
|
+
export type MutationJira_SetTimelineViewHideUnParentedItemsArgs = {
|
|
171477
|
+
input: JiraSetTimelineViewHideUnParentedItemsInput;
|
|
171478
|
+
};
|
|
171317
171479
|
export type MutationJira_SetTimelineViewHideWarningsArgs = {
|
|
171318
171480
|
input: JiraSetTimelineViewHideWarningsInput;
|
|
171319
171481
|
};
|
|
171482
|
+
export type MutationJira_SetTimelineViewMaxHierarchyLevelArgs = {
|
|
171483
|
+
input: JiraSetTimelineViewMaxHierarchyLevelInput;
|
|
171484
|
+
};
|
|
171320
171485
|
export type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
171321
171486
|
input: JiraSetTimelineViewRangeModeInput;
|
|
171322
171487
|
};
|
|
@@ -171609,8 +171774,7 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
171609
171774
|
workspaceAri: Scalars['ID']['input'];
|
|
171610
171775
|
};
|
|
171611
171776
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
171612
|
-
|
|
171613
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
171777
|
+
id: Scalars['ID']['input'];
|
|
171614
171778
|
};
|
|
171615
171779
|
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
171616
171780
|
id: Scalars['ID']['input'];
|
|
@@ -171635,8 +171799,7 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
171635
171799
|
workspaceAri: Scalars['ID']['input'];
|
|
171636
171800
|
};
|
|
171637
171801
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
171638
|
-
|
|
171639
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
171802
|
+
id: Scalars['ID']['input'];
|
|
171640
171803
|
};
|
|
171641
171804
|
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
171642
171805
|
id: Scalars['ID']['input'];
|
|
@@ -172178,6 +172341,10 @@ export type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
|
|
|
172178
172341
|
cloudId: Scalars['ID']['input'];
|
|
172179
172342
|
input: RadarUpdatePositionLaborCostEstimateSettingsInput;
|
|
172180
172343
|
};
|
|
172344
|
+
export type MutationRadar_UpdateSkillArgs = {
|
|
172345
|
+
cloudId: Scalars['ID']['input'];
|
|
172346
|
+
input: RadarUpdateSkillInput;
|
|
172347
|
+
};
|
|
172181
172348
|
export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
172182
172349
|
cloudId: Scalars['ID']['input'];
|
|
172183
172350
|
input: RadarWorkspaceSettingsInput;
|
|
@@ -174858,7 +175025,7 @@ export declare enum PlanRejectionReason {
|
|
|
174858
175025
|
export type PlanSource = {
|
|
174859
175026
|
__typename?: 'PlanSource';
|
|
174860
175027
|
documentType?: Maybe<MitigationDocumentType>;
|
|
174861
|
-
sourceId
|
|
175028
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
174862
175029
|
title?: Maybe<Scalars['String']['output']>;
|
|
174863
175030
|
url?: Maybe<Scalars['String']['output']>;
|
|
174864
175031
|
};
|
|
@@ -176264,6 +176431,7 @@ export type Query = {
|
|
|
176264
176431
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
176265
176432
|
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
176266
176433
|
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
176434
|
+
agentWorkspace_agentRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
176267
176435
|
agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
176268
176436
|
agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
176269
176437
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
@@ -176305,6 +176473,7 @@ export type Query = {
|
|
|
176305
176473
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
176306
176474
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
176307
176475
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
176476
|
+
agentWorkspace_teamRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
176308
176477
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
176309
176478
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
176310
176479
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
@@ -177041,6 +177210,7 @@ export type Query = {
|
|
|
177041
177210
|
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
177042
177211
|
goals_slackChannels?: Maybe<TownsquareSlackChannelConnection>;
|
|
177043
177212
|
goals_slackTeams?: Maybe<Array<Maybe<TownsquareSlackTeam>>>;
|
|
177213
|
+
goals_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
177044
177214
|
graphInference_getJiraEntityContext?: Maybe<GraphInferenceGetJiraEntityContextResponse>;
|
|
177045
177215
|
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
177046
177216
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
@@ -179242,6 +179412,7 @@ export type Query = {
|
|
|
179242
179412
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
179243
179413
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
179244
179414
|
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
179415
|
+
jira_issueCreateLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
179245
179416
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
179246
179417
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
179247
179418
|
jira_issueStatusesByIds?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
@@ -179517,6 +179688,7 @@ export type Query = {
|
|
|
179517
179688
|
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
179518
179689
|
projects_slackChannels?: Maybe<TownsquareSlackChannelConnection>;
|
|
179519
179690
|
projects_slackTeams?: Maybe<Array<Maybe<TownsquareSlackTeam>>>;
|
|
179691
|
+
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
179520
179692
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
179521
179693
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
179522
179694
|
ptpage?: Maybe<PtPage>;
|
|
@@ -180463,6 +180635,9 @@ export type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
|
180463
180635
|
export type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
180464
180636
|
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
180465
180637
|
};
|
|
180638
|
+
export type QueryAgentWorkspace_AgentRebalancingRecommendationsV2Args = {
|
|
180639
|
+
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
180640
|
+
};
|
|
180466
180641
|
export type QueryAgentWorkspace_AgentUsersInProjectArgs = {
|
|
180467
180642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
180468
180643
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -180684,6 +180859,9 @@ export type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
|
180684
180859
|
export type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
|
|
180685
180860
|
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
180686
180861
|
};
|
|
180862
|
+
export type QueryAgentWorkspace_TeamRebalancingRecommendationsV2Args = {
|
|
180863
|
+
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
180864
|
+
};
|
|
180687
180865
|
export type QueryAgentWorkspace_TeamRebalancingSummariesArgs = {
|
|
180688
180866
|
input: AgentWorkspaceTeamRebalancingSummariesInput;
|
|
180689
180867
|
};
|
|
@@ -181005,6 +181183,7 @@ export type QueryAssetsDm_AllCleansingRulesArgs = {
|
|
|
181005
181183
|
};
|
|
181006
181184
|
export type QueryAssetsDm_AttributePrioritiesListArgs = {
|
|
181007
181185
|
cloudId: Scalars['ID']['input'];
|
|
181186
|
+
objectClassId?: InputMaybe<Scalars['ID']['input']>;
|
|
181008
181187
|
search?: InputMaybe<AssetsDmAttributePrioritySearch>;
|
|
181009
181188
|
sortBy?: InputMaybe<AssetsDmAttributePrioritySort>;
|
|
181010
181189
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -181127,6 +181306,7 @@ export type QueryAssetsDm_DataSourceTypesArgs = {
|
|
|
181127
181306
|
};
|
|
181128
181307
|
export type QueryAssetsDm_DataSourcesListArgs = {
|
|
181129
181308
|
cloudId: Scalars['ID']['input'];
|
|
181309
|
+
objectClassId?: InputMaybe<Scalars['ID']['input']>;
|
|
181130
181310
|
search?: InputMaybe<AssetsDmDataSourceSearch>;
|
|
181131
181311
|
sortBy?: InputMaybe<AssetsDmDataSourceSort>;
|
|
181132
181312
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -184098,6 +184278,11 @@ export type QueryGoals_SlackChannelsArgs = {
|
|
|
184098
184278
|
export type QueryGoals_SlackTeamsArgs = {
|
|
184099
184279
|
containerId: Scalars['ID']['input'];
|
|
184100
184280
|
};
|
|
184281
|
+
export type QueryGoals_StatusSummaryArgs = {
|
|
184282
|
+
containerId: Scalars['ID']['input'];
|
|
184283
|
+
endDate: Scalars['DateTime']['input'];
|
|
184284
|
+
startDate: Scalars['DateTime']['input'];
|
|
184285
|
+
};
|
|
184101
184286
|
export type QueryGraphInference_GetJiraEntityContextArgs = {
|
|
184102
184287
|
input: GraphInferenceGetJiraEntityContextInput;
|
|
184103
184288
|
};
|
|
@@ -184122,6 +184307,7 @@ export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
|
184122
184307
|
export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
184123
184308
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
184124
184309
|
cloudId: Scalars['ID']['input'];
|
|
184310
|
+
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
184125
184311
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
184126
184312
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
184127
184313
|
surface?: InputMaybe<GraphIntegrationSurface>;
|
|
@@ -200064,6 +200250,13 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
200064
200250
|
project?: InputMaybe<JiraProjectInput>;
|
|
200065
200251
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
200066
200252
|
};
|
|
200253
|
+
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
200254
|
+
cloudId: Scalars['ID']['input'];
|
|
200255
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
200256
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
200257
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
200258
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
200259
|
+
};
|
|
200067
200260
|
export type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
|
|
200068
200261
|
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
200069
200262
|
issueIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -201067,6 +201260,11 @@ export type QueryProjects_SlackChannelsArgs = {
|
|
|
201067
201260
|
export type QueryProjects_SlackTeamsArgs = {
|
|
201068
201261
|
containerId: Scalars['ID']['input'];
|
|
201069
201262
|
};
|
|
201263
|
+
export type QueryProjects_StatusSummaryArgs = {
|
|
201264
|
+
containerId: Scalars['ID']['input'];
|
|
201265
|
+
endDate: Scalars['DateTime']['input'];
|
|
201266
|
+
startDate: Scalars['DateTime']['input'];
|
|
201267
|
+
};
|
|
201070
201268
|
export type QueryProjects_StatusSummaryForTagArgs = {
|
|
201071
201269
|
tagId: Scalars['ID']['input'];
|
|
201072
201270
|
};
|
|
@@ -203120,6 +203318,13 @@ export type RadarUpdatePositionLaborCostResponse = {
|
|
|
203120
203318
|
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
203121
203319
|
success: Scalars['Boolean']['output'];
|
|
203122
203320
|
};
|
|
203321
|
+
export type RadarUpdateSkillInput = {
|
|
203322
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
203323
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
203324
|
+
id: Scalars['ID']['input'];
|
|
203325
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
203326
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
203327
|
+
};
|
|
203123
203328
|
export type RadarUpsertViewInput = {
|
|
203124
203329
|
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
203125
203330
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -203528,7 +203733,7 @@ export type RegisterTunnelResponse = Payload & {
|
|
|
203528
203733
|
};
|
|
203529
203734
|
export type RejectIndicatorInput = {
|
|
203530
203735
|
id: Scalars['ID']['input'];
|
|
203531
|
-
reason
|
|
203736
|
+
reason?: InputMaybe<IndicatorRejectionReason>;
|
|
203532
203737
|
};
|
|
203533
203738
|
export type RejectIndicatorPayload = Payload & {
|
|
203534
203739
|
__typename?: 'RejectIndicatorPayload';
|
|
@@ -203538,7 +203743,7 @@ export type RejectIndicatorPayload = Payload & {
|
|
|
203538
203743
|
};
|
|
203539
203744
|
export type RejectPlanInput = {
|
|
203540
203745
|
id: Scalars['ID']['input'];
|
|
203541
|
-
reason
|
|
203746
|
+
reason?: InputMaybe<PlanRejectionReason>;
|
|
203542
203747
|
};
|
|
203543
203748
|
export type RejectPlanPayload = Payload & {
|
|
203544
203749
|
__typename?: 'RejectPlanPayload';
|
|
@@ -206640,6 +206845,7 @@ export type SearchTimeseriesCount = {
|
|
|
206640
206845
|
nodes: Array<TimeseriesCountItem>;
|
|
206641
206846
|
};
|
|
206642
206847
|
export type SearchToolContext = {
|
|
206848
|
+
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
206643
206849
|
isSynthetic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206644
206850
|
};
|
|
206645
206851
|
export type SearchTrelloFilter = {
|
|
@@ -230685,7 +230891,7 @@ export declare enum SwimlaneStrategy {
|
|
|
230685
230891
|
export type SymptomIndicator = {
|
|
230686
230892
|
__typename?: 'SymptomIndicator';
|
|
230687
230893
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
230688
|
-
symptomId
|
|
230894
|
+
symptomId?: Maybe<Scalars['String']['output']>;
|
|
230689
230895
|
symptomSummary?: Maybe<Scalars['String']['output']>;
|
|
230690
230896
|
symptomType?: Maybe<MitigationSymptomType>;
|
|
230691
230897
|
};
|
|
@@ -232486,7 +232692,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
232486
232692
|
Create = "CREATE"
|
|
232487
232693
|
}
|
|
232488
232694
|
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
232489
|
-
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
232695
|
+
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetPeriodsChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
232490
232696
|
export type TownsquareActivityItem = {
|
|
232491
232697
|
__typename?: 'TownsquareActivityItem';
|
|
232492
232698
|
actor?: Maybe<User>;
|
|
@@ -234542,6 +234748,13 @@ export type TownsquareMetricTargetPeriodConnection = {
|
|
|
234542
234748
|
edges?: Maybe<Array<Maybe<TownsquareMetricTargetPeriodEdge>>>;
|
|
234543
234749
|
pageInfo: PageInfo;
|
|
234544
234750
|
};
|
|
234751
|
+
export type TownsquareMetricTargetPeriodDiff = {
|
|
234752
|
+
__typename?: 'TownsquareMetricTargetPeriodDiff';
|
|
234753
|
+
newValue?: Maybe<Scalars['Float']['output']>;
|
|
234754
|
+
oldValue?: Maybe<Scalars['Float']['output']>;
|
|
234755
|
+
periodStart: Scalars['String']['output'];
|
|
234756
|
+
periodType: TownsquareTargetDateType;
|
|
234757
|
+
};
|
|
234545
234758
|
export type TownsquareMetricTargetPeriodEdge = {
|
|
234546
234759
|
__typename?: 'TownsquareMetricTargetPeriodEdge';
|
|
234547
234760
|
cursor: Scalars['String']['output'];
|
|
@@ -234556,6 +234769,10 @@ export type TownsquareMetricTargetPeriodToMetricValueEdge = {
|
|
|
234556
234769
|
node?: Maybe<TownsquareMetricValue>;
|
|
234557
234770
|
variance?: Maybe<Scalars['Float']['output']>;
|
|
234558
234771
|
};
|
|
234772
|
+
export type TownsquareMetricTargetPeriodsChange = {
|
|
234773
|
+
__typename?: 'TownsquareMetricTargetPeriodsChange';
|
|
234774
|
+
periods?: Maybe<Array<TownsquareMetricTargetPeriodDiff>>;
|
|
234775
|
+
};
|
|
234559
234776
|
export type TownsquareMetricTargetToMetricValueConnection = {
|
|
234560
234777
|
__typename?: 'TownsquareMetricTargetToMetricValueConnection';
|
|
234561
234778
|
edges?: Maybe<Array<Maybe<TownsquareMetricTargetToMetricValueEdge>>>;
|
|
@@ -236150,6 +236367,7 @@ export type TownsquareShareProjectUserInput = {
|
|
|
236150
236367
|
};
|
|
236151
236368
|
export type TownsquareSlackChannel = {
|
|
236152
236369
|
__typename?: 'TownsquareSlackChannel';
|
|
236370
|
+
loggedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
236153
236371
|
name?: Maybe<Scalars['String']['output']>;
|
|
236154
236372
|
numMembers?: Maybe<Scalars['Int']['output']>;
|
|
236155
236373
|
private?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -236190,6 +236408,7 @@ export type TownsquareSlackConnection = {
|
|
|
236190
236408
|
channel?: Maybe<TownsquareSlackChannel>;
|
|
236191
236409
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
236192
236410
|
metadata?: Maybe<TownsquareSlackConnectionMetadata>;
|
|
236411
|
+
slackConnectionId?: Maybe<Scalars['String']['output']>;
|
|
236193
236412
|
subscriber?: Maybe<User>;
|
|
236194
236413
|
types?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
236195
236414
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -236230,6 +236449,16 @@ export type TownsquareStatus = {
|
|
|
236230
236449
|
score?: Maybe<Scalars['Float']['output']>;
|
|
236231
236450
|
value?: Maybe<Scalars['String']['output']>;
|
|
236232
236451
|
};
|
|
236452
|
+
export type TownsquareStatusSummary = {
|
|
236453
|
+
__typename?: 'TownsquareStatusSummary';
|
|
236454
|
+
active?: Maybe<Scalars['Int']['output']>;
|
|
236455
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
236456
|
+
cancelled?: Maybe<Scalars['Int']['output']>;
|
|
236457
|
+
done?: Maybe<Scalars['Int']['output']>;
|
|
236458
|
+
missed?: Maybe<Scalars['Int']['output']>;
|
|
236459
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
236460
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
236461
|
+
};
|
|
236233
236462
|
export type TownsquareStatusSummaryForTag = {
|
|
236234
236463
|
__typename?: 'TownsquareStatusSummaryForTag';
|
|
236235
236464
|
atRisk?: Maybe<Scalars['Int']['output']>;
|