@forge/cli-shared 9.5.0-next.10 → 9.5.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,25 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2efeacb: Added the `--approve <rule...>` option to `forge lint`, so approval rules such as `MAJOR_VERSION_RULE` can be acknowledged non-interactively, matching the behaviour of `forge deploy --approve`.
8
+
9
+ ### Patch Changes
10
+
11
+ - 2521b54: Display frontend log metadata in verbose Forge CLI log output.
12
+ - 1360df2: Standardise --json flag declaration across all commands
13
+ - b7996ba: Fix tunnel debugging
14
+ - Updated dependencies [a804b36]
15
+ - Updated dependencies [db66d54]
16
+ - Updated dependencies [40260f5]
17
+ - Updated dependencies [0795370]
18
+ - Updated dependencies [f2c080f]
19
+ - Updated dependencies [c62c72a]
20
+ - Updated dependencies [6479f6e]
21
+ - @forge/manifest@13.4.0
22
+
3
23
  ## 9.5.0-next.10
4
24
 
5
25
  ### Patch Changes
@@ -8593,6 +8593,17 @@ export type AgentWorkspaceCapacityTeamEntry = {
8593
8593
  capacity: Scalars['Int']['input'];
8594
8594
  teamAri: Scalars['ID']['input'];
8595
8595
  };
8596
+ export type AgentWorkspaceClearRoutingModeAndTableInput = {
8597
+ cloudId: Scalars['ID']['input'];
8598
+ projectKey: Scalars['String']['input'];
8599
+ };
8600
+ export type AgentWorkspaceClearRoutingModeAndTablePayload = {
8601
+ __typename?: 'AgentWorkspaceClearRoutingModeAndTablePayload';
8602
+ clearedRoutingMode?: Maybe<AgentWorkspaceSmartRoutingMode>;
8603
+ rowsDeleted: Scalars['Int']['output'];
8604
+ smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
8605
+ success: Scalars['Boolean']['output'];
8606
+ };
8596
8607
  export declare enum AgentWorkspaceConfigurableRoutingInput {
8597
8608
  Availability = "AVAILABILITY",
8598
8609
  Capacity = "CAPACITY",
@@ -57786,6 +57797,12 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
57786
57797
  supportedAuthTypes: Array<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
57787
57798
  templateId: Scalars['String']['output'];
57788
57799
  };
57800
+ export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
57801
+ authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
57802
+ clientId?: InputMaybe<Scalars['String']['input']>;
57803
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
57804
+ values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
57805
+ };
57789
57806
  export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
57790
57807
  key: Scalars['String']['input'];
57791
57808
  value: Scalars['String']['input'];
@@ -57809,6 +57826,7 @@ export declare enum GraphIntegrationMcpAdminManagementMcpServerAccessMode {
57809
57826
  }
57810
57827
  export type GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput = {
57811
57828
  apiToken?: InputMaybe<GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput>;
57829
+ customOauth?: InputMaybe<GraphIntegrationMcpAdminManagementCustomOauthConfigInput>;
57812
57830
  noAuth?: InputMaybe<GraphIntegrationMcpAdminManagementNoAuthConfigInput>;
57813
57831
  };
