@forge/cli-shared 6.0.0-next.18 → 6.0.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,43 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - f354267: Migrating forge logs commands to use v2 logs APIs to fetch logs. Updated the functionality of the `forge logs -n <limit>` or `forge logs --limit <limit>` CLI command. Instead of showing logs from the last <limit> invocations, it will show the last <limit> log lines.
8
+
9
+ ### Minor Changes
10
+
11
+ - 3d92b59: Integration with statsig
12
+ - 238e7ab: Update type references to support a change in the manifest remote schema
13
+
14
+ ### Patch Changes
15
+
16
+ - 9c5836c: cleanup ff
17
+ - 89b9453: Add test for macro config resource
18
+ - f81ee89: Fix a typo in message.
19
+ - 6b41440: Remove test feature flags
20
+ - Updated dependencies [63d81cf]
21
+ - Updated dependencies [bdca785]
22
+ - Updated dependencies [238e7ab]
23
+ - Updated dependencies [32601f4]
24
+ - Updated dependencies [47f24ba]
25
+ - Updated dependencies [c4391fa]
26
+ - Updated dependencies [d500498]
27
+ - Updated dependencies [5f02b70]
28
+ - Updated dependencies [d9e0900]
29
+ - Updated dependencies [08ff14e]
30
+ - Updated dependencies [8616ebc]
31
+ - Updated dependencies [75698c0]
32
+ - Updated dependencies [f69e798]
33
+ - Updated dependencies [5cd256c]
34
+ - Updated dependencies [b961661]
35
+ - Updated dependencies [6cd61be]
36
+ - Updated dependencies [2920f46]
37
+ - Updated dependencies [3fe0097]
38
+ - Updated dependencies [8ec88e3]
39
+ - @forge/manifest@7.9.0
40
+
3
41
  ## 6.0.0-next.18
4
42
 
5
43
  ### Minor Changes
@@ -46665,7 +46665,6 @@ export declare enum JiraNavigationItemTypeKey {
46665
46665
  Reports = "REPORTS",
46666
46666
  Requests = "REQUESTS",
46667
46667
  Security = "SECURITY",
46668
- Shortcut = "SHORTCUT",
46669
46668
  Shortcuts = "SHORTCUTS",
46670
46669
  Summary = "SUMMARY",
46671
46670
  Timeline = "TIMELINE"
@@ -48299,7 +48298,6 @@ export declare enum JiraPullRequestState {
48299
48298
  export declare type JiraQuery = {
48300
48299
  __typename?: 'JiraQuery';
48301
48300
  activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
48302
- addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
48303
48301
  advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
48304
48302
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
48305
48303
  allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
@@ -48425,10 +48423,6 @@ export declare type JiraQuery = {
48425
48423
  mediaClientId?: Maybe<Scalars['String']['output']>;
48426
48424
  mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
48427
48425
  naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
48428
- navigationItem?: Maybe<JiraNavigationItemResult>;
48429
- navigationItemByProjectKeyAndItemId?: Maybe<JiraNavigationItemResult>;
48430
- navigationItems?: Maybe<JiraNavigationItemConnection>;
48431
- navigationItemsByProjectKey?: Maybe<JiraNavigationItemConnection>;
48432
48426
  navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
48433
48427
  notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
48434
48428
  notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
@@ -48482,11 +48476,6 @@ export declare type JiraQuery = {
48482
48476
  export declare type JiraQueryActiveBackgroundDetailsArgs = {
48483
48477
  entityId: Scalars['ID']['input'];
48484
48478
  };
48485
- export declare type JiraQueryAddableNavigationItemTypesArgs = {
48486
- after?: InputMaybe<Scalars['String']['input']>;
48487
- first?: InputMaybe<Scalars['Int']['input']>;
48488
- scopeId: Scalars['ID']['input'];
48489
- };
48490
48479
  export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
48491
48480
  cloudId: Scalars['ID']['input'];
48492
48481
  };
@@ -49069,25 +49058,6 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
49069
49058
  cloudId: Scalars['ID']['input'];
49070
49059
  input: JiraNaturalLanguageToJqlInput;
49071
49060
  };
49072
- export declare type JiraQueryNavigationItemArgs = {
49073
- id: Scalars['ID']['input'];
49074
- };
49075
- export declare type JiraQueryNavigationItemByProjectKeyAndItemIdArgs = {
49076
- cloudId: Scalars['ID']['input'];
49077
- itemId: Scalars['ID']['input'];
49078
- projectKey: Scalars['String']['input'];
49079
- };
49080
- export declare type JiraQueryNavigationItemsArgs = {
49081
- after?: InputMaybe<Scalars['String']['input']>;
49082
- first?: InputMaybe<Scalars['Int']['input']>;
49083
- scopeId: Scalars['ID']['input'];
49084
- };
49085
- export declare type JiraQueryNavigationItemsByProjectKeyArgs = {
49086
- after?: InputMaybe<Scalars['String']['input']>;
49087
- cloudId: Scalars['ID']['input'];
49088
- first?: InputMaybe<Scalars['Int']['input']>;
49089
- projectKey: Scalars['String']['input'];
49090
- };
49091
49061
  export declare type JiraQueryNavigationUiStateArgs = {
49092
49062
  cloudId: Scalars['ID']['input'];
49093
49063
  };
@@ -72077,12 +72047,16 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
72077
72047
  export declare type VirtualAgentQueryApi = {
72078
72048
  __typename?: 'VirtualAgentQueryApi';
72079
72049
  validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
72050
+ virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
72080
72051
  virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
72081
72052
  };
72082
72053
  export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
72083
72054
  jiraProjectId: Scalars['ID']['input'];
72084
72055
  requestTypeId: Scalars['String']['input'];
72085
72056
  };
72057
+ export declare type VirtualAgentQueryApiVirtualAgentAvailabilityArgs = {
72058
+ containerId: Scalars['ID']['input'];
72059
+ };
72086
72060
  export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
72087
72061
  cloudId: Scalars['ID']['input'];
72088
72062
  };