@forge/cli-shared 6.6.1-next.16 → 6.6.1-next.17

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.6.1-next.17
4
+
5
+ ### Patch Changes
6
+
7
+ - 2086b3d: Remove node-fetch as a dependency
8
+ - Updated dependencies [2086b3d]
9
+ - @forge/manifest@8.7.0-next.9
10
+
3
11
  ## 6.6.1-next.16
4
12
 
5
13
  ### Patch Changes
@@ -1082,6 +1082,7 @@ export declare enum ApiGroup {
1082
1082
  Jira = "JIRA",
1083
1083
  Papi = "PAPI",
1084
1084
  Polaris = "POLARIS",
1085
+ ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
1085
1086
  SurfacePlatform = "SURFACE_PLATFORM",
1086
1087
  Teams = "TEAMS",
1087
1088
  VirtualAgent = "VIRTUAL_AGENT",
@@ -19543,6 +19544,60 @@ export declare enum CustomUserFieldInputComparators {
19543
19544
  IsSet = "IS_SET",
19544
19545
  NotSet = "NOT_SET"
19545
19546
  }
19547
+ export declare type CustomerHubAgentConfiguration = {
19548
+ __typename?: 'CustomerHubAgentConfiguration';
19549
+ agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentityResult>;
19550
+ id: Scalars['ID']['output'];
19551
+ };
19552
+ export declare type CustomerHubAgentConfigurationIdentity = {
19553
+ __typename?: 'CustomerHubAgentConfigurationIdentity';
19554
+ conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
19555
+ id: Scalars['ID']['output'];
19556
+ name?: Maybe<Scalars['String']['output']>;
19557
+ purpose?: Maybe<Scalars['String']['output']>;
19558
+ tone?: Maybe<CustomerHubAgentConfigurationIdentityTone>;
19559
+ };
19560
+ export declare type CustomerHubAgentConfigurationIdentityConversationStarter = {
19561
+ __typename?: 'CustomerHubAgentConfigurationIdentityConversationStarter';
19562
+ id: Scalars['ID']['output'];
19563
+ message?: Maybe<Scalars['String']['output']>;
19564
+ };
19565
+ export declare type CustomerHubAgentConfigurationIdentityMapping = {
19566
+ __typename?: 'CustomerHubAgentConfigurationIdentityMapping';
19567
+ conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
19568
+ id: Scalars['ID']['output'];
19569
+ name?: Maybe<Scalars['String']['output']>;
19570
+ };
19571
+ export declare type CustomerHubAgentConfigurationIdentityMappingResult = CustomerHubAgentConfigurationIdentityMapping | QueryError;
19572
+ export declare type CustomerHubAgentConfigurationIdentityResult = CustomerHubAgentConfigurationIdentity | QueryError;
19573
+ export declare type CustomerHubAgentConfigurationIdentityTone = {
19574
+ __typename?: 'CustomerHubAgentConfigurationIdentityTone';
19575
+ description?: Maybe<Scalars['String']['output']>;
19576
+ type?: Maybe<Scalars['String']['output']>;
19577
+ };
19578
+ export declare type CustomerHubAgentConfigurationIdentityToneInput = {
19579
+ description?: InputMaybe<Scalars['String']['input']>;
19580
+ type: Scalars['String']['input'];
19581
+ };
19582
+ export declare type CustomerHubAgentConfigurationResult = CustomerHubAgentConfiguration | QueryError;
19583
+ export declare type CustomerHubAgentConfigurationUpdateIdentityConfigurationInput = {
19584
+ addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
19585
+ deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
19586
+ name?: InputMaybe<Scalars['String']['input']>;
19587
+ purpose?: InputMaybe<Scalars['String']['input']>;
19588
+ tone?: InputMaybe<CustomerHubAgentConfigurationIdentityToneInput>;
19589
+ updatedConversationStarters?: InputMaybe<Array<CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput>>;
19590
+ };
19591
+ export declare type CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput = {
19592
+ id: Scalars['ID']['input'];
19593
+ message?: InputMaybe<Scalars['String']['input']>;
19594
+ };
19595
+ export declare type CustomerHubAgentConfigurationUpdateIdentityPayload = Payload & {
19596
+ __typename?: 'CustomerHubAgentConfigurationUpdateIdentityPayload';
19597
+ agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentity>;
19598
+ errors?: Maybe<Array<MutationError>>;
19599
+ success: Scalars['Boolean']['output'];
19600
+ };
19546
19601
  export declare type CustomerServiceAttribute = Node & {
19547
19602
  __typename?: 'CustomerServiceAttribute';
19548
19603
  config?: Maybe<CustomerServiceAttributeConfigMetadata>;
@@ -21438,6 +21493,12 @@ export declare type DevAiTriggerAutofixScanPayload = Payload & {
21438
21493
  errors?: Maybe<Array<MutationError>>;
21439
21494
  success: Scalars['Boolean']['output'];
21440
21495
  };
21496
+ export declare type DevAiUser = {
21497
+ __typename?: 'DevAiUser';
21498
+ atlassianAccountId: Scalars['ID']['output'];
21499
+ hasProductAccess?: Maybe<Scalars['Boolean']['output']>;
21500
+ isAdmin?: Maybe<Scalars['Boolean']['output']>;
21501
+ };
21441
21502
  export declare type DevAiWorkflowRunError = {
21442
21503
  __typename?: 'DevAiWorkflowRunError';
21443
21504
  errorType?: Maybe<Scalars['String']['output']>;
@@ -25775,6 +25836,7 @@ export declare type ForgeMetricsCustomData = {
25775
25836
  __typename?: 'ForgeMetricsCustomData';
25776
25837
  appId: Scalars['ID']['output'];
25777
25838
  createdAt: Scalars['String']['output'];
25839
+ createdBy?: Maybe<User>;
25778
25840
  creatorId: Scalars['String']['output'];
25779
25841
  customMetricName: Scalars['String']['output'];
25780
25842
  description?: Maybe<Scalars['String']['output']>;
@@ -55004,6 +55066,24 @@ export declare type JiraEstimate = {
55004
55066
  export declare type JiraEstimateInput = {
55005
55067
  timeInSeconds: Scalars['Long']['input'];
55006
55068
  };
55069
+ export declare type JiraExportIssueDetailsInput = {
55070
+ includeComments?: InputMaybe<Scalars['Boolean']['input']>;
55071
+ includeFields?: InputMaybe<Scalars['Boolean']['input']>;
55072
+ includeHistory?: InputMaybe<Scalars['Boolean']['input']>;
55073
+ includeWorklogs?: InputMaybe<Scalars['Boolean']['input']>;
55074
+ issueId: Scalars['ID']['input'];
55075
+ };
55076
+ export declare type JiraExportIssueDetailsResponse = {
55077
+ __typename?: 'JiraExportIssueDetailsResponse';
55078
+ errors?: Maybe<Array<QueryError>>;
55079
+ taskResponse?: Maybe<JiraExportIssueDetailsTaskResponse>;
55080
+ };
55081
+ export declare type JiraExportIssueDetailsTaskResponse = {
55082
+ __typename?: 'JiraExportIssueDetailsTaskResponse';
55083
+ taskDescription?: Maybe<Scalars['String']['output']>;
55084
+ taskId?: Maybe<Scalars['ID']['output']>;
55085
+ taskStatus?: Maybe<JiraLongRunningTaskStatus>;
55086
+ };
55007
55087
  export declare type JiraExtensionRenderingContextInput = {
55008
55088
  issueKey?: InputMaybe<Scalars['String']['input']>;
55009
55089
  portalId?: InputMaybe<Scalars['ID']['input']>;
@@ -60965,6 +61045,7 @@ export declare type JiraProject = Node & {
60965
61045
  isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
60966
61046
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
60967
61047
  isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
61048
+ isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
60968
61049
  isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
60969
61050
  issueTypes?: Maybe<JiraIssueTypeConnection>;
60970
61051
  jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
@@ -61732,6 +61813,7 @@ export declare type JiraQuery = {
61732
61813
  devOps?: Maybe<JiraDevOpsQuery>;
61733
61814
  devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
61734
61815
  epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
61816
+ exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
61735
61817
  favouriteFilters?: Maybe<JiraFilterConnection>;
61736
61818
  favourites?: Maybe<JiraFavouriteConnection>;
61737
61819
  fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
@@ -62027,6 +62109,9 @@ export declare type JiraQueryDevOpsProvidersArgs = {
62027
62109
  export declare type JiraQueryEpicLinkFieldKeyArgs = {
62028
62110
  cloudId?: InputMaybe<Scalars['ID']['input']>;
62029
62111
  };
62112
+ export declare type JiraQueryExportIssueDetailsArgs = {
62113
+ input: JiraExportIssueDetailsInput;
62114
+ };
62030
62115
  export declare type JiraQueryFavouriteFiltersArgs = {
62031
62116
  after?: InputMaybe<Scalars['String']['input']>;
62032
62117
  before?: InputMaybe<Scalars['String']['input']>;
@@ -71893,6 +71978,7 @@ export declare type MarketplaceStorePartnerListing = {
71893
71978
  slug?: Maybe<Scalars['String']['output']>;
71894
71979
  supportAvailability?: Maybe<MarketplaceStorePartnerSupportAvailability>;
71895
71980
  supportContact?: Maybe<MarketplaceStorePartnerSupportContact>;
71981
+ trustCenterUrl?: Maybe<Scalars['String']['output']>;
71896
71982
  };
71897
71983
  export declare type MarketplaceStorePartnerResponse = {
71898
71984
  __typename?: 'MarketplaceStorePartnerResponse';
@@ -73959,6 +74045,7 @@ export declare type Mutation = {
73959
74045
  createSystemSpace?: Maybe<Space>;
73960
74046
  createTemplate?: Maybe<ContentTemplate>;
73961
74047
  createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
74048
+ customerHubAgentConfiguration_updateIdentityConfiguration?: Maybe<CustomerHubAgentConfigurationUpdateIdentityPayload>;
73962
74049
  customerService?: Maybe<CustomerServiceMutationApi>;
73963
74050
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
73964
74051
  deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
@@ -75086,6 +75173,11 @@ export declare type MutationCreateWebTriggerUrlArgs = {
75086
75173
  forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
75087
75174
  input: WebTriggerUrlInput;
75088
75175
  };
75176
+ export declare type MutationCustomerHubAgentConfiguration_UpdateIdentityConfigurationArgs = {
75177
+ agentConfigurationId: Scalars['ID']['input'];
75178
+ helpCenterAri: Scalars['ID']['input'];
75179
+ input?: InputMaybe<CustomerHubAgentConfigurationUpdateIdentityConfigurationInput>;
75180
+ };
75089
75181
  export declare type MutationCustomerServiceArgs = {
75090
75182
  cloudId: Scalars['ID']['input'];
75091
75183
  };
@@ -78812,6 +78904,8 @@ export declare type Query = {
78812
78904
  countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
78813
78905
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
78814
78906
  currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
78907
+ customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
78908
+ customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
78815
78909
  customerService?: Maybe<CustomerServiceQueryApi>;
78816
78910
  customerStories: ContentPlatformCustomerStorySearchConnection;
78817
78911
  customerStory?: Maybe<ContentPlatformCustomerStory>;
@@ -78848,6 +78942,7 @@ export declare type Query = {
78848
78942
  devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
78849
78943
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
78850
78944
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
78945
+ devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
78851
78946
  devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
78852
78947
  devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
78853
78948
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
@@ -80623,6 +80718,12 @@ export declare type QueryCountUsersGroupByPageArgs = {
80623
80718
  sortOrder?: InputMaybe<Scalars['String']['input']>;
80624
80719
  startTime: Scalars['String']['input'];
80625
80720
  };
80721
+ export declare type QueryCustomerHubAgentConfiguration_ConfigurationByHelpCenterAriArgs = {
80722
+ helpCenterAri: Scalars['ID']['input'];
80723
+ };
80724
+ export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
80725
+ helpCenterAri: Scalars['ID']['input'];
80726
+ };
80626
80727
  export declare type QueryCustomerServiceArgs = {
80627
80728
  cloudId: Scalars['ID']['input'];
80628
80729
  };
@@ -80766,6 +80867,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
80766
80867
  query?: InputMaybe<Scalars['String']['input']>;
80767
80868
  templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
80768
80869
  };
80870
+ export declare type QueryDevai_RovoDevAgentsUserArgs = {
80871
+ atlassianAccountId: Scalars['ID']['input'];
80872
+ cloudId: Scalars['ID']['input'];
80873
+ };
80769
80874
  export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
80770
80875
  cloudId: Scalars['ID']['input'];
80771
80876
  jobId: Scalars['ID']['input'];
@@ -92508,6 +92613,7 @@ export declare type UnifiedMutation = {
92508
92613
  createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
92509
92614
  gating?: Maybe<UnifiedGatingMutation>;
92510
92615
  linking?: Maybe<UnifiedLinkingMutation>;
92616
+ profile?: Maybe<UnifiedProfileMutation>;
92511
92617
  updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
92512
92618
  };
92513
92619
  export declare type UnifiedMutationCreateUnifiedSystemArgs = {
@@ -92608,6 +92714,13 @@ export declare type UnifiedProfileInput = {
92608
92714
  xUrl?: InputMaybe<Scalars['String']['input']>;
92609
92715
  youtubeUrl?: InputMaybe<Scalars['String']['input']>;
92610
92716
  };
92717
+ export declare type UnifiedProfileMutation = {
92718
+ __typename?: 'UnifiedProfileMutation';
92719
+ getExistingOrNewProfileFromKhorosUserId?: Maybe<UnifiedProfilePayload>;
92720
+ };
92721
+ export declare type UnifiedProfileMutationGetExistingOrNewProfileFromKhorosUserIdArgs = {
92722
+ khorosUserId: Scalars['String']['input'];
92723
+ };
92611
92724
  export declare type UnifiedProfilePayload = UnifiedPayload & {
92612
92725
  __typename?: 'UnifiedProfilePayload';
92613
92726
  errors?: Maybe<Array<UnifiedMutationError>>;