@forge/cli-shared 5.1.1-next.0 → 5.1.1-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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.1.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2278ad7]
8
+ - @forge/manifest@7.5.0-next.2
9
+
10
+ ## 5.1.1-next.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [23cc3d6]
15
+ - @forge/manifest@7.5.0-next.1
16
+
3
17
  ## 5.1.1-next.0
4
18
 
5
19
  ### Patch Changes
@@ -7753,8 +7753,10 @@ export declare type ContentPlatformIpmImageModal = {
7753
7753
  ctaButtonUrl?: Maybe<Scalars['String']['output']>;
7754
7754
  id: Scalars['String']['output'];
7755
7755
  image?: Maybe<Scalars['JSON']['output']>;
7756
+ ipmNumber: Scalars['String']['output'];
7756
7757
  title: Scalars['String']['output'];
7757
7758
  updatedAt?: Maybe<Scalars['String']['output']>;
7759
+ variant?: Maybe<Scalars['String']['output']>;
7758
7760
  };
7759
7761
  export declare type ContentPlatformIpmImageModalResultEdge = {
7760
7762
  __typename?: 'ContentPlatformIpmImageModalResultEdge';
@@ -29896,9 +29898,17 @@ export declare type JiraArchivedIssuesFilterInput = {
29896
29898
  };
29897
29899
  export declare type JiraArchivedIssuesFilterOptions = {
29898
29900
  __typename?: 'JiraArchivedIssuesFilterOptions';
29901
+ issueTypes: JiraIssueTypeConnection;
29899
29902
  projectId: Scalars['ID']['output'];
29900
29903
  reporters: JiraUserConnection;
29901
29904
  };
29905
+ export declare type JiraArchivedIssuesFilterOptionsIssueTypesArgs = {
29906
+ after?: InputMaybe<Scalars['String']['input']>;
29907
+ before?: InputMaybe<Scalars['String']['input']>;
29908
+ first?: InputMaybe<Scalars['Int']['input']>;
29909
+ last?: InputMaybe<Scalars['Int']['input']>;
29910
+ searchBy?: InputMaybe<Scalars['String']['input']>;
29911
+ };
29902
29912
  export declare type JiraArchivedIssuesFilterOptionsReportersArgs = {
29903
29913
  after?: InputMaybe<Scalars['String']['input']>;
29904
29914
  before?: InputMaybe<Scalars['String']['input']>;
@@ -31439,6 +31449,30 @@ export declare enum JiraContactOrgAdminToEnableAtlassianIntelligenceState {
31439
31449
  Available = "AVAILABLE",
31440
31450
  Unavailable = "UNAVAILABLE"
31441
31451
  }
31452
+ export declare type JiraContainerNavigation = Node & {
31453
+ __typename?: 'JiraContainerNavigation';
31454
+ addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
31455
+ id: Scalars['ID']['output'];
31456
+ navigationItems?: Maybe<JiraNavigationItemConnection>;
31457
+ scopeId?: Maybe<Scalars['ID']['output']>;
31458
+ };
31459
+ export declare type JiraContainerNavigationAddableNavigationItemTypesArgs = {
31460
+ after?: InputMaybe<Scalars['String']['input']>;
31461
+ first?: InputMaybe<Scalars['Int']['input']>;
31462
+ };
31463
+ export declare type JiraContainerNavigationNavigationItemsArgs = {
31464
+ after?: InputMaybe<Scalars['String']['input']>;
31465
+ first?: InputMaybe<Scalars['Int']['input']>;
31466
+ };
31467
+ export declare type JiraContainerNavigationByProjectKeyQueryInput = {
31468
+ cloudId: Scalars['ID']['input'];
31469
+ projectKey: Scalars['String']['input'];
31470
+ };
31471
+ export declare type JiraContainerNavigationQueryInput = {
31472
+ projectKeyQuery?: InputMaybe<JiraContainerNavigationByProjectKeyQueryInput>;
31473
+ scopeId?: InputMaybe<Scalars['ID']['input']>;
31474
+ };
31475
+ export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
31442
31476
  export declare type JiraCreateAgileReleaseTrainInput = {
31443
31477
  cloudId: Scalars['ID']['input'];
31444
31478
  configurationId?: InputMaybe<Scalars['ID']['input']>;
@@ -33000,9 +33034,12 @@ export declare type JiraIssueCommandPaletteFieldsArgs = {
33000
33034
  };
33001
33035
  export declare type JiraIssueCommentsArgs = {
33002
33036
  after?: InputMaybe<Scalars['String']['input']>;
33037
+ afterTarget?: InputMaybe<Scalars['Int']['input']>;
33003
33038
  before?: InputMaybe<Scalars['String']['input']>;
33039
+ beforeTarget?: InputMaybe<Scalars['Int']['input']>;
33004
33040
  first?: InputMaybe<Scalars['Int']['input']>;
33005
33041
  last?: InputMaybe<Scalars['Int']['input']>;
33042
+ targetId?: InputMaybe<Scalars['String']['input']>;
33006
33043
  };
33007
33044
  export declare type JiraIssueDesignsArgs = {
33008
33045
  after?: InputMaybe<Scalars['String']['input']>;
@@ -37376,6 +37413,7 @@ export declare type JiraQuery = {
37376
37413
  bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
37377
37414
  canPerform?: Maybe<Scalars['Boolean']['output']>;
37378
37415
  childIssuesLimit?: Maybe<Scalars['Long']['output']>;
37416
+ containerNavigation?: Maybe<JiraContainerNavigationResult>;
37379
37417
  customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
37380
37418
  deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
37381
37419
  deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
@@ -37621,6 +37659,9 @@ export declare type JiraQueryCanPerformArgs = {
37621
37659
  export declare type JiraQueryChildIssuesLimitArgs = {
37622
37660
  cloudId: Scalars['ID']['input'];
37623
37661
  };
37662
+ export declare type JiraQueryContainerNavigationArgs = {
37663
+ input: JiraContainerNavigationQueryInput;
37664
+ };
37624
37665
  export declare type JiraQueryCustomBackgroundsArgs = {
37625
37666
  after?: InputMaybe<Scalars['String']['input']>;
37626
37667
  before?: InputMaybe<Scalars['String']['input']>;
@@ -38313,6 +38354,7 @@ export declare type JiraRankNavigationItemInput = {
38313
38354
  };
38314
38355
  export declare type JiraRankNavigationItemPayload = Payload & {
38315
38356
  __typename?: 'JiraRankNavigationItemPayload';
38357
+ containerNavigation?: Maybe<JiraContainerNavigationResult>;
38316
38358
  errors?: Maybe<Array<MutationError>>;
38317
38359
  navigationItems?: Maybe<JiraNavigationItemConnection>;
38318
38360
  success: Scalars['Boolean']['output'];
@@ -43891,6 +43933,7 @@ export declare type MarketplaceImageFile = {
43891
43933
  __typename?: 'MarketplaceImageFile';
43892
43934
  height: Scalars['Int']['output'];
43893
43935
  id: Scalars['String']['output'];
43936
+ imageUrl?: Maybe<Scalars['String']['output']>;
43894
43937
  width: Scalars['Int']['output'];
43895
43938
  };
43896
43939
  export declare type MarketplaceInstructionalAppDeployment = MarketplaceAppDeployment & {
@@ -53552,6 +53595,21 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
53552
53595
  errors?: Maybe<Array<MutationError>>;
53553
53596
  success: Scalars['Boolean']['output'];
53554
53597
  };
53598
+ export declare enum ToolchainAssociateEntitiesErrorCode {
53599
+ EntityRejected = "ENTITY_REJECTED",
53600
+ EntityUrlInvalid = "ENTITY_URL_INVALID",
53601
+ ProviderEntityFetchForbidden = "PROVIDER_ENTITY_FETCH_FORBIDDEN",
53602
+ ProviderEntityNotFound = "PROVIDER_ENTITY_NOT_FOUND",
53603
+ ProviderError = "PROVIDER_ERROR",
53604
+ ProviderInputInvalid = "PROVIDER_INPUT_INVALID"
53605
+ }
53606
+ export declare type ToolchainAssociateEntitiesErrorExtension = MutationErrorExtension & {
53607
+ __typename?: 'ToolchainAssociateEntitiesErrorExtension';
53608
+ entityUrl?: Maybe<Scalars['String']['output']>;
53609
+ errorCode?: Maybe<ToolchainAssociateEntitiesErrorCode>;
53610
+ errorType?: Maybe<Scalars['String']['output']>;
53611
+ statusCode?: Maybe<Scalars['Int']['output']>;
53612
+ };
53555
53613
  export declare type ToolchainAssociateEntitiesInput = {
53556
53614
  associations: Array<ToolchainAssociateEntityInput>;
53557
53615
  cloudId: Scalars['ID']['input'];
@@ -55663,6 +55721,7 @@ export declare type UnifiedProfile = UnifiedINode & {
55663
55721
  forums?: Maybe<UnifiedUForumsResult>;
55664
55722
  forumsId?: Maybe<Scalars['String']['output']>;
55665
55723
  gamification?: Maybe<UnifiedUGamificationResult>;
55724
+ gamificationId?: Maybe<Scalars['String']['output']>;
55666
55725
  id: Scalars['ID']['output'];
55667
55726
  learnId?: Maybe<Scalars['String']['output']>;
55668
55727
  learning?: Maybe<UnifiedULearningResult>;
@@ -56934,7 +56993,7 @@ export declare type WebTriggerUrlInput = {
56934
56993
  };
56935
56994
  export declare type WorkSuggestions = {
56936
56995
  __typename?: 'WorkSuggestions';
56937
- suggestionsByProjects: WorkSuggestionsConnection;
56996
+ suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
56938
56997
  userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
56939
56998
  workSuggestionsByContextAri: WorkSuggestionsConnection;
56940
56999
  };
@@ -57004,6 +57063,15 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
57004
57063
  title: Scalars['String']['output'];
57005
57064
  url: Scalars['String']['output'];
57006
57065
  };
57066
+ export declare type WorkSuggestionsByProjectsResponse = {
57067
+ __typename?: 'WorkSuggestionsByProjectsResponse';
57068
+ commonSuggestions: WorkSuggestionsConnection;
57069
+ sortOrder: WorkSuggestionsOrder;
57070
+ };
57071
+ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
57072
+ after?: InputMaybe<Scalars['String']['input']>;
57073
+ first?: InputMaybe<Scalars['Int']['input']>;
57074
+ };
57007
57075
  export declare type WorkSuggestionsCommon = {
57008
57076
  id: Scalars['String']['output'];
57009
57077
  title: Scalars['String']['output'];
@@ -57096,6 +57164,10 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
57096
57164
  errorType?: Maybe<Scalars['String']['output']>;
57097
57165
  statusCode?: Maybe<Scalars['Int']['output']>;
57098
57166
  };
57167
+ export declare type WorkSuggestionsOrder = {
57168
+ __typename?: 'WorkSuggestionsOrder';
57169
+ defaultOrder: Array<Scalars['ID']['output']>;
57170
+ };
57099
57171
  export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
57100
57172
  __typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
57101
57173
  commentCount: Scalars['Int']['output'];