@forge/cli-shared 2.2.0 → 2.2.1-next.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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.2.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [813f8f3]
8
+ - Updated dependencies [5152239]
9
+ - @forge/manifest@3.1.0-next.0
10
+
3
11
  ## 2.2.0
4
12
 
5
13
  ### Minor Changes
@@ -808,6 +808,7 @@ export declare type AppUnsubscribePayload = Payload & {
808
808
  export declare type AppUser = User & {
809
809
  __typename?: 'AppUser';
810
810
  accountId: Scalars['ID'];
811
+ canonicalAccountId: Scalars['ID'];
811
812
  accountStatus: AccountStatus;
812
813
  name: Scalars['String'];
813
814
  picture: Scalars['URL'];
@@ -867,6 +868,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
867
868
  export declare type AtlassianAccountUser = User & LocalizationContext & {
868
869
  __typename?: 'AtlassianAccountUser';
869
870
  accountId: Scalars['ID'];
871
+ canonicalAccountId: Scalars['ID'];
870
872
  accountStatus: AccountStatus;
871
873
  name: Scalars['String'];
872
874
  picture: Scalars['URL'];
@@ -1666,6 +1668,7 @@ export declare type CompassCatalogQueryApi = {
1666
1668
  teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
1667
1669
  metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
1668
1670
  metricDefinition?: Maybe<CompassMetricDefinitionResult>;
1671
+ builtinMetricDefinitions: Array<CompassMetricDefinition>;
1669
1672
  };
1670
1673
  export declare type CompassCatalogQueryApiComponentArgs = {
1671
1674
  id: Scalars['ID'];
@@ -3158,6 +3161,7 @@ export declare type ContentPlatformReleaseNote = {
3158
3161
  releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
3159
3162
  publishStatus?: Maybe<Scalars['String']>;
3160
3163
  benefitsList?: Maybe<Scalars['JSON']>;
3164
+ getStarted?: Maybe<Scalars['JSON']>;
3161
3165
  };
3162
3166
  export declare type ContentPlatformReleaseNoteEntry = {
3163
3167
  __typename?: 'ContentPlatformReleaseNoteEntry';
@@ -3186,6 +3190,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
3186
3190
  updatedAt: Scalars['String'];
3187
3191
  url: Scalars['String'];
3188
3192
  benefitsList: Scalars['JSON'];
3193
+ getStarted: Scalars['JSON'];
3189
3194
  };
3190
3195
  export declare type ContentPlatformReleaseNoteFilterOptions = {
3191
3196
  fdIssueLinks?: Maybe<Array<Scalars['String']>>;
@@ -3802,6 +3807,7 @@ export declare type CustomUiTunnelDefinitionInput = {
3802
3807
  export declare type CustomerUser = User & LocalizationContext & {
3803
3808
  __typename?: 'CustomerUser';
3804
3809
  accountId: Scalars['ID'];
3810
+ canonicalAccountId: Scalars['ID'];
3805
3811
  accountStatus: AccountStatus;
3806
3812
  name: Scalars['String'];
3807
3813
  picture: Scalars['URL'];
@@ -8511,6 +8517,8 @@ export declare type JiraQuery = {
8511
8517
  issueSearchView?: Maybe<JiraIssueSearchView>;
8512
8518
  issueByKey?: Maybe<JiraIssue>;
8513
8519
  issueById?: Maybe<JiraIssue>;
8520
+ screenIdByIssueId?: Maybe<Scalars['Long']>;
8521
+ screenIdByIssueKey?: Maybe<Scalars['Long']>;
8514
8522
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
8515
8523
  jqlBuilder?: Maybe<JiraJqlBuilder>;
8516
8524
  allGrantTypeKeys: Array<JiraGrantTypeKey>;
@@ -8568,6 +8576,12 @@ export declare type JiraQueryIssueByKeyArgs = {
8568
8576
  export declare type JiraQueryIssueByIdArgs = {
8569
8577
  id: Scalars['ID'];
8570
8578
  };
8579
+ export declare type JiraQueryScreenIdByIssueIdArgs = {
8580
+ issueId: Scalars['ID'];
8581
+ };
8582
+ export declare type JiraQueryScreenIdByIssueKeyArgs = {
8583
+ issueKey: Scalars['String'];
8584
+ };
8571
8585
  export declare type JiraQueryApplicationPropertiesByKeyArgs = {
8572
8586
  cloudId: Scalars['ID'];
8573
8587
  keys: Array<Scalars['String']>;
@@ -12734,6 +12748,7 @@ export declare type RoadmapUserConfiguration = {
12734
12748
  timelineMode: RoadmapTimelineMode;
12735
12749
  epicView: RoadmapEpicView;
12736
12750
  levelOneView: RoadmapLevelOneView;
12751
+ levelOneViewSettings: RoadmapViewSettings;
12737
12752
  };
12738
12753
  export declare type RoadmapVersion = {
12739
12754
  __typename?: 'RoadmapVersion';
@@ -12746,6 +12761,11 @@ export declare enum RoadmapVersionStatus {
12746
12761
  Unreleased = "UNRELEASED",
12747
12762
  Archived = "ARCHIVED"
12748
12763
  }
12764
+ export declare type RoadmapViewSettings = {
12765
+ __typename?: 'RoadmapViewSettings';
12766
+ period: Scalars['Int'];
12767
+ showCompleted: Scalars['Boolean'];
12768
+ };
12749
12769
  export declare type RoadmapsQuery = {
12750
12770
  __typename?: 'RoadmapsQuery';
12751
12771
  roadmapForSource?: Maybe<RoadmapDetails>;
@@ -13382,7 +13402,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
13382
13402
  cloudId: Scalars['ID'];
13383
13403
  accountId: Scalars['ID'];
13384
13404
  projectType?: JiraProjectType;
13385
- filter: JiraProjectFilterInput;
13405
+ filter?: JiraProjectFilterInput;
13386
13406
  };
13387
13407
  export declare type SupportRequest = SupportRequestCommonRequest & {
13388
13408
  __typename?: 'SupportRequest';
@@ -14378,6 +14398,7 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
14378
14398
  };
14379
14399
  export declare type User = {
14380
14400
  accountId: Scalars['ID'];
14401
+ canonicalAccountId: Scalars['ID'];
14381
14402
  accountStatus: AccountStatus;
14382
14403
  name: Scalars['String'];
14383
14404
  picture: Scalars['URL'];