@forge/cli-shared 2.4.0-next.3 → 2.4.0-next.6

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,26 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.4.0-next.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d196b41]
8
+ - @forge/manifest@3.5.0-next.5
9
+
10
+ ## 2.4.0-next.5
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [e411a29]
15
+ - @forge/manifest@3.5.0-next.4
16
+
17
+ ## 2.4.0-next.4
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [d094c69]
22
+ - @forge/manifest@3.5.0-next.3
23
+
3
24
  ## 2.4.0-next.3
4
25
 
5
26
  ### Minor Changes
@@ -1450,6 +1450,7 @@ export declare type CardStatus = {
1450
1450
  export declare type CardType = {
1451
1451
  __typename?: 'CardType';
1452
1452
  id?: Maybe<Scalars['ID']>;
1453
+ externalId?: Maybe<Scalars['ID']>;
1453
1454
  name?: Maybe<Scalars['String']>;
1454
1455
  iconUrl?: Maybe<Scalars['String']>;
1455
1456
  inlineCardCreate?: Maybe<InlineCardCreateConfig>;
@@ -5093,6 +5094,7 @@ export declare type DevOpsTool = Node & {
5093
5094
  group: DevOpsToolGroup;
5094
5095
  supportsContainers: Scalars['Boolean'];
5095
5096
  containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
5097
+ integration?: Maybe<DevOpsToolIntegration>;
5096
5098
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
5097
5099
  };
5098
5100
  export declare type DevOpsToolNamespacesArgs = {
@@ -5208,6 +5210,21 @@ export declare type DevOpsToolGroup = {
5208
5210
  groupId: Scalars['String'];
5209
5211
  groupName: Scalars['String'];
5210
5212
  };
5213
+ export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
5214
+ export declare type DevOpsToolIntegrationApp = {
5215
+ __typename?: 'DevOpsToolIntegrationApp';
5216
+ appKey: Scalars['String'];
5217
+ appName: Scalars['String'];
5218
+ installed: Scalars['Boolean'];
5219
+ iconUrl?: Maybe<Scalars['String']>;
5220
+ };
5221
+ export declare type DevOpsToolIntegrationProduct = {
5222
+ __typename?: 'DevOpsToolIntegrationProduct';
5223
+ productKey: Scalars['String'];
5224
+ productName: Scalars['String'];
5225
+ available: Scalars['Boolean'];
5226
+ iconUrl?: Maybe<Scalars['String']>;
5227
+ };
5211
5228
  export declare type DevOpsToolNamespace = Node & {
5212
5229
  __typename?: 'DevOpsToolNamespace';
5213
5230
  id: Scalars['ID'];
@@ -7988,6 +8005,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
7988
8005
  export declare type JiraIssueType = Node & {
7989
8006
  __typename?: 'JiraIssueType';
7990
8007
  id: Scalars['ID'];
8008
+ issueTypeId?: Maybe<Scalars['String']>;
7991
8009
  name: Scalars['String'];
7992
8010
  description?: Maybe<Scalars['String']>;
7993
8011
  avatar?: Maybe<JiraAvatar>;
@@ -11168,6 +11186,7 @@ export declare type MarketplacePartner = {
11168
11186
  support?: Maybe<MarketplacePartnerSupport>;
11169
11187
  programs?: Maybe<MarketplacePartnerPrograms>;
11170
11188
  partnerType?: Maybe<MarketplacePartnerType>;
11189
+ partnerTier?: Maybe<MarketplacePartnerTier>;
11171
11190
  };
11172
11191
  export declare type MarketplacePartnerAddress = {
11173
11192
  __typename?: 'MarketplacePartnerAddress';
@@ -11220,6 +11239,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
11220
11239
  OneTime = "ONE_TIME",
11221
11240
  Annual = "ANNUAL"
11222
11241
  }
11242
+ export declare type MarketplacePartnerTier = {
11243
+ __typename?: 'MarketplacePartnerTier';
11244
+ type: MarketplacePartnerTierType;
11245
+ updatedDate: Scalars['String'];
11246
+ };
11247
+ export declare enum MarketplacePartnerTierType {
11248
+ Silver = "SILVER",
11249
+ Gold = "GOLD",
11250
+ Platinum = "PLATINUM"
11251
+ }
11223
11252
  export declare enum MarketplacePartnerType {
11224
11253
  AtlassianInternal = "ATLASSIAN_INTERNAL"
11225
11254
  }
@@ -12740,6 +12769,7 @@ export declare type PolarisMatrixAxis = {
12740
12769
  __typename?: 'PolarisMatrixAxis';
12741
12770
  dimension: Scalars['String'];
12742
12771
  field: PolarisIdeaField;
12772
+ fieldOptions?: Maybe<Array<PolarisGroupValue>>;
12743
12773
  };
12744
12774
  export declare type PolarisMatrixConfig = {
12745
12775
  __typename?: 'PolarisMatrixConfig';
@@ -14967,6 +14997,7 @@ export declare type SupportRequestCatalogMutationApi = {
14967
14997
  removeRequestParticipants?: Maybe<SupportRequestParticipants>;
14968
14998
  addRequestParticipants?: Maybe<SupportRequestParticipants>;
14969
14999
  createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
15000
+ updateSupportRequest?: Maybe<SupportRequest>;
14970
15001
  };
14971
15002
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
14972
15003
  input?: Maybe<SupportRequestAddCommentInput>;
@@ -14986,6 +15017,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
14986
15017
  sen?: Maybe<Scalars['String']>;
14987
15018
  operation: SupportRequestNamedContactOperation;
14988
15019
  };
15020
+ export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
15021
+ input: SupportRequestUpdateInput;
15022
+ };
14989
15023
  export declare type SupportRequestCatalogQueryApi = {
14990
15024
  __typename?: 'SupportRequestCatalogQueryApi';
14991
15025
  me?: Maybe<SupportRequestPage>;
@@ -15166,6 +15200,14 @@ export declare type SupportRequestTransitions = {
15166
15200
  lastPage: Scalars['Boolean'];
15167
15201
  values: Array<SupportRequestTransition>;
15168
15202
  };
15203
+ export declare type SupportRequestUpdateFieldInput = {
15204
+ id: Scalars['String'];
15205
+ value: Scalars['String'];
15206
+ };
15207
+ export declare type SupportRequestUpdateInput = {
15208
+ requestKey: Scalars['ID'];
15209
+ experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
15210
+ };
15169
15211
  export declare type SupportRequestUser = {
15170
15212
  __typename?: 'SupportRequestUser';
15171
15213
  user?: Maybe<User>;
@@ -16017,6 +16059,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
16017
16059
  export declare type UpdatePolarisMatrixAxis = {
16018
16060
  dimension: Scalars['String'];
16019
16061
  field: Scalars['ID'];
16062
+ fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
16020
16063
  };
16021
16064
  export declare type UpdatePolarisMatrixConfig = {
16022
16065
  axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;