@forge/cli-shared 9.3.0-next.2 → 9.3.0-next.4

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.3.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c3a0f20]
8
+ - @forge/manifest@13.3.0-next.4
9
+
10
+ ## 9.3.0-next.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [498fda5]
15
+ - @forge/manifest@13.3.0-next.3
16
+
3
17
  ## 9.3.0-next.2
4
18
 
5
19
  ### Patch Changes
@@ -7275,6 +7275,10 @@ export type AgentStudioTemplateListResult = {
7275
7275
  pageInfo: PageInfo;
7276
7276
  };
7277
7277
  export type AgentStudioTemplateResult = AgentStudioAgentTemplate | QueryError;
7278
+ export declare enum AgentStudioTemplateUsePermission {
7279
+ Private = "PRIVATE",
7280
+ Public = "PUBLIC"
7281
+ }
7278
7282
  export type AgentStudioThirdPartyApp = AgentStudioApp & {
7279
7283
  __typename?: 'AgentStudioThirdPartyApp';
7280
7284
  authConsentStatus: AgentStudioThirdPartyAuthConsentStatus;
@@ -9945,6 +9949,7 @@ export type AiPlannerPlan = {
9945
9949
  id: Scalars['String']['output'];
9946
9950
  name: Scalars['String']['output'];
9947
9951
  owner?: Maybe<AiPlannerPlanOwner>;
9952
+ publishedState: Scalars['String']['output'];
9948
9953
  readinessScore?: Maybe<Scalars['Int']['output']>;
9949
9954
  tasks: AiPlannerPlanTaskConnection;
9950
9955
  updatedAt: Scalars['String']['output'];
@@ -20469,7 +20474,7 @@ export type CloudifyCloudProjectTargetInput = {
20469
20474
  };
20470
20475
  export type CloudifyDcInstanceTarget = {
20471
20476
  __typename?: 'CloudifyDcInstanceTarget';
20472
- srsLinkId: CloudifySrsLinkId;
20477
+ srsLinkId: Scalars['String']['output'];
20473
20478
  };
20474
20479
  export type CloudifyDcInstanceTargetInput = {
20475
20480
  srsLinkId: Scalars['ID']['input'];
@@ -20509,6 +20514,7 @@ export type CloudifyRecommendation = {
20509
20514
  createdAt: Scalars['String']['output'];
20510
20515
  id: CloudifyRecommendationId;
20511
20516
  reasoning: Scalars['String']['output'];
20517
+ source: CloudifyRecommendationSource;
20512
20518
  status: CloudifyRecommendationStatus;
20513
20519
  steps: Array<CloudifyRecommendationStep>;
20514
20520
  target: CloudifyRecommendationTarget;
@@ -20530,6 +20536,12 @@ export type CloudifyRecommendationInput = {
20530
20536
  target: CloudifyTargetInput;
20531
20537
  title: Scalars['String']['input'];
20532
20538
  };
20539
+ export type CloudifyRecommendationSource = {
20540
+ __typename?: 'CloudifyRecommendationSource';
20541
+ data: Array<CloudifySourceDataEntry>;
20542
+ identifier: Scalars['String']['output'];
20543
+ type: CloudifySourceInstanceType;
20544
+ };
20533
20545
  export declare enum CloudifyRecommendationStatus {
20534
20546
  Failed = "FAILED",
20535
20547
  New = "NEW",
@@ -20552,10 +20564,15 @@ export type CloudifySiteTarget = {
20552
20564
  export type CloudifySiteTargetInput = {
20553
20565
  siteId: Scalars['ID']['input'];
20554
20566
  };
20555
- export type CloudifySrsLinkId = {
20556
- __typename?: 'CloudifySrsLinkId';
20567
+ export type CloudifySourceDataEntry = {
20568
+ __typename?: 'CloudifySourceDataEntry';
20569
+ key: Scalars['String']['output'];
20557
20570
  value: Scalars['String']['output'];
20558
20571
  };
20572
+ export declare enum CloudifySourceInstanceType {
20573
+ Cloud = "CLOUD",
20574
+ Dc = "DC"
20575
+ }
20559
20576
  export type CloudifyStepInput = {
20560
20577
  arguments: Array<CloudifyArgumentInput>;
20561
20578
  reasoning: Scalars['String']['input'];
@@ -33962,7 +33979,18 @@ export type ConfluenceNbmTransformerParameter = {
33962
33979
  __typename?: 'ConfluenceNbmTransformerParameter';
33963
33980
  key: Scalars['String']['output'];
33964
33981
  value: Scalars['String']['output'];
33982
+ valueType?: Maybe<ConfluenceNbmTransformerParameterValueType>;
33965
33983
  };
33984
+ export declare enum ConfluenceNbmTransformerParameterValueType {
33985
+ Boolean = "BOOLEAN",
33986
+ ConditionArray = "CONDITION_ARRAY",
33987
+ ConditionObject = "CONDITION_OBJECT",
33988
+ Integer = "INTEGER",
33989
+ Object = "OBJECT",
33990
+ String = "STRING",
33991
+ StringArray = "STRING_ARRAY",
33992
+ Unknown = "UNKNOWN"
33993
+ }
33966
33994
  export type ConfluenceNbmTransformers = {
33967
33995
  __typename?: 'ConfluenceNbmTransformers';
33968
33996
  transformers: Array<Maybe<ConfluenceNbmConfigurableTransformer>>;
@@ -40813,6 +40841,19 @@ export type CsmAiAgentToolConfigurationInput = {
40813
40841
  properties?: InputMaybe<Array<CsmAiAgentToolPropertyConfigurationInput>>;
40814
40842
  requiresConfirmation?: InputMaybe<Scalars['Boolean']['input']>;
40815
40843
  };
40844
+ export type CsmAiAgentToolMapping = {
40845
+ __typename?: 'CsmAiAgentToolMapping';
40846
+ configuration?: Maybe<CsmAiAgentToolConfiguration>;
40847
+ definitionId: Scalars['String']['output'];
40848
+ id: Scalars['ID']['output'];
40849
+ source: CsmAiAgentToolSource;
40850
+ };
40851
+ export type CsmAiAgentToolMappingInput = {
40852
+ definitionId: Scalars['String']['input'];
40853
+ source: CsmAiAgentToolSource;
40854
+ toolMappingId: Scalars['ID']['input'];
40855
+ };
40856
+ export type CsmAiAgentToolMappingResult = CsmAiAgentToolMapping | QueryError;
40816
40857
  export type CsmAiAgentToolPropertyConfiguration = {
40817
40858
  __typename?: 'CsmAiAgentToolPropertyConfiguration';
40818
40859
  allowedValues?: Maybe<Array<Scalars['String']['output']>>;
@@ -40843,6 +40884,7 @@ export type CsmAiAgentVersion = {
40843
40884
  handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
40844
40885
  knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
40845
40886
  publishedAt?: Maybe<Scalars['Long']['output']>;
40887
+ toolMappings?: Maybe<Array<CsmAiAgentToolMappingResult>>;
40846
40888
  tools?: Maybe<Array<CsmAiAgentToolResult>>;
40847
40889
  versionId: Scalars['ID']['output'];
40848
40890
  versionNumber?: Maybe<Scalars['Int']['output']>;
@@ -41225,6 +41267,15 @@ export type CsmAiUpdateAgentToolConfigurationPayload = Payload & {
41225
41267
  success: Scalars['Boolean']['output'];
41226
41268
  tool?: Maybe<CsmAiAgentTool>;
41227
41269
  };
41270
+ export type CsmAiUpdateAgentToolMappingsInput = {
41271
+ toolMappings: Array<CsmAiAgentToolMappingInput>;
41272
+ };
41273
+ export type CsmAiUpdateAgentToolMappingsPayload = Payload & {
41274
+ __typename?: 'CsmAiUpdateAgentToolMappingsPayload';
41275
+ errors?: Maybe<Array<MutationError>>;
41276
+ success: Scalars['Boolean']['output'];
41277
+ toolMappings?: Maybe<Array<CsmAiAgentToolMapping>>;
41278
+ };
41228
41279
  export type CsmAiUpdateAgentToolsInput = {
41229
41280
  tools: Array<CsmAiAgentToolSelectionInput>;
41230
41281
  };
@@ -41749,17 +41800,11 @@ export type CustomerServiceAssetsFieldConfig = {
41749
41800
  objectType: CustomerServiceAssetsFieldObjectTypeMetadata;
41750
41801
  schema: CustomerServiceAssetsFieldSchemaMetadata;
41751
41802
  };
41752
- export type CustomerServiceAssetsFieldData = {
41753
- __typename?: 'CustomerServiceAssetsFieldData';
41754
- assetsObjectTypeId: Scalars['String']['output'];
41755
- assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
41756
- };
41757
41803
  export type CustomerServiceAssetsFieldObject = {
41758
41804
  __typename?: 'CustomerServiceAssetsFieldObject';
41759
41805
  avatar?: Maybe<CustomerServiceAssetsAvatar>;
41760
41806
  id: Scalars['ID']['output'];
41761
41807
  label: Scalars['String']['output'];
41762
- objectKey: Scalars['ID']['output'];
41763
41808
  objectSchemaId: Scalars['ID']['output'];
41764
41809
  objectTypeId: Scalars['ID']['output'];
41765
41810
  };
@@ -42021,7 +42066,7 @@ export type CustomerServiceConnectedFieldConfig = {
42021
42066
  };
42022
42067
  export type CustomerServiceConnectedFieldData = {
42023
42068
  __typename?: 'CustomerServiceConnectedFieldData';
42024
- assetsField?: Maybe<CustomerServiceAssetsFieldData>;
42069
+ assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
42025
42070
  };
42026
42071
  export type CustomerServiceContext = {
42027
42072
  issueId?: InputMaybe<Scalars['String']['input']>;
@@ -42245,6 +42290,7 @@ export type CustomerServiceEmailChannelConfig = {
42245
42290
  __typename?: 'CustomerServiceEmailChannelConfig';
42246
42291
  createdAt?: Maybe<Scalars['DateTime']['output']>;
42247
42292
  enabledBy?: Maybe<Scalars['String']['output']>;
42293
+ enabledSupportEmailIds?: Maybe<Array<Scalars['String']['output']>>;
42248
42294
  helpCenterId: Scalars['ID']['output'];
42249
42295
  id: Scalars['ID']['output'];
42250
42296
  isEnabled: Scalars['Boolean']['output'];
@@ -42254,6 +42300,7 @@ export type CustomerServiceEmailChannelConfig = {
42254
42300
  };
42255
42301
  export type CustomerServiceEmailChannelConfigQueryResult = CustomerServiceEmailChannelConfig | QueryError;
42256
42302
  export type CustomerServiceEmailChannelConfigUpsertInput = {
42303
+ enabledSupportEmailIds?: InputMaybe<Array<Scalars['String']['input']>>;
42257
42304
  isEnabled: Scalars['Boolean']['input'];
42258
42305
  replyToAddress?: InputMaybe<Scalars['String']['input']>;
42259
42306
  supportEmail?: InputMaybe<Scalars['String']['input']>;
@@ -43240,6 +43287,22 @@ export type CustomerServiceUserDetailValue = {
43240
43287
  avatarUrl?: Maybe<Scalars['String']['output']>;
43241
43288
  name?: Maybe<Scalars['String']['output']>;
43242
43289
  };
43290
+ export type CustomerServiceWorkItemAiSummary = {
43291
+ __typename?: 'CustomerServiceWorkItemAiSummary';
43292
+ adf: Scalars['String']['output'];
43293
+ text: Scalars['String']['output'];
43294
+ };
43295
+ export type CustomerServiceWorkItemAiSummaryMeta = {
43296
+ __typename?: 'CustomerServiceWorkItemAiSummaryMeta';
43297
+ generatedAt: Scalars['DateTime']['output'];
43298
+ };
43299
+ export type CustomerServiceWorkItemAiSummaryQueryResult = CustomerServiceWorkItemAiSummaryResponse | QueryError;
43300
+ export type CustomerServiceWorkItemAiSummaryResponse = {
43301
+ __typename?: 'CustomerServiceWorkItemAiSummaryResponse';
43302
+ id: Scalars['ID']['output'];
43303
+ meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
43304
+ summary?: Maybe<CustomerServiceWorkItemAiSummary>;
43305
+ };
43243
43306
  export type CustomerUser = LocalizationContext & User & {
43244
43307
  __typename?: 'CustomerUser';
43245
43308
  accountId: Scalars['ID']['output'];
@@ -53555,6 +53618,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
53555
53618
  nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
53556
53619
  recursionDepth?: InputMaybe<Scalars['Int']['input']>;
53557
53620
  sessionId?: InputMaybe<Scalars['String']['input']>;
53621
+ useSemanticRanking?: InputMaybe<Scalars['Boolean']['input']>;
53558
53622
  weightVersion?: InputMaybe<Scalars['String']['input']>;
53559
53623
  };
53560
53624
  export type GraphInferenceGetJiraEntityContextResponse = {
@@ -117404,6 +117468,7 @@ export type HelpCenterPageCreatePayload = Payload & {
117404
117468
  };
117405
117469
  export type HelpCenterPageDeleteInput = {
117406
117470
  helpCenterPageAri: Scalars['String']['input'];
117471
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
117407
117472
  };
117408
117473
  export type HelpCenterPageDeletePayload = Payload & {
117409
117474
  __typename?: 'HelpCenterPageDeletePayload';
@@ -120718,6 +120783,40 @@ export declare enum JiraAgentCreatorType {
120718
120783
  System = "SYSTEM",
120719
120784
  ThirdParty = "THIRD_PARTY"
120720
120785
  }
120786
+ export type JiraAgentInSpace = {
120787
+ __typename?: 'JiraAgentInSpace';
120788
+ accountId?: Maybe<Scalars['ID']['output']>;
120789
+ agentId: Scalars['ID']['output'];
120790
+ sources: Array<JiraAgentInSpaceSource>;
120791
+ };
120792
+ export type JiraAgentInSpaceConnection = HasPageInfo & {
120793
+ __typename?: 'JiraAgentInSpaceConnection';
120794
+ edges?: Maybe<Array<Maybe<JiraAgentInSpaceEdge>>>;
120795
+ nodes?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
120796
+ pageInfo: PageInfo;
120797
+ totalCount?: Maybe<Scalars['Int']['output']>;
120798
+ };
120799
+ export type JiraAgentInSpaceEdge = {
120800
+ __typename?: 'JiraAgentInSpaceEdge';
120801
+ cursor: Scalars['String']['output'];
120802
+ node?: Maybe<JiraAgentInSpace>;
120803
+ };
120804
+ export declare enum JiraAgentInSpaceSource {
120805
+ JiraAutomation = "JIRA_AUTOMATION",
120806
+ StudioAutomation = "STUDIO_AUTOMATION",
120807
+ Workflow = "WORKFLOW"
120808
+ }
120809
+ export declare enum JiraAgentInSpaceSourceState {
120810
+ Failed = "FAILED",
120811
+ Ok = "OK",
120812
+ Skipped = "SKIPPED"
120813
+ }
120814
+ export type JiraAgentInSpaceSourceStatus = {
120815
+ __typename?: 'JiraAgentInSpaceSourceStatus';
120816
+ message?: Maybe<Scalars['String']['output']>;
120817
+ source: JiraAgentInSpaceSource;
120818
+ state: JiraAgentInSpaceSourceState;
120819
+ };
120721
120820
  export type JiraAgentSession = {
120722
120821
  __typename?: 'JiraAgentSession';
120723
120822
  agent?: Maybe<User>;
@@ -120834,6 +120933,14 @@ export type JiraAgenticUser = JiraActor & {
120834
120933
  totalUniqueUsersLast30Days?: Maybe<Scalars['Int']['output']>;
120835
120934
  user?: Maybe<User>;
120836
120935
  };
120936
+ export type JiraAgentsInSpace = {
120937
+ __typename?: 'JiraAgentsInSpace';
120938
+ agents?: Maybe<JiraAgentInSpaceConnection>;
120939
+ sourceStatuses: Array<JiraAgentInSpaceSourceStatus>;
120940
+ };
120941
+ export type JiraAgentsInSpaceInput = {
120942
+ projectAri: Scalars['ID']['input'];
120943
+ };
120837
120944
  export type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
120838
120945
  export type JiraAggregatedIssueLink = {
120839
120946
  __typename?: 'JiraAggregatedIssueLink';
@@ -142480,6 +142587,7 @@ export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
142480
142587
  };
142481
142588
  export type JiraServiceManagementCaseManagementRequestTypeCreationOption = {
142482
142589
  __typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOption';
142590
+ avatar?: Maybe<JiraAvatar>;
142483
142591
  existingRequestType?: Maybe<JiraServiceManagementRequestType>;
142484
142592
  key: Scalars['String']['output'];
142485
142593
  name: Scalars['String']['output'];
@@ -151024,7 +151132,6 @@ export type JsmTelemetryDashboardChartQueryInput = {
151024
151132
  filters: Array<JsmTelemetryMetricFilterInput>;
151025
151133
  metricName: Scalars['String']['input'];
151026
151134
  resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
151027
- telemetryConnectionId: Scalars['ID']['input'];
151028
151135
  timeRange?: InputMaybe<JsmTelemetryTimeRangeInput>;
151029
151136
  };
151030
151137
  export type JsmTelemetryDashboardChartQueryResult = {
@@ -151033,7 +151140,6 @@ export type JsmTelemetryDashboardChartQueryResult = {
151033
151140
  filters: Array<JsmTelemetryMetricFilter>;
151034
151141
  metricName: Scalars['String']['output'];
151035
151142
  resolution?: Maybe<JsmTelemetryMetricResolution>;
151036
- telemetryConnectionId: Scalars['ID']['output'];
151037
151143
  timeRange?: Maybe<JsmTelemetryTimeRange>;
151038
151144
  };
151039
151145
  export type JsmTelemetryDashboardChartResult = {
@@ -151136,8 +151242,9 @@ export type JsmTelemetryMetricAttributeSearchInput = {
151136
151242
  cursor?: InputMaybe<Scalars['String']['input']>;
151137
151243
  limit?: InputMaybe<Scalars['Int']['input']>;
151138
151244
  metricName: Scalars['String']['input'];
151245
+ provider: JsmTelemetryProviderType;
151139
151246
  q?: InputMaybe<Scalars['String']['input']>;
151140
- telemetryConnectionId: Scalars['ID']['input'];
151247
+ telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
151141
151248
  };
151142
151249
  export type JsmTelemetryMetricAttributeValue = {
151143
151250
  __typename?: 'JsmTelemetryMetricAttributeValue';
@@ -151156,8 +151263,9 @@ export type JsmTelemetryMetricAttributeValueSearchInput = {
151156
151263
  cursor?: InputMaybe<Scalars['String']['input']>;
151157
151264
  limit?: InputMaybe<Scalars['Int']['input']>;
151158
151265
  metricName: Scalars['String']['input'];
151266
+ provider: JsmTelemetryProviderType;
151159
151267
  q?: InputMaybe<Scalars['String']['input']>;
151160
- telemetryConnectionId: Scalars['ID']['input'];
151268
+ telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
151161
151269
  };
151162
151270
  export type JsmTelemetryMetricAttributeValuesResult = {
151163
151271
  __typename?: 'JsmTelemetryMetricAttributeValuesResult';
@@ -151178,8 +151286,9 @@ export type JsmTelemetryMetricDataQueryInput = {
151178
151286
  aggregation?: InputMaybe<JsmTelemetryMetricAggregationInput>;
151179
151287
  filters: Array<JsmTelemetryMetricFilterInput>;
151180
151288
  metricName: Scalars['String']['input'];
151289
+ provider: JsmTelemetryProviderType;
151181
151290
  resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
151182
- telemetryConnectionId: Scalars['ID']['input'];
151291
+ telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
151183
151292
  timeRange: JsmTelemetryTimeRangeInput;
151184
151293
  };
151185
151294
  export type JsmTelemetryMetricDataResponse = {
@@ -151235,8 +151344,9 @@ export type JsmTelemetryMetricResolutionInput = {
151235
151344
  export type JsmTelemetryMetricSearchInput = {
151236
151345
  cursor?: InputMaybe<Scalars['String']['input']>;
151237
151346
  limit?: InputMaybe<Scalars['Int']['input']>;
151347
+ provider: JsmTelemetryProviderType;
151238
151348
  q?: InputMaybe<Scalars['String']['input']>;
151239
- telemetryConnectionId: Scalars['ID']['input'];
151349
+ telemetryConnectionId?: InputMaybe<Scalars['ID']['input']>;
151240
151350
  };
151241
151351
  export type JsmTelemetryMetricSearchResponse = {
151242
151352
  __typename?: 'JsmTelemetryMetricSearchResponse';
@@ -155454,6 +155564,7 @@ export type MarketplaceAppVersion = {
155454
155564
  documentationUrl?: Maybe<Scalars['URL']['output']>;
155455
155565
  editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
155456
155566
  endUserLicenseAgreementUrl?: Maybe<Scalars['URL']['output']>;
155567
+ extensionTypeKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
155457
155568
  heroImage?: Maybe<MarketplaceListingImage>;
155458
155569
  highlights?: Maybe<Array<MarketplaceListingHighlight>>;
155459
155570
  isForgeROACompliant?: Maybe<Scalars['Boolean']['output']>;
@@ -169665,6 +169776,7 @@ export type Mutation = {
169665
169776
  csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
169666
169777
  csmAi_updateAgentIdentity?: Maybe<CsmAiUpdateAgentIdentityPayload>;
169667
169778
  csmAi_updateAgentToolConfiguration?: Maybe<CsmAiUpdateAgentToolConfigurationPayload>;
169779
+ csmAi_updateAgentToolMappings?: Maybe<CsmAiUpdateAgentToolMappingsPayload>;
169668
169780
  csmAi_updateAgentTools?: Maybe<CsmAiUpdateAgentToolsPayload>;
169669
169781
  csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
169670
169782
  csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
@@ -170949,6 +171061,7 @@ export type MutationAgentStudio_CreateAgentArgs = {
170949
171061
  export type MutationAgentStudio_CreateAgentFromTemplateArgs = {
170950
171062
  cloudId: Scalars['String']['input'];
170951
171063
  templateId: Scalars['ID']['input'];
171064
+ usePermission?: InputMaybe<AgentStudioTemplateUsePermission>;
170952
171065
  };
170953
171066
  export type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
170954
171067
  cloudId: Scalars['String']['input'];
@@ -173001,6 +173114,11 @@ export type MutationCsmAi_UpdateAgentToolConfigurationArgs = {
173001
173114
  input: CsmAiAgentToolConfigurationInput;
173002
173115
  toolId: Scalars['ID']['input'];
173003
173116
  };
173117
+ export type MutationCsmAi_UpdateAgentToolMappingsArgs = {
173118
+ csmAgentId: Scalars['ID']['input'];
173119
+ helpCenterAri: Scalars['ID']['input'];
173120
+ input: CsmAiUpdateAgentToolMappingsInput;
173121
+ };
173004
173122
  export type MutationCsmAi_UpdateAgentToolsArgs = {
173005
173123
  csmAgentId: Scalars['ID']['input'];
173006
173124
  helpCenterAri: Scalars['ID']['input'];
@@ -180525,6 +180643,7 @@ export type Query = {
180525
180643
  csm_statusMapping?: Maybe<CustomerServiceStatusMappingQueryResult>;
180526
180644
  csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
180527
180645
  csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
180646
+ csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
180528
180647
  currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
180529
180648
  customer360_customer?: Maybe<Customer360Customer>;
180530
180649
  customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
@@ -182894,6 +183013,7 @@ export type Query = {
182894
183013
  jira_agentContextSettings?: Maybe<JiraAgentContextSettings>;
182895
183014
  jira_agentContextSources?: Maybe<JiraAgentContextItemConnection>;
182896
183015
  jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
183016
+ jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
182897
183017
  jira_availableStatuses?: Maybe<JiraStatusConnection>;
182898
183018
  jira_backlog?: Maybe<JiraBacklog>;
182899
183019
  jira_backlogView?: Maybe<JiraBacklogView>;
@@ -187198,6 +187318,9 @@ export type QueryCsm_TemplateFormsArgs = {
187198
187318
  first?: InputMaybe<Scalars['Int']['input']>;
187199
187319
  helpCenterId: Scalars['ID']['input'];
187200
187320
  };
187321
+ export type QueryCsm_WorkItemAiSummaryArgs = {
187322
+ workItemId: Scalars['ID']['input'];
187323
+ };
187201
187324
  export type QueryCustomer360_CustomerArgs = {
187202
187325
  domain: Scalars['String']['input'];
187203
187326
  };
@@ -203903,6 +204026,12 @@ export type QueryJira_AgentContextSourcesArgs = {
203903
204026
  export type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
203904
204027
  cloudId: Scalars['ID']['input'];
203905
204028
  };
204029
+ export type QueryJira_AgentsInSpaceArgs = {
204030
+ after?: InputMaybe<Scalars['String']['input']>;
204031
+ cloudId: Scalars['ID']['input'];
204032
+ first?: InputMaybe<Scalars['Int']['input']>;
204033
+ input: JiraAgentsInSpaceInput;
204034
+ };
203906
204035
  export type QueryJira_AvailableStatusesArgs = {
203907
204036
  after?: InputMaybe<Scalars['String']['input']>;
203908
204037
  category?: InputMaybe<JiraStatusCategoryFilter>;
@@ -234244,6 +234373,7 @@ export type SubjectsByTypeUserWithRestrictionsArgs = {
234244
234373
  };
234245
234374
  export type Subscription = {
234246
234375
  __typename?: 'Subscription';
234376
+ aiops_onInvestigationProgressChanged?: Maybe<AiOpsInvestigationQueryResult>;
234247
234377
  assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTask>;
234248
234378
  bitbucket?: Maybe<BitbucketSubscription>;
234249
234379
  blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
@@ -234292,6 +234422,11 @@ export type Subscription = {
234292
234422
  testing?: Maybe<TestingSubscription>;
234293
234423
  trello: TrelloSubscriptionApi;
234294
234424
  };
234425
+ export type SubscriptionAiops_OnInvestigationProgressChangedArgs = {
234426
+ agentic: Scalars['Boolean']['input'];
234427
+ cloudId: Scalars['ID']['input'];
234428
+ investigationId: Scalars['ID']['input'];
234429
+ };
234295
234430
  export type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
234296
234431
  cloudId: Scalars['ID']['input'];
234297
234432
  taskId: Scalars['ID']['input'];
@@ -239758,6 +239893,7 @@ export type TownsquareProjectsCreateDecisionPayload = {
239758
239893
  success: Scalars['Boolean']['output'];
239759
239894
  };
239760
239895
  export type TownsquareProjectsCreateInput = {
239896
+ accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
239761
239897
  containerId: Scalars['String']['input'];
239762
239898
  icon?: InputMaybe<TownsquareIconInput>;
239763
239899
  name: Scalars['String']['input'];
@@ -241254,13 +241390,23 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
241254
241390
  __typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
241255
241391
  id: Scalars['ID']['output'];
241256
241392
  };
241393
+ export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
241394
+ __typename?: 'TrelloAgentSessionUpdated';
241395
+ sessionId: Scalars['ID']['output'];
241396
+ tasks: TrelloAgentTaskUpdatedConnection;
241397
+ };
241257
241398
  export type TrelloAgentTask = {
241258
241399
  __typename?: 'TrelloAgentTask';
241259
241400
  id: Scalars['ID']['output'];
241260
241401
  key: Scalars['String']['output'];
241261
241402
  objectId: Scalars['ID']['output'];
241403
+ sessionId: Scalars['ID']['output'];
241262
241404
  status: TrelloAgentTaskStatus;
241263
241405
  };
241406
+ export type TrelloAgentTaskEdgeUpdated = {
241407
+ __typename?: 'TrelloAgentTaskEdgeUpdated';
241408
+ node: TrelloAgentTaskUpdated;
241409
+ };
241264
241410
  export declare enum TrelloAgentTaskState {
241265
241411
  ApprovalRequired = "APPROVAL_REQUIRED",
241266
241412
  AuthRequired = "AUTH_REQUIRED",
@@ -241279,6 +241425,22 @@ export type TrelloAgentTaskStatus = {
241279
241425
  state: TrelloAgentTaskState;
241280
241426
  timestamp: Scalars['DateTime']['output'];
241281
241427
  };
241428
+ export type TrelloAgentTaskStatusUpdated = {
241429
+ __typename?: 'TrelloAgentTaskStatusUpdated';
241430
+ message?: Maybe<Scalars['String']['output']>;
241431
+ state: TrelloAgentTaskState;
241432
+ timestamp: Scalars['DateTime']['output'];
241433
+ };
241434
+ export type TrelloAgentTaskUpdated = {
241435
+ __typename?: 'TrelloAgentTaskUpdated';
241436
+ id: Scalars['ID']['output'];
241437
+ sessionId?: Maybe<Scalars['ID']['output']>;
241438
+ status?: Maybe<TrelloAgentTaskStatusUpdated>;
241439
+ };
241440
+ export type TrelloAgentTaskUpdatedConnection = {
241441
+ __typename?: 'TrelloAgentTaskUpdatedConnection';
241442
+ edges?: Maybe<Array<TrelloAgentTaskEdgeUpdated>>;
241443
+ };
241282
241444
  export type TrelloAgenticActivity = {
241283
241445
  __typename?: 'TrelloAgenticActivity';
241284
241446
  agenticIdentity?: Maybe<TrelloAgenticIdentity>;
@@ -241669,6 +241831,7 @@ export type TrelloAttachmentUpdated = {
241669
241831
  id: Scalars['ID']['output'];
241670
241832
  };
241671
241833
  export type TrelloBaseBoard = {
241834
+ actions?: Maybe<TrelloCardActionConnection>;
241672
241835
  aiMetadata?: Maybe<TrelloObjectAiMetadata>;
241673
241836
  enterprise?: Maybe<TrelloEnterprise>;
241674
241837
  enterpriseOwned: Scalars['Boolean']['output'];
@@ -241682,6 +241845,11 @@ export type TrelloBaseBoard = {
241682
241845
  prefs: TrelloBaseBoardPrefs;
241683
241846
  workspace?: Maybe<TrelloWorkspace>;
241684
241847
  };
241848
+ export type TrelloBaseBoardActionsArgs = {
241849
+ after?: InputMaybe<Scalars['String']['input']>;
241850
+ first?: InputMaybe<Scalars['Int']['input']>;
241851
+ type?: InputMaybe<Array<TrelloCardActionType>>;
241852
+ };
241685
241853
  export type TrelloBaseBoardLabelsArgs = {
241686
241854
  after?: InputMaybe<Scalars['String']['input']>;
241687
241855
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -241830,6 +241998,7 @@ export type TrelloBaseCardUpdated = {
241830
241998
  };
241831
241999
  export type TrelloBoard = Node & TrelloBaseBoard & {
241832
242000
  __typename?: 'TrelloBoard';
242001
+ actions?: Maybe<TrelloCardActionConnection>;
241833
242002
  aiMetadata?: Maybe<TrelloObjectAiMetadata>;
241834
242003
  closed: Scalars['Boolean']['output'];
241835
242004
  creationMethod?: Maybe<Scalars['String']['output']>;
@@ -241863,6 +242032,11 @@ export type TrelloBoard = Node & TrelloBaseBoard & {
241863
242032
  viewer?: Maybe<TrelloBoardViewer>;
241864
242033
  workspace?: Maybe<TrelloWorkspace>;
241865
242034
  };
242035
+ export type TrelloBoardActionsArgs = {
242036
+ after?: InputMaybe<Scalars['String']['input']>;
242037
+ first?: InputMaybe<Scalars['Int']['input']>;
242038
+ type?: InputMaybe<Array<TrelloCardActionType>>;
242039
+ };
241866
242040
  export type TrelloBoardCustomFieldsArgs = {
241867
242041
  after?: InputMaybe<Scalars['String']['input']>;
241868
242042
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -243959,6 +244133,7 @@ export type TrelloImagePreviewUpdatedConnection = {
243959
244133
  };
243960
244134
  export type TrelloInbox = TrelloBaseBoard & {
243961
244135
  __typename?: 'TrelloInbox';
244136
+ actions?: Maybe<TrelloCardActionConnection>;
243962
244137
  aiMetadata?: Maybe<TrelloObjectAiMetadata>;
243963
244138
  enterprise?: Maybe<TrelloEnterprise>;
243964
244139
  enterpriseOwned: Scalars['Boolean']['output'];
@@ -243972,6 +244147,11 @@ export type TrelloInbox = TrelloBaseBoard & {
243972
244147
  prefs: TrelloInboxPrefs;
243973
244148
  workspace?: Maybe<TrelloWorkspace>;
243974
244149
  };
244150
+ export type TrelloInboxActionsArgs = {
244151
+ after?: InputMaybe<Scalars['String']['input']>;
244152
+ first?: InputMaybe<Scalars['Int']['input']>;
244153
+ type?: InputMaybe<Array<TrelloCardActionType>>;
244154
+ };
243975
244155
  export type TrelloInboxLabelsArgs = {
243976
244156
  after?: InputMaybe<Scalars['String']['input']>;
243977
244157
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -244869,6 +245049,48 @@ export type TrelloMovePlannerCalendarEventTargetOptions = {
244869
245049
  plannerCalendarId: Scalars['ID']['input'];
244870
245050
  providerAccountId: Scalars['ID']['input'];
244871
245051
  };
245052
+ export type TrelloMultiboardCardDateFilterInput = {
245053
+ date?: InputMaybe<TrelloMultiboardDateRangeInput>;
245054
+ dueStart?: InputMaybe<TrelloMultiboardDueStartFilterInput>;
245055
+ };
245056
+ export declare enum TrelloMultiboardCardSortField {
245057
+ BoardName = "BOARD_NAME",
245058
+ BoardOrder = "BOARD_ORDER",
245059
+ Due = "DUE",
245060
+ Id = "ID",
245061
+ ListPos = "LIST_POS",
245062
+ Name = "NAME",
245063
+ Pos = "POS",
245064
+ ShortLink = "SHORT_LINK",
245065
+ Start = "START"
245066
+ }
245067
+ export type TrelloMultiboardCardSortInput = {
245068
+ direction?: InputMaybe<TrelloMultiboardSortDirection>;
245069
+ field: TrelloMultiboardCardSortField;
245070
+ };
245071
+ export type TrelloMultiboardDateFieldFilterInput = {
245072
+ any?: InputMaybe<Scalars['Boolean']['input']>;
245073
+ none?: InputMaybe<Scalars['Boolean']['input']>;
245074
+ noneOrRange?: InputMaybe<TrelloMultiboardDateRangeInput>;
245075
+ range?: InputMaybe<TrelloMultiboardDateRangeInput>;
245076
+ };
245077
+ export type TrelloMultiboardDateRangeInput = {
245078
+ from?: InputMaybe<Scalars['String']['input']>;
245079
+ to?: InputMaybe<Scalars['String']['input']>;
245080
+ };
245081
+ export type TrelloMultiboardDueStartFilterInput = {
245082
+ due?: InputMaybe<TrelloMultiboardDateFieldFilterInput>;
245083
+ start?: InputMaybe<TrelloMultiboardDateFieldFilterInput>;
245084
+ };
245085
+ export type TrelloMultiboardMemberFilterInput = {
245086
+ any?: InputMaybe<Scalars['Boolean']['input']>;
245087
+ memberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
245088
+ none?: InputMaybe<Scalars['Boolean']['input']>;
245089
+ };
245090
+ export declare enum TrelloMultiboardSortDirection {
245091
+ Asc = "ASC",
245092
+ Desc = "DESC"
245093
+ }
244872
245094
  export type TrelloMutationApi = {
244873
245095
  __typename?: 'TrelloMutationApi';
244874
245096
  acceptProposedEvents?: Maybe<TrelloAcceptProposedEventsPayload>;
@@ -246425,6 +246647,7 @@ export type TrelloQueryApi = {
246425
246647
  usersById?: Maybe<Array<Maybe<TrelloMember>>>;
246426
246648
  workOverviewDashboardJob?: Maybe<TrelloWorkOverviewDashboardJob>;
246427
246649
  workspace?: Maybe<TrelloWorkspace>;
246650
+ workspaceMultiboardView?: Maybe<TrelloWorkspaceMultiboard>;
246428
246651
  };
246429
246652
  export type TrelloQueryApiApplicationArgs = {
246430
246653
  id: Scalars['ID']['input'];
@@ -246579,6 +246802,9 @@ export type TrelloQueryApiWorkOverviewDashboardJobArgs = {
246579
246802
  export type TrelloQueryApiWorkspaceArgs = {
246580
246803
  id: Scalars['ID']['input'];
246581
246804
  };
246805
+ export type TrelloQueryApiWorkspaceMultiboardViewArgs = {
246806
+ id: Scalars['ID']['input'];
246807
+ };
246582
246808
  export type TrelloQuickCaptureBoard = {
246583
246809
  __typename?: 'TrelloQuickCaptureBoard';
246584
246810
  id: Scalars['ID']['output'];
@@ -247962,6 +248188,29 @@ export type TrelloWorkspaceMembershipsConnection = {
247962
248188
  nodes?: Maybe<Array<TrelloMember>>;
247963
248189
  pageInfo: PageInfo;
247964
248190
  };
248191
+ export type TrelloWorkspaceMultiboard = {
248192
+ __typename?: 'TrelloWorkspaceMultiboard';
248193
+ cards?: Maybe<TrelloWorkspaceMultiboardCards>;
248194
+ };
248195
+ export type TrelloWorkspaceMultiboardCardsArgs = {
248196
+ boardIds: Array<Scalars['ID']['input']>;
248197
+ cardRoles?: InputMaybe<Array<Scalars['String']['input']>>;
248198
+ created?: InputMaybe<TrelloMultiboardDateRangeInput>;
248199
+ cursor?: InputMaybe<Scalars['String']['input']>;
248200
+ dateFilter?: InputMaybe<TrelloMultiboardCardDateFilterInput>;
248201
+ dueComplete?: InputMaybe<Scalars['Boolean']['input']>;
248202
+ labels?: InputMaybe<Array<Scalars['String']['input']>>;
248203
+ limit?: InputMaybe<Scalars['Int']['input']>;
248204
+ listIds?: InputMaybe<Array<Scalars['ID']['input']>>;
248205
+ memberFilter?: InputMaybe<TrelloMultiboardMemberFilterInput>;
248206
+ sortBy?: InputMaybe<Array<TrelloMultiboardCardSortInput>>;
248207
+ };
248208
+ export type TrelloWorkspaceMultiboardCards = {
248209
+ __typename?: 'TrelloWorkspaceMultiboardCards';
248210
+ cards: Array<TrelloBaseCard>;
248211
+ cursor?: Maybe<Scalars['String']['output']>;
248212
+ total?: Maybe<Scalars['Int']['output']>;
248213
+ };
247965
248214
  export type TrelloWorkspacePrefs = {
247966
248215
  __typename?: 'TrelloWorkspacePrefs';
247967
248216
  associatedDomain?: Maybe<Scalars['String']['output']>;