@forge/cli-shared 8.22.1-next.1 → 8.23.0-next.2

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,16 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.23.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 808adbd: Grouped commands in CLI help and commander.js version bump
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [55991a3]
12
+ - @forge/manifest@12.8.0-next.2
13
+
3
14
  ## 8.22.1-next.1
4
15
 
5
16
  ### Patch Changes
@@ -7095,18 +7095,6 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
7095
7095
  teamAri?: Maybe<Scalars['ID']['output']>;
7096
7096
  teamName?: Maybe<Scalars['String']['output']>;
7097
7097
  };
7098
- export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
7099
- confidence?: InputMaybe<Scalars['Float']['input']>;
7100
- description?: InputMaybe<Scalars['String']['input']>;
7101
- serviceName?: InputMaybe<Scalars['String']['input']>;
7102
- source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
7103
- teamAri?: InputMaybe<Scalars['ID']['input']>;
7104
- teamName?: InputMaybe<Scalars['String']['input']>;
7105
- };
7106
- export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
7107
- Manual = "MANUAL",
7108
- Rovo = "ROVO"
7109
- }
7110
7098
  export declare type AgentWorkspaceEditShiftInput = {
7111
7099
  agentId: Scalars['ID']['input'];
7112
7100
  newEndTime: Scalars['DateTime']['input'];
@@ -7147,11 +7135,6 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
7147
7135
  issueARI: Scalars['ID']['output'];
7148
7136
  recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
7149
7137
  };
7150
- export declare type AgentWorkspaceMutationError = {
7151
- __typename?: 'AgentWorkspaceMutationError';
7152
- code?: Maybe<Scalars['String']['output']>;
7153
- message: Scalars['String']['output'];
7154
- };
7155
7138
  export declare type AgentWorkspacePageInfo = {
7156
7139
  __typename?: 'AgentWorkspacePageInfo';
7157
7140
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -7728,17 +7711,6 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
7728
7711
  smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
7729
7712
  success: Scalars['Boolean']['output'];
7730
7713
  };
