@forge/cli-shared 9.1.0 → 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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4c5ba1c]
8
+ - @forge/manifest@13.1.1-next.0
9
+
3
10
  ## 9.1.0
4
11
 
5
12
  ### Minor Changes
@@ -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: Scalars['String']['output'];
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']>>;
@@ -41076,6 +41117,41 @@ export type CustomerServiceAddConversationNotePayload = Payload & {
41076
41117
  note?: Maybe<CustomerServiceConversationNote>;
41077
41118
  success: Scalars['Boolean']['output'];
41078
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
+ }
41079
41155
  export type CustomerServiceAiIssueSource = {
41080
41156
  __typename?: 'CustomerServiceAiIssueSource';
41081
41157
  issueKey: Scalars['String']['output'];
@@ -42573,6 +42649,19 @@ export type CustomerServiceTemplateFormUpdatePayload = Payload & {
42573
42649
  success: Scalars['Boolean']['output'];
42574
42650
  successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
42575
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
+ };
42576
42665
  export type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
42577
42666
  __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
42578
42667
  errors?: Maybe<Array<MutationError>>;
@@ -52751,7 +52840,6 @@ export type GraphInferenceInferredProjectMeResponse = {
52751
52840
  context?: Maybe<GraphInferenceInferredProjectContext>;
52752
52841
  inferredProjects?: Maybe<Array<Scalars['JSON']['output']>>;
52753
52842
  viewer?: Maybe<GraphInferenceInferredProjectViewer>;
52754
- weeklyProgressSummary: Scalars['JSON']['output'];
52755
52843
  };
52756
52844
  export type GraphInferenceInferredProjectViewer = {
52757
52845
  __typename?: 'GraphInferenceInferredProjectViewer';
@@ -117757,10 +117845,10 @@ export type HydratingJiraIssueEdge = {
117757
117845
  };
117758
117846
  export type HypothesisIndicator = {
117759
117847
  __typename?: 'HypothesisIndicator';
117760
- hypothesisId: Scalars['String']['output'];
117848
+ hypothesisId?: Maybe<Scalars['String']['output']>;
117761
117849
  hypothesisSummary?: Maybe<Scalars['String']['output']>;
117762
117850
  hypothesisType?: Maybe<MitigationHypothesisType>;
117763
- investigationId: Scalars['String']['output'];
117851
+ investigationId?: Maybe<Scalars['String']['output']>;
117764
117852
  provenance?: Maybe<Array<IndicatorProvenance>>;
117765
117853
  };
117766
117854
  export type Icon = {
@@ -117796,7 +117884,7 @@ export type IndexHintInputType = {
117796
117884
  export type IndicatorProvenance = {
117797
117885
  __typename?: 'IndicatorProvenance';
117798
117886
  link?: Maybe<Scalars['String']['output']>;
117799
- sourceId: Scalars['String']['output'];
117887
+ sourceId?: Maybe<Scalars['String']['output']>;
117800
117888
  sourceType?: Maybe<Scalars['String']['output']>;
117801
117889
  };
117802
117890
  export declare enum IndicatorRejectionReason {
@@ -121434,6 +121522,7 @@ export declare enum JiraBoardType {
121434
121522
  export type JiraBoardView = JiraView & Node & {
121435
121523
  __typename?: 'JiraBoardView';
121436
121524
  autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
121525
+ availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
121437
121526
  board?: Maybe<JiraBoard>;
121438
121527
  canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
121439
121528
  canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
@@ -121475,6 +121564,11 @@ export type JiraBoardView = JiraView & Node & {
121475
121564
  sprints?: Maybe<JiraSprintConnection>;
121476
121565
  unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
121477
121566
  };
121567
+ export type JiraBoardViewAvailableTransitionsForIssueArgs = {
121568
+ after?: InputMaybe<Scalars['String']['input']>;
121569
+ first?: InputMaybe<Scalars['Int']['input']>;
121570
+ issueId: Scalars['ID']['input'];
121571
+ };
121478
121572
  export type JiraBoardViewCanMoveIssueBetweenSwimlanesArgs = {
121479
121573
  issueId: Scalars['ID']['input'];
121480
121574
  settings?: InputMaybe<JiraBoardViewSettings>;
@@ -121706,6 +121800,19 @@ export type JiraBoardViewFieldSwimlaneUser = {
121706
121800
  user?: Maybe<User>;
121707
121801
  };
121708
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
+ };
121709
121816
  export type JiraBoardViewInput = {
121710
121817
  jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
121711
121818
  settings?: InputMaybe<JiraBoardViewSettings>;
@@ -121905,6 +122012,7 @@ export type JiraBoardViewWorkflow = {
121905
122012
  canEdit?: Maybe<Scalars['Boolean']['output']>;
121906
122013
  eligibleTransitions?: Maybe<JiraTransitionConnection>;
121907
122014
  id: Scalars['ID']['output'];
122015
+ inlineCreatableIssueTypes?: Maybe<Array<JiraBoardViewInlineCreatableIssueType>>;
121908
122016
  issueTypes?: Maybe<JiraIssueTypeConnection>;
121909
122017
  name?: Maybe<Scalars['String']['output']>;
121910
122018
  workflowEntityId: Scalars['ID']['output'];
@@ -138891,6 +138999,7 @@ export type JiraReleaseHistoryItem = {
138891
138999
  fieldId?: Maybe<Scalars['String']['output']>;
138892
139000
  from?: Maybe<JiraReleaseHistoryValue>;
138893
139001
  i18nDescription?: Maybe<Scalars['String']['output']>;
139002
+ i18nFieldName?: Maybe<Scalars['String']['output']>;
138894
139003
  id: Scalars['ID']['output'];
138895
139004
  timestamp?: Maybe<Scalars['Long']['output']>;
138896
139005
  to?: Maybe<JiraReleaseHistoryValue>;
@@ -139923,9 +140032,13 @@ export declare enum JiraReviewState {
139923
140032
  export type JiraRichText = {
139924
140033
  __typename?: 'JiraRichText';
139925
140034
  adfValue?: Maybe<JiraAdf>;
140035
+ convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
139926
140036
  plainText?: Maybe<Scalars['String']['output']>;
139927
140037
  wikiValue?: Maybe<Scalars['String']['output']>;
139928
140038
  };
140039
+ export type JiraRichTextConvertedPlainTextArgs = {
140040
+ firstNCharacters?: InputMaybe<Scalars['Int']['input']>;
140041
+ };
139929
140042
  export type JiraRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
139930
140043
  __typename?: 'JiraRichTextField';
139931
140044
  adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
@@ -157058,6 +157171,7 @@ export type MarketplaceStoreSiteDetailsResponse = {
157058
157171
  export type MarketplaceStoreSiteInfoInput = {
157059
157172
  cloudId?: InputMaybe<Scalars['String']['input']>;
157060
157173
  orgId?: InputMaybe<Scalars['String']['input']>;
157174
+ returnDefault?: InputMaybe<Scalars['Boolean']['input']>;
157061
157175
  };
157062
157176
  export type MarketplaceStoreSiteInfoResult = {
157063
157177
  __typename?: 'MarketplaceStoreSiteInfoResult';
@@ -165696,9 +165810,9 @@ export type Mitigation = Node & {
165696
165810
  __typename?: 'Mitigation';
165697
165811
  createdAt?: Maybe<Scalars['DateTime']['output']>;
165698
165812
  id: Scalars['ID']['output'];
165699
- scopeId: Scalars['String']['output'];
165813
+ scopeId?: Maybe<Scalars['String']['output']>;
165700
165814
  scopeType?: Maybe<MitigationScopeType>;
165701
- state: MitigationGenerationState;
165815
+ state?: Maybe<MitigationGenerationState>;
165702
165816
  triggeredBy?: Maybe<User>;
165703
165817
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
165704
165818
  version?: Maybe<Scalars['Int']['output']>;
@@ -165736,9 +165850,9 @@ export type MitigationIndicator = Node & {
165736
165850
  createdAt?: Maybe<Scalars['DateTime']['output']>;
165737
165851
  details?: Maybe<MitigationIndicatorDetails>;
165738
165852
  id: Scalars['ID']['output'];
165739
- indicatorId: Scalars['ID']['output'];
165853
+ indicatorId?: Maybe<Scalars['ID']['output']>;
165740
165854
  indicatorType?: Maybe<MitigationIndicatorType>;
165741
- mitigationId: Scalars['ID']['output'];
165855
+ mitigationId?: Maybe<Scalars['ID']['output']>;
165742
165856
  plans?: Maybe<Array<MitigationPlan>>;
165743
165857
  rejected?: Maybe<Scalars['Boolean']['output']>;
165744
165858
  rejectedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -165767,10 +165881,10 @@ export type MitigationPlan = Node & {
165767
165881
  __typename?: 'MitigationPlan';
165768
165882
  createdAt?: Maybe<Scalars['DateTime']['output']>;
165769
165883
  id: Scalars['ID']['output'];
165770
- indicatorId: Scalars['ID']['output'];
165771
- mitigationId: Scalars['ID']['output'];
165884
+ indicatorId?: Maybe<Scalars['ID']['output']>;
165885
+ mitigationId?: Maybe<Scalars['ID']['output']>;
165772
165886
  planSources?: Maybe<Array<PlanSource>>;
165773
- playbook?: Maybe<JiraPlaybook>;
165887
+ playbook?: Maybe<JiraPlaybookInstance>;
165774
165888
  rejected?: Maybe<Scalars['Boolean']['output']>;
165775
165889
  rejectedAt?: Maybe<Scalars['DateTime']['output']>;
165776
165890
  rejectedBy?: Maybe<User>;
@@ -166473,6 +166587,7 @@ export type Mutation = {
166473
166587
  csm_escalateWorkItem?: Maybe<CustomerServiceEscalateWorkItemPayload>;
166474
166588
  csm_removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
166475
166589
  csm_returnEscalation?: Maybe<CustomerServiceReturnEscalationPayload>;
166590
+ csm_updateAgentAvailability?: Maybe<CustomerServiceUpdateAgentAvailabilityPayload>;
166476
166591
  csm_updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
166477
166592
  csm_updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
166478
166593
  csm_updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
@@ -167226,6 +167341,7 @@ export type Mutation = {
167226
167341
  radar_updateMetricsSettings?: Maybe<Array<RadarMetricSettings>>;
167227
167342
  radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
167228
167343
  radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
167344
+ radar_updateSkill?: Maybe<RadarSkill>;
167229
167345
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
167230
167346
  radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
167231
167347
  radar_upsertView?: Maybe<RadarView>;
@@ -169788,6 +169904,10 @@ export type MutationCsm_ReturnEscalationArgs = {
169788
169904
  projectId: Scalars['ID']['input'];
169789
169905
  workItemId: Scalars['ID']['input'];
169790
169906
  };
169907
+ export type MutationCsm_UpdateAgentAvailabilityArgs = {
169908
+ cloudId: Scalars['ID']['input'];
169909
+ input: CustomerServiceUpdateAgentAvailabilityInput;
169910
+ };
169791
169911
  export type MutationCsm_UpdateCustomDetailArgs = {
169792
169912
  cloudId: Scalars['ID']['input'];
169793
169913
  input: CustomerServiceCustomDetailUpdateInput;
@@ -172221,6 +172341,10 @@ export type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
172221
172341
  cloudId: Scalars['ID']['input'];
172222
172342
  input: RadarUpdatePositionLaborCostEstimateSettingsInput;
172223
172343
  };
172344
+ export type MutationRadar_UpdateSkillArgs = {
172345
+ cloudId: Scalars['ID']['input'];
172346
+ input: RadarUpdateSkillInput;
172347
+ };
172224
172348
  export type MutationRadar_UpdateWorkspaceSettingsArgs = {
172225
172349
  cloudId: Scalars['ID']['input'];
172226
172350
  input: RadarWorkspaceSettingsInput;
@@ -174901,7 +175025,7 @@ export declare enum PlanRejectionReason {
174901
175025
  export type PlanSource = {
174902
175026
  __typename?: 'PlanSource';
174903
175027
  documentType?: Maybe<MitigationDocumentType>;
174904
- sourceId: Scalars['String']['output'];
175028
+ sourceId?: Maybe<Scalars['String']['output']>;
174905
175029
  title?: Maybe<Scalars['String']['output']>;
174906
175030
  url?: Maybe<Scalars['String']['output']>;
174907
175031
  };
@@ -176307,6 +176431,7 @@ export type Query = {
176307
176431
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
176308
176432
  agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
176309
176433
  agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
176434
+ agentWorkspace_agentRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
176310
176435
  agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
176311
176436
  agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
176312
176437
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
@@ -176348,6 +176473,7 @@ export type Query = {
176348
176473
  agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
176349
176474
  agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
176350
176475
  agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
176476
+ agentWorkspace_teamRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
176351
176477
  agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
176352
176478
  agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
176353
176479
  agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
@@ -180509,6 +180635,9 @@ export type QueryAgentWorkspace_AgentAvailabilityArgs = {
180509
180635
  export type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
180510
180636
  input: AgentWorkspaceAgentRebalancingRecommendationsInput;
180511
180637
  };
180638
+ export type QueryAgentWorkspace_AgentRebalancingRecommendationsV2Args = {
180639
+ input: AgentWorkspaceAgentRebalancingRecommendationsInput;
180640
+ };
180512
180641
  export type QueryAgentWorkspace_AgentUsersInProjectArgs = {
180513
180642
  after?: InputMaybe<Scalars['String']['input']>;
180514
180643
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -180730,6 +180859,9 @@ export type QueryAgentWorkspace_TeamCapacitiesArgs = {
180730
180859
  export type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
180731
180860
  input: AgentWorkspaceTeamRebalancingRecommendationsInput;
180732
180861
  };
180862
+ export type QueryAgentWorkspace_TeamRebalancingRecommendationsV2Args = {
180863
+ input: AgentWorkspaceTeamRebalancingRecommendationsInput;
180864
+ };
180733
180865
  export type QueryAgentWorkspace_TeamRebalancingSummariesArgs = {
180734
180866
  input: AgentWorkspaceTeamRebalancingSummariesInput;
180735
180867
  };
@@ -181051,6 +181183,7 @@ export type QueryAssetsDm_AllCleansingRulesArgs = {
181051
181183
  };
181052
181184
  export type QueryAssetsDm_AttributePrioritiesListArgs = {
181053
181185
  cloudId: Scalars['ID']['input'];
181186
+ objectClassId?: InputMaybe<Scalars['ID']['input']>;
181054
181187
  search?: InputMaybe<AssetsDmAttributePrioritySearch>;
181055
181188
  sortBy?: InputMaybe<AssetsDmAttributePrioritySort>;
181056
181189
  workspaceId: Scalars['ID']['input'];
@@ -181173,6 +181306,7 @@ export type QueryAssetsDm_DataSourceTypesArgs = {
181173
181306
  };
181174
181307
  export type QueryAssetsDm_DataSourcesListArgs = {
181175
181308
  cloudId: Scalars['ID']['input'];
181309
+ objectClassId?: InputMaybe<Scalars['ID']['input']>;
181176
181310
  search?: InputMaybe<AssetsDmDataSourceSearch>;
181177
181311
  sortBy?: InputMaybe<AssetsDmDataSourceSort>;
181178
181312
  workspaceId: Scalars['ID']['input'];
@@ -184173,6 +184307,7 @@ export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
184173
184307
  export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
184174
184308
  after?: InputMaybe<Scalars['String']['input']>;
184175
184309
  cloudId: Scalars['ID']['input'];
184310
+ dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
184176
184311
  first?: InputMaybe<Scalars['Int']['input']>;
184177
184312
  relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
184178
184313
  surface?: InputMaybe<GraphIntegrationSurface>;
@@ -203183,6 +203318,13 @@ export type RadarUpdatePositionLaborCostResponse = {
203183
203318
  radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
203184
203319
  success: Scalars['Boolean']['output'];
203185
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
+ };
203186
203328
  export type RadarUpsertViewInput = {
203187
203329
  groupingField?: InputMaybe<Scalars['String']['input']>;
203188
203330
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -203591,7 +203733,7 @@ export type RegisterTunnelResponse = Payload & {
203591
203733
  };
203592
203734
  export type RejectIndicatorInput = {
203593
203735
  id: Scalars['ID']['input'];
203594
- reason: IndicatorRejectionReason;
203736
+ reason?: InputMaybe<IndicatorRejectionReason>;
203595
203737
  };
203596
203738
  export type RejectIndicatorPayload = Payload & {
203597
203739
  __typename?: 'RejectIndicatorPayload';
@@ -203601,7 +203743,7 @@ export type RejectIndicatorPayload = Payload & {
203601
203743
  };
203602
203744
  export type RejectPlanInput = {
203603
203745
  id: Scalars['ID']['input'];
203604
- reason: PlanRejectionReason;
203746
+ reason?: InputMaybe<PlanRejectionReason>;
203605
203747
  };
203606
203748
  export type RejectPlanPayload = Payload & {
203607
203749
  __typename?: 'RejectPlanPayload';
@@ -206703,6 +206845,7 @@ export type SearchTimeseriesCount = {
206703
206845
  nodes: Array<TimeseriesCountItem>;
206704
206846
  };
206705
206847
  export type SearchToolContext = {
206848
+ experimentId?: InputMaybe<Scalars['String']['input']>;
206706
206849
  isSynthetic?: InputMaybe<Scalars['Boolean']['input']>;
206707
206850
  };
206708
206851
  export type SearchTrelloFilter = {
@@ -230748,7 +230891,7 @@ export declare enum SwimlaneStrategy {
230748
230891
  export type SymptomIndicator = {
230749
230892
  __typename?: 'SymptomIndicator';
230750
230893
  provenance?: Maybe<Array<IndicatorProvenance>>;
230751
- symptomId: Scalars['String']['output'];
230894
+ symptomId?: Maybe<Scalars['String']['output']>;
230752
230895
  symptomSummary?: Maybe<Scalars['String']['output']>;
230753
230896
  symptomType?: Maybe<MitigationSymptomType>;
230754
230897
  };