@forge/cli-shared 2.5.0-next.0 → 2.5.0-next.1

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
+ ## 2.5.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [74b6c3c]
8
+ - @forge/manifest@3.8.0-next.0
9
+
3
10
  ## 2.5.0-next.0
4
11
 
5
12
  ### Minor Changes
@@ -12121,6 +12121,7 @@ export declare type Mutation = {
12121
12121
  updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
12122
12122
  deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
12123
12123
  createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
12124
+ updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
12124
12125
  updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
12125
12126
  createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
12126
12127
  updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
@@ -12447,6 +12448,9 @@ export declare type MutationDeletePolarisDecorationArgs = {
12447
12448
  export declare type MutationCreatePolarisIdeaTemplateArgs = {
12448
12449
  input: CreatePolarisIdeaTemplateInput;
12449
12450
  };
12451
+ export declare type MutationUpdatePolarisIdeaTemplateArgs = {
12452
+ input: UpdatePolarisIdeaTemplateInput;
12453
+ };
12450
12454
  export declare type MutationUpdatePolarisIdeaArgs = {
12451
12455
  project: Scalars['ID'];
12452
12456
  idea: Scalars['ID'];
@@ -16883,6 +16887,20 @@ export declare type UpdatePolarisIdeaPayload = Payload & {
16883
16887
  errors?: Maybe<Array<MutationError>>;
16884
16888
  node?: Maybe<PolarisIdea>;
16885
16889
  };
16890
+ export declare type UpdatePolarisIdeaTemplateInput = {
16891
+ id: Scalars['ID'];
16892
+ project: Scalars['ID'];
16893
+ title: Scalars['String'];
16894
+ description?: Maybe<Scalars['String']>;
16895
+ color?: Maybe<Scalars['String']>;
16896
+ emoji?: Maybe<Scalars['String']>;
16897
+ template?: Maybe<Scalars['JSON']>;
16898
+ };
16899
+ export declare type UpdatePolarisIdeaTemplatePayload = Payload & {
16900
+ __typename?: 'UpdatePolarisIdeaTemplatePayload';
16901
+ success: Scalars['Boolean'];
16902
+ errors?: Maybe<Array<MutationError>>;
16903
+ };
16886
16904
  export declare type UpdatePolarisInsightInput = {
16887
16905
  description?: Maybe<Scalars['JSON']>;
16888
16906
  snippets?: Maybe<Array<UpdatePolarisSnippetInput>>;