7731
- export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
7732
- included?: InputMaybe<Scalars['Boolean']['input']>;
7733
- projectAri: Scalars['ID']['input'];
7734
- row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
7735
- serviceId: Scalars['ID']['input'];
7736
- };
7737
- export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
7738
- __typename?: 'AgentWorkspaceUpsertDraftedRoutingTableEntryPayload';
7739
- entry: AgentWorkspaceDraftedRoutingTableEntry;
7740
- errors?: Maybe<Array<AgentWorkspaceMutationError>>;
7741
- };
7742
7714
  export declare type AiCoreApiCsvExportInput = {
7743
7715
  cloudId?: InputMaybe<Scalars['ID']['input']>;
7744
7716
  fromDate?: InputMaybe<Scalars['String']['input']>;
@@ -43303,6 +43275,12 @@ export declare type EarliestOnboardedProjectForCloudId = {
43303
43275
  datetime?: Maybe<Scalars['String']['output']>;
43304
43276
  template?: Maybe<Scalars['String']['output']>;
43305
43277
  };
43278
+ export declare type EcosystemAddonInstallationUnit = {
43279
+ __typename?: 'EcosystemAddonInstallationUnit';
43280
+ installationId: Scalars['ID']['output'];
43281
+ orgId?: Maybe<Scalars['ID']['output']>;
43282
+ unitId?: Maybe<Scalars['ID']['output']>;
43283
+ };
43306
43284
  export declare type EcosystemApp = App | EcosystemConnectApp;
43307
43285
  export declare type EcosystemAppInstallationConfigExtension = {
43308
43286
  __typename?: 'EcosystemAppInstallationConfigExtension';
@@ -43698,6 +43676,7 @@ export declare type EcosystemQuery = {
43698
43676
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
43699
43677
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
43700
43678
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
43679
+ unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
43701
43680
  unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
43702
43681
  userAccess?: Maybe<UserAccess>;
43703
43682
  userGrants?: Maybe<UserGrantConnection>;
@@ -43785,6 +43764,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
43785
43764
  environmentId?: InputMaybe<Scalars['ID']['input']>;
43786
43765
  first?: InputMaybe<Scalars['Int']['input']>;
43787
43766
  };
43767
+ export declare type EcosystemQueryUnitsByInstallationIdArgs = {
43768
+ installationIds: Array<Scalars['ID']['input']>;
43769
+ };
43788
43770
  export declare type EcosystemQueryUnitsForOrgArgs = {
43789
43771
  orgId: Scalars['ID']['input'];
43790
43772
  };
@@ -49110,6 +49092,9 @@ export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDime
49110
49092
  iconUrl: Scalars['String']['output'];
49111
49093
  id: Scalars['String']['output'];
49112
49094
  };
49095
+ export declare enum GraphIntegrationSkillSurface {
49096
+ RovoAgents = "ROVO_AGENTS"
49097
+ }
49113
49098
  export declare type GraphIntegrationSkillTool = {
49114
49099
  __typename?: 'GraphIntegrationSkillTool';
49115
49100
  id: Scalars['String']['output'];
@@ -131525,6 +131510,44 @@ export declare type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput
131525
131510
  createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
131526
131511
  projectId: Scalars['ID']['input'];
131527
131512
  };
131513
+ export declare type JiraServiceManagementChannelSource = {
131514
+ __typename?: 'JiraServiceManagementChannelSource';
131515
+ displayName?: Maybe<Scalars['String']['output']>;
131516
+ id: Scalars['ID']['output'];
131517
+ };
131518
+ export declare type JiraServiceManagementChannelSourceConnection = {
131519
+ __typename?: 'JiraServiceManagementChannelSourceConnection';
131520
+ edges?: Maybe<Array<Maybe<JiraServiceManagementChannelSourceEdge>>>;
131521
+ pageInfo: PageInfo;
131522
+ totalCount?: Maybe<Scalars['Int']['output']>;
131523
+ };
131524
+ export declare type JiraServiceManagementChannelSourceEdge = {
131525
+ __typename?: 'JiraServiceManagementChannelSourceEdge';
131526
+ cursor: Scalars['String']['output'];
131527
+ node?: Maybe<JiraServiceManagementChannelSource>;
131528
+ };
131529
+ export declare type JiraServiceManagementChannelSourceField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
131530
+ __typename?: 'JiraServiceManagementChannelSourceField';
131531
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
131532
+ channelSources?: Maybe<JiraServiceManagementChannelSourceConnection>;
131533
+ description?: Maybe<Scalars['String']['output']>;
131534
+ fieldConfig?: Maybe<JiraFieldConfig>;
131535
+ fieldId: Scalars['String']['output'];
131536
+ fieldOperations?: Maybe<JiraFieldOperation>;
131537
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
131538
+ id: Scalars['ID']['output'];
131539
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
131540
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
131541
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
131542
+ issue?: Maybe<JiraIssue>;
131543
+ name: Scalars['String']['output'];
131544
+ type: Scalars['String']['output'];
131545
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
131546
+ };
131547
+ export declare type JiraServiceManagementChannelSourceFieldChannelSourcesArgs = {
131548
+ after?: InputMaybe<Scalars['String']['input']>;
131549
+ first?: InputMaybe<Scalars['Int']['input']>;
131550
+ };
131528
131551
  export declare type JiraServiceManagementComment = JiraComment & Node & {
131529
131552
  __typename?: 'JiraServiceManagementComment';
131530
131553
  author?: Maybe<User>;
@@ -154395,7 +154418,6 @@ export declare type Mutation = {
154395
154418
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154396
154419
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
154397
154420
  agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154398
- agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
154399
154421
  aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
154400
154422
  aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
154401
154423
  aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
@@ -156014,9 +156036,6 @@ export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
156014
156036
  export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
156015
156037
  input: AgentWorkspaceUpdateSmartRoutingConfigInput;
156016
156038
  };
156017
- export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
156018
- input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
156019
- };
156020
156039
  export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
156021
156040
  input: AiCoreApiCsvExportInput;
156022
156041
  };
@@ -168354,6 +168373,7 @@ export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
168354
168373
  export declare type QueryGraphIntegration_SkillItemsArgs = {
168355
168374
  contextAri: Scalars['ID']['input'];
168356
168375
  skillAris: Array<Scalars['ID']['input']>;
168376
+ surface?: InputMaybe<GraphIntegrationSkillSurface>;
168357
168377
  };
168358
168378
  export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
168359
168379
  contextAri: Scalars['ID']['input'];