@forge/cli-shared 2.4.0-next.3 → 2.4.0-next.4
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
|
@@ -5093,6 +5093,7 @@ export declare type DevOpsTool = Node & {
|
|
|
5093
5093
|
group: DevOpsToolGroup;
|
|
5094
5094
|
supportsContainers: Scalars['Boolean'];
|
|
5095
5095
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5096
|
+
integration?: Maybe<DevOpsToolIntegration>;
|
|
5096
5097
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5097
5098
|
};
|
|
5098
5099
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5208,6 +5209,21 @@ export declare type DevOpsToolGroup = {
|
|
|
5208
5209
|
groupId: Scalars['String'];
|
|
5209
5210
|
groupName: Scalars['String'];
|
|
5210
5211
|
};
|
|
5212
|
+
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5213
|
+
export declare type DevOpsToolIntegrationApp = {
|
|
5214
|
+
__typename?: 'DevOpsToolIntegrationApp';
|
|
5215
|
+
appKey: Scalars['String'];
|
|
5216
|
+
appName: Scalars['String'];
|
|
5217
|
+
installed: Scalars['Boolean'];
|
|
5218
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5219
|
+
};
|
|
5220
|
+
export declare type DevOpsToolIntegrationProduct = {
|
|
5221
|
+
__typename?: 'DevOpsToolIntegrationProduct';
|
|
5222
|
+
productKey: Scalars['String'];
|
|
5223
|
+
productName: Scalars['String'];
|
|
5224
|
+
available: Scalars['Boolean'];
|
|
5225
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5226
|
+
};
|
|
5211
5227
|
export declare type DevOpsToolNamespace = Node & {
|
|
5212
5228
|
__typename?: 'DevOpsToolNamespace';
|
|
5213
5229
|
id: Scalars['ID'];
|
|
@@ -7988,6 +8004,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
7988
8004
|
export declare type JiraIssueType = Node & {
|
|
7989
8005
|
__typename?: 'JiraIssueType';
|
|
7990
8006
|
id: Scalars['ID'];
|
|
8007
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
7991
8008
|
name: Scalars['String'];
|
|
7992
8009
|
description?: Maybe<Scalars['String']>;
|
|
7993
8010
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -11168,6 +11185,7 @@ export declare type MarketplacePartner = {
|
|
|
11168
11185
|
support?: Maybe<MarketplacePartnerSupport>;
|
|
11169
11186
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
11170
11187
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
11188
|
+
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
11171
11189
|
};
|
|
11172
11190
|
export declare type MarketplacePartnerAddress = {
|
|
11173
11191
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -11220,6 +11238,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
11220
11238
|
OneTime = "ONE_TIME",
|
|
11221
11239
|
Annual = "ANNUAL"
|
|
11222
11240
|
}
|
|
11241
|
+
export declare type MarketplacePartnerTier = {
|
|
11242
|
+
__typename?: 'MarketplacePartnerTier';
|
|
11243
|
+
type: MarketplacePartnerTierType;
|
|
11244
|
+
updatedDate: Scalars['String'];
|
|
11245
|
+
};
|
|
11246
|
+
export declare enum MarketplacePartnerTierType {
|
|
11247
|
+
Silver = "SILVER",
|
|
11248
|
+
Gold = "GOLD",
|
|
11249
|
+
Platinum = "PLATINUM"
|
|
11250
|
+
}
|
|
11223
11251
|
export declare enum MarketplacePartnerType {
|
|
11224
11252
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
11225
11253
|
}
|
|
@@ -12740,6 +12768,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
12740
12768
|
__typename?: 'PolarisMatrixAxis';
|
|
12741
12769
|
dimension: Scalars['String'];
|
|
12742
12770
|
field: PolarisIdeaField;
|
|
12771
|
+
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
12743
12772
|
};
|
|
12744
12773
|
export declare type PolarisMatrixConfig = {
|
|
12745
12774
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -16017,6 +16046,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
16017
16046
|
export declare type UpdatePolarisMatrixAxis = {
|
|
16018
16047
|
dimension: Scalars['String'];
|
|
16019
16048
|
field: Scalars['ID'];
|
|
16049
|
+
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
16020
16050
|
};
|
|
16021
16051
|
export declare type UpdatePolarisMatrixConfig = {
|
|
16022
16052
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|