@forge/cli-shared 5.1.1-next.1 → 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,12 @@
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
+
3
10
  ## 5.1.1-next.1
4
11
 
5
12
  ### Patch Changes
@@ -29898,9 +29898,17 @@ export declare type JiraArchivedIssuesFilterInput = {
29898
29898
  };
29899
29899
  export declare type JiraArchivedIssuesFilterOptions = {
29900
29900
  __typename?: 'JiraArchivedIssuesFilterOptions';
29901
+ issueTypes: JiraIssueTypeConnection;
29901
29902
  projectId: Scalars['ID']['output'];
29902
29903
  reporters: JiraUserConnection;
29903
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
+ };
29904
29912
  export declare type JiraArchivedIssuesFilterOptionsReportersArgs = {
29905
29913
  after?: InputMaybe<Scalars['String']['input']>;
29906
29914
  before?: InputMaybe<Scalars['String']['input']>;
@@ -53587,6 +53595,21 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
53587
53595
  errors?: Maybe<Array<MutationError>>;
53588
53596
  success: Scalars['Boolean']['output'];
53589
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
+ };
53590
53613
  export declare type ToolchainAssociateEntitiesInput = {
53591
53614
  associations: Array<ToolchainAssociateEntityInput>;
53592
53615
  cloudId: Scalars['ID']['input'];
@@ -55698,6 +55721,7 @@ export declare type UnifiedProfile = UnifiedINode & {
55698
55721
  forums?: Maybe<UnifiedUForumsResult>;
55699
55722
  forumsId?: Maybe<Scalars['String']['output']>;
55700
55723
  gamification?: Maybe<UnifiedUGamificationResult>;
55724
+ gamificationId?: Maybe<Scalars['String']['output']>;
55701
55725
  id: Scalars['ID']['output'];
55702
55726
  learnId?: Maybe<Scalars['String']['output']>;
55703
55727
  learning?: Maybe<UnifiedULearningResult>;
@@ -56969,7 +56993,7 @@ export declare type WebTriggerUrlInput = {
56969
56993
  };
56970
56994
  export declare type WorkSuggestions = {
56971
56995
  __typename?: 'WorkSuggestions';
56972
- suggestionsByProjects: WorkSuggestionsConnection;
56996
+ suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
56973
56997
  userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
56974
56998
  workSuggestionsByContextAri: WorkSuggestionsConnection;
56975
56999
  };
@@ -57039,6 +57063,15 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
57039
57063
  title: Scalars['String']['output'];
57040
57064
  url: Scalars['String']['output'];
57041
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
+ };
57042
57075
  export declare type WorkSuggestionsCommon = {
57043
57076
  id: Scalars['String']['output'];
57044
57077
  title: Scalars['String']['output'];
@@ -57131,6 +57164,10 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
57131
57164
  errorType?: Maybe<Scalars['String']['output']>;
57132
57165
  statusCode?: Maybe<Scalars['Int']['output']>;
57133
57166
  };
57167
+ export declare type WorkSuggestionsOrder = {
57168
+ __typename?: 'WorkSuggestionsOrder';
57169
+ defaultOrder: Array<Scalars['ID']['output']>;
57170
+ };
57134
57171
  export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
57135
57172
  __typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
57136
57173
  commentCount: Scalars['Int']['output'];