@forge/cli-shared 3.19.0-next.16 → 3.19.0-next.17

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
+ ## 3.19.0-next.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [be07192e]
8
+ - @forge/manifest@4.20.1-next.9
9
+
3
10
  ## 3.19.0-next.16
4
11
 
5
12
  ### Patch Changes
@@ -6868,6 +6868,7 @@ export type CsConnectApp = {
6868
6868
  vendorName?: Maybe<Scalars['String']>;
6869
6869
  distributionStatus: Scalars['String'];
6870
6870
  installations: Array<CsConnectInstallations>;
6871
+ marketplaceApp?: Maybe<MarketplaceApp>;
6871
6872
  };
6872
6873
  export type CsConnectAppVersion = {
6873
6874
  __typename?: 'CsConnectAppVersion';
@@ -7881,6 +7882,7 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
7881
7882
  homeUrl?: Maybe<Scalars['URL']>;
7882
7883
  logoUrl?: Maybe<Scalars['URL']>;
7883
7884
  documentationUrl?: Maybe<Scalars['URL']>;
7885
+ handledDomainName?: Maybe<Scalars['String']>;
7884
7886
  appInstallationId?: Maybe<Scalars['ID']>;
7885
7887
  supportedActions?: Maybe<DevOpsSupportedActions>;
7886
7888
  grant3LOUrl?: Maybe<Scalars['String']>;
@@ -14098,6 +14100,11 @@ export declare enum JiraEmailMimeType {
14098
14100
  Html = "HTML",
14099
14101
  Text = "TEXT"
14100
14102
  }
14103
+ export type JiraEmailMimeTypeUpdateResult = {
14104
+ __typename?: 'JiraEmailMimeTypeUpdateResult';
14105
+ id: Scalars['ID'];
14106
+ emailMimeType?: Maybe<JiraEmailMimeType>;
14107
+ };
14101
14108
  export type JiraEntityProperty = {
14102
14109
  id: Scalars['ID'];
14103
14110
  propertyKey?: Maybe<Scalars['String']>;
@@ -16750,6 +16757,7 @@ export declare enum JiraNotificationChannelType {
16750
16757
  }
16751
16758
  export type JiraNotificationGlobalPreference = {
16752
16759
  __typename?: 'JiraNotificationGlobalPreference';
16760
+ id: Scalars['ID'];
16753
16761
  preferences?: Maybe<JiraNotificationPreferences>;
16754
16762
  emailMimeType?: Maybe<JiraEmailMimeType>;
16755
16763
  isEmailMimeTypeEditable?: Maybe<Scalars['Boolean']>;
@@ -20430,7 +20438,7 @@ export type JiraUpdateEmailMimeTypePayload = Payload & {
20430
20438
  __typename?: 'JiraUpdateEmailMimeTypePayload';
20431
20439
  success: Scalars['Boolean'];
20432
20440
  errors?: Maybe<Array<MutationError>>;
20433
- updatedEmailMimeType?: Maybe<JiraEmailMimeType>;
20441
+ emailMimeTypeUpdateResult?: Maybe<JiraEmailMimeTypeUpdateResult>;
20434
20442
  };
20435
20443
  export type JiraUpdateGlobalNotificationPreferencesInput = {
20436
20444
  preferences: Array<JiraNotificationPreferenceInput>;
@@ -28895,6 +28903,7 @@ export type TownsquareGoalState = {
28895
28903
  export declare enum TownsquareGoalStateValue {
28896
28904
  Archived = "archived",
28897
28905
  AtRisk = "at_risk",
28906
+ Cancelled = "cancelled",
28898
28907
  Done = "done",
28899
28908
  OffTrack = "off_track",
28900
28909
  OnTrack = "on_track",