@forge/cli-shared 5.1.1-next.1 → 5.1.1-next.3

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.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8c3a153]
8
+ - @forge/manifest@7.5.0-next.3
9
+
10
+ ## 5.1.1-next.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [2278ad7]
15
+ - @forge/manifest@7.5.0-next.2
16
+
3
17
  ## 5.1.1-next.1
4
18
 
5
19
  ### Patch Changes
@@ -7811,6 +7811,7 @@ export declare type ContentPlatformProTipComponent = {
7811
7811
  __typename?: 'ContentPlatformProTipComponent';
7812
7812
  createdAt?: Maybe<Scalars['String']['output']>;
7813
7813
  name?: Maybe<Scalars['String']['output']>;
7814
+ proTipRichText?: Maybe<Scalars['String']['output']>;
7814
7815
  proTipText?: Maybe<Scalars['String']['output']>;
7815
7816
  updatedAt?: Maybe<Scalars['String']['output']>;
7816
7817
  };
@@ -8136,6 +8137,7 @@ export declare type ContentPlatformTemplate = {
8136
8137
  contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
8137
8138
  createdAt?: Maybe<Scalars['String']['output']>;
8138
8139
  howToUseThisTemplate: Array<ContentPlatformTemplateGuide>;
8140
+ keyFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
8139
8141
  name?: Maybe<Scalars['String']['output']>;
8140
8142
  oneLinerHeadline?: Maybe<Scalars['String']['output']>;
8141
8143
  pluginModuleKey: Scalars['String']['output'];
@@ -8144,12 +8146,30 @@ export declare type ContentPlatformTemplate = {
8144
8146
  relatedTemplates?: Maybe<Array<ContentPlatformTemplate>>;
8145
8147
  targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
8146
8148
  targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
8149
+ templateBenefits?: Maybe<Array<ContentPlatformTemplateBenefitContainer>>;
8147
8150
  templateIcon?: Maybe<ContentPlatformTemplateImageAsset>;
8148
8151
  templateId: Scalars['String']['output'];
8152
+ templateOverview?: Maybe<Array<ContentPlatformTemplateOverview>>;
8149
8153
  templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
8154
+ templateProductRationale?: Maybe<Array<ContentPlatformTemplateProductRationale>>;
8150
8155
  updatedAt?: Maybe<Scalars['String']['output']>;
8151
8156
  urlSlug?: Maybe<Scalars['String']['output']>;
8152
8157
  };
8158
+ export declare type ContentPlatformTemplateBenefit = {
8159
+ __typename?: 'ContentPlatformTemplateBenefit';
8160
+ createdAt?: Maybe<Scalars['String']['output']>;
8161
+ name?: Maybe<Scalars['String']['output']>;
8162
+ shortDescription?: Maybe<Scalars['String']['output']>;
8163
+ updatedAt?: Maybe<Scalars['String']['output']>;
8164
+ };
8165
+ export declare type ContentPlatformTemplateBenefitContainer = {
8166
+ __typename?: 'ContentPlatformTemplateBenefitContainer';
8167
+ benefitsTitle?: Maybe<Scalars['String']['output']>;
8168
+ createdAt?: Maybe<Scalars['String']['output']>;
8169
+ name?: Maybe<Scalars['String']['output']>;
8170
+ templateBenefitContainer?: Maybe<Array<ContentPlatformTemplateBenefit>>;
8171
+ updatedAt?: Maybe<Scalars['String']['output']>;
8172
+ };
8153
8173
  export declare type ContentPlatformTemplateCollection = {
8154
8174
  __typename?: 'ContentPlatformTemplateCollection';
8155
8175
  aboutThisCollection?: Maybe<Scalars['String']['output']>;
@@ -8217,6 +8237,22 @@ export declare type ContentPlatformTemplateImageAsset = {
8217
8237
  updatedAt?: Maybe<Scalars['String']['output']>;
8218
8238
  url: Scalars['String']['output'];
8219
8239
  };
8240
+ export declare type ContentPlatformTemplateOverview = {
8241
+ __typename?: 'ContentPlatformTemplateOverview';
8242
+ createdAt?: Maybe<Scalars['String']['output']>;
8243
+ name?: Maybe<Scalars['String']['output']>;
8244
+ overviewDescription?: Maybe<Scalars['String']['output']>;
8245
+ overviewTitle?: Maybe<Scalars['String']['output']>;
8246
+ updatedAt?: Maybe<Scalars['String']['output']>;
8247
+ };
8248
+ export declare type ContentPlatformTemplateProductRationale = {
8249
+ __typename?: 'ContentPlatformTemplateProductRationale';
8250
+ createdAt?: Maybe<Scalars['String']['output']>;
8251
+ name?: Maybe<Scalars['String']['output']>;
8252
+ rationaleTitle?: Maybe<Scalars['String']['output']>;
8253
+ templateProductRationaleDescription?: Maybe<Scalars['String']['output']>;
8254
+ updatedAt?: Maybe<Scalars['String']['output']>;
8255
+ };
8220
8256
  export declare type ContentPlatformTemplateResultEdge = {
8221
8257
  __typename?: 'ContentPlatformTemplateResultEdge';
8222
8258
  cursor: Scalars['String']['output'];
@@ -27575,6 +27611,7 @@ export declare type HelpCenterTranslationInput = {
27575
27611
  export declare enum HelpCenterType {
27576
27612
  Advanced = "ADVANCED",
27577
27613
  Basic = "BASIC",
27614
+ CustomerService = "CUSTOMER_SERVICE",
27578
27615
  Unified = "UNIFIED"
27579
27616
  }
27580
27617
  export declare type HelpCenterUpdateInput = {
@@ -29898,9 +29935,17 @@ export declare type JiraArchivedIssuesFilterInput = {
29898
29935
  };
29899
29936
  export declare type JiraArchivedIssuesFilterOptions = {
29900
29937
  __typename?: 'JiraArchivedIssuesFilterOptions';
29938
+ issueTypes: JiraIssueTypeConnection;
29901
29939
  projectId: Scalars['ID']['output'];
29902
29940
  reporters: JiraUserConnection;
29903
29941
  };
29942
+ export declare type JiraArchivedIssuesFilterOptionsIssueTypesArgs = {
29943
+ after?: InputMaybe<Scalars['String']['input']>;
29944
+ before?: InputMaybe<Scalars['String']['input']>;
29945
+ first?: InputMaybe<Scalars['Int']['input']>;
29946
+ last?: InputMaybe<Scalars['Int']['input']>;
29947
+ searchBy?: InputMaybe<Scalars['String']['input']>;
29948
+ };
29904
29949
  export declare type JiraArchivedIssuesFilterOptionsReportersArgs = {
29905
29950
  after?: InputMaybe<Scalars['String']['input']>;
29906
29951
  before?: InputMaybe<Scalars['String']['input']>;
@@ -50819,6 +50864,7 @@ export declare type SearchResultSlackMessage = SearchResult & {
50819
50864
  description: Scalars['String']['output'];
50820
50865
  iconUrl?: Maybe<Scalars['URL']['output']>;
50821
50866
  id: Scalars['ID']['output'];
50867
+ initialContributors?: Maybe<Array<ThirdPartyUser>>;
50822
50868
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
50823
50869
  mentions?: Maybe<Array<ThirdPartyUser>>;
50824
50870
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
@@ -51940,6 +51986,7 @@ export declare type ShepherdResourceActivity = {
51940
51986
  id: Scalars['String']['output'];
51941
51987
  message?: Maybe<Scalars['JSON']['output']>;
51942
51988
  resourceAri: Scalars['String']['output'];
51989
+ resourceTitle?: Maybe<Scalars['String']['output']>;
51943
51990
  resourceUrl?: Maybe<Scalars['String']['output']>;
51944
51991
  time: Scalars['DateTime']['output'];
51945
51992
  };
@@ -53587,6 +53634,21 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
53587
53634
  errors?: Maybe<Array<MutationError>>;
53588
53635
  success: Scalars['Boolean']['output'];
53589
53636
  };
53637
+ export declare enum ToolchainAssociateEntitiesErrorCode {
53638
+ EntityRejected = "ENTITY_REJECTED",
53639
+ EntityUrlInvalid = "ENTITY_URL_INVALID",
53640
+ ProviderEntityFetchForbidden = "PROVIDER_ENTITY_FETCH_FORBIDDEN",
53641
+ ProviderEntityNotFound = "PROVIDER_ENTITY_NOT_FOUND",
53642
+ ProviderError = "PROVIDER_ERROR",
53643
+ ProviderInputInvalid = "PROVIDER_INPUT_INVALID"
53644
+ }
53645
+ export declare type ToolchainAssociateEntitiesErrorExtension = MutationErrorExtension & {
53646
+ __typename?: 'ToolchainAssociateEntitiesErrorExtension';
53647
+ entityUrl?: Maybe<Scalars['String']['output']>;
53648
+ errorCode?: Maybe<ToolchainAssociateEntitiesErrorCode>;
53649
+ errorType?: Maybe<Scalars['String']['output']>;
53650
+ statusCode?: Maybe<Scalars['Int']['output']>;
53651
+ };
53590
53652
  export declare type ToolchainAssociateEntitiesInput = {
53591
53653
  associations: Array<ToolchainAssociateEntityInput>;
53592
53654
  cloudId: Scalars['ID']['input'];
@@ -55698,6 +55760,7 @@ export declare type UnifiedProfile = UnifiedINode & {
55698
55760
  forums?: Maybe<UnifiedUForumsResult>;
55699
55761
  forumsId?: Maybe<Scalars['String']['output']>;
55700
55762
  gamification?: Maybe<UnifiedUGamificationResult>;
55763
+ gamificationId?: Maybe<Scalars['String']['output']>;
55701
55764
  id: Scalars['ID']['output'];
55702
55765
  learnId?: Maybe<Scalars['String']['output']>;
55703
55766
  learning?: Maybe<UnifiedULearningResult>;
@@ -56969,7 +57032,7 @@ export declare type WebTriggerUrlInput = {
56969
57032
  };
56970
57033
  export declare type WorkSuggestions = {
56971
57034
  __typename?: 'WorkSuggestions';
56972
- suggestionsByProjects: WorkSuggestionsConnection;
57035
+ suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
56973
57036
  userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
56974
57037
  workSuggestionsByContextAri: WorkSuggestionsConnection;
56975
57038
  };
@@ -57039,6 +57102,15 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
57039
57102
  title: Scalars['String']['output'];
57040
57103
  url: Scalars['String']['output'];
57041
57104
  };
57105
+ export declare type WorkSuggestionsByProjectsResponse = {
57106
+ __typename?: 'WorkSuggestionsByProjectsResponse';
57107
+ commonSuggestions: WorkSuggestionsConnection;
57108
+ sortOrder: WorkSuggestionsOrder;
57109
+ };
57110
+ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
57111
+ after?: InputMaybe<Scalars['String']['input']>;
57112
+ first?: InputMaybe<Scalars['Int']['input']>;
57113
+ };
57042
57114
  export declare type WorkSuggestionsCommon = {
57043
57115
  id: Scalars['String']['output'];
57044
57116
  title: Scalars['String']['output'];
@@ -57131,6 +57203,10 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
57131
57203
  errorType?: Maybe<Scalars['String']['output']>;
57132
57204
  statusCode?: Maybe<Scalars['Int']['output']>;
57133
57205
  };
57206
+ export declare type WorkSuggestionsOrder = {
57207
+ __typename?: 'WorkSuggestionsOrder';
57208
+ defaultOrder: Array<Scalars['ID']['output']>;
57209
+ };
57134
57210
  export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
57135
57211
  __typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
57136
57212
  commentCount: Scalars['Int']['output'];