57814
57832
  export declare enum GraphIntegrationMcpAdminManagementMcpServerAuthType {
@@ -165544,6 +165562,10 @@ export type MarketplaceConsoleBillingContactInput = {
165544
165562
  lastName: Scalars['String']['input'];
165545
165563
  phoneNumber: Scalars['String']['input'];
165546
165564
  };
165565
+ export declare enum MarketplaceConsoleBillingCycle {
165566
+ Annual = "ANNUAL",
165567
+ Monthly = "MONTHLY"
165568
+ }
165547
165569
  export type MarketplaceConsoleBulkProductMigration = {
165548
165570
  __typename?: 'MarketplaceConsoleBulkProductMigration';
165549
165571
  products: Array<Maybe<MarketplaceConsoleProductMigration>>;
@@ -165925,6 +165947,7 @@ export declare enum MarketplaceConsoleEditionsActivationStatus {
165925
165947
  Uninitiated = "UNINITIATED"
165926
165948
  }
165927
165949
  export type MarketplaceConsoleEditionsFilterInput = {
165950
+ billingCycle?: InputMaybe<MarketplaceConsoleBillingCycle>;
165928
165951
  editionsGroup?: InputMaybe<MarketplaceConsoleEditionsGroup>;
165929
165952
  };
165930
165953
  export declare enum MarketplaceConsoleEditionsGroup {
@@ -166327,7 +166350,7 @@ export type MarketplaceConsoleMutationApi = {
166327
166350
  createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
166328
166351
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
166329
166352
  createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
166330
- createPrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
166353
+ createPrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
166331
166354
  deleteApp?: Maybe<MarketplaceConsoleProductLifecycleJobResponse>;
166332
166355
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
166333
166356
  deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
@@ -166341,7 +166364,7 @@ export type MarketplaceConsoleMutationApi = {
166341
166364
  refreshAppPublishWizardScreen?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
166342
166365
  regenerateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
166343
166366
  restartAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
166344
- sharePrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
166367
+ sharePrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
166345
166368
  startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
166346
166369
  submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
166347
166370
  subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
@@ -166350,14 +166373,14 @@ export type MarketplaceConsoleMutationApi = {
166350
166373
  updateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
166351
166374
  updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
166352
166375
  updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
166353
- updatePrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
166376
+ updatePrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
166354
166377
  updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
166355
166378
  updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
166356
166379
  updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
166357
166380
  upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
166358
166381
  upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
166359
166382
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
166360
- withdrawPrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
166383
+ withdrawPrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
166361
166384
  };
166362
166385
  export type MarketplaceConsoleMutationApiActivateEditionsArgs = {
166363
166386
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -166732,6 +166755,15 @@ export declare enum MarketplaceConsolePrivateOfferDiscountType {
166732
166755
  FixedAmount = "FIXED_AMOUNT",
166733
166756
  Percentage = "PERCENTAGE"
166734
166757
  }
166758
+ export type MarketplaceConsolePrivateOfferMutationResult = {
166759
+ __typename?: 'MarketplaceConsolePrivateOfferMutationResult';
166760
+ createdAt?: Maybe<Scalars['String']['output']>;
166761
+ offerId: Scalars['ID']['output'];
166762
+ status: MarketplaceConsolePrivateOfferStatus;
166763
+ updatedAt?: Maybe<Scalars['String']['output']>;
166764
+ version: Scalars['Int']['output'];
166765
+ withdrawReason?: Maybe<Scalars['String']['output']>;
166766
+ };
166735
166767
  export declare enum MarketplaceConsolePrivateOfferStatus {
166736
166768
  Accepted = "ACCEPTED",
166737
166769
  Completed = "COMPLETED",
@@ -180514,6 +180546,7 @@ export type Mutation = {
180514
180546
  agentWorkspace_bulkUpsertDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload>;
180515
180547
  agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
180516
180548
  agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
180549
+ agentWorkspace_clearRoutingModeAndTable?: Maybe<AgentWorkspaceClearRoutingModeAndTablePayload>;
180517
180550
  agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
180518
180551
  agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
180519
180552
  agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
@@ -182695,6 +182728,9 @@ export type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
182695
182728
  export type MutationAgentWorkspace_CancelSmartRoutingDryRunArgs = {
182696
182729
  input: AgentWorkspaceCancelSmartRoutingDryRunInput;
182697
182730
  };
182731
+ export type MutationAgentWorkspace_ClearRoutingModeAndTableArgs = {
182732
+ input: AgentWorkspaceClearRoutingModeAndTableInput;
182733
+ };
182698
182734
  export type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
182699
182735
  input: AgentWorkspaceCreateAndLinkTeamsInput;
182700
182736
  };