@forge/cli-shared 6.7.0-next.11-experimental-ebf5733 → 6.7.0-next.11-experimental-26b1489
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,6 +1,6 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 6.7.0-next.11-experimental-
|
|
3
|
+
## 6.7.0-next.11-experimental-26b1489
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
- Updated dependencies [34db0f6]
|
|
22
22
|
- Updated dependencies [01ca857]
|
|
23
23
|
- Updated dependencies [70badb7]
|
|
24
|
-
- @forge/manifest@8.8.0-next.5-experimental-
|
|
24
|
+
- @forge/manifest@8.8.0-next.5-experimental-26b1489
|
|
25
25
|
|
|
26
26
|
## 6.7.0-next.11
|
|
27
27
|
|
|
@@ -55031,6 +55031,23 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
55031
55031
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55032
55032
|
};
|
|
55033
55033
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
55034
|
+
export declare type JiraContext = Node & {
|
|
55035
|
+
__typename?: 'JiraContext';
|
|
55036
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
55037
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55038
|
+
id: Scalars['ID']['output'];
|
|
55039
|
+
name: Scalars['String']['output'];
|
|
55040
|
+
};
|
|
55041
|
+
export declare type JiraContextConnection = {
|
|
55042
|
+
__typename?: 'JiraContextConnection';
|
|
55043
|
+
edges?: Maybe<Array<JiraContextEdge>>;
|
|
55044
|
+
pageInfo?: Maybe<PageInfo>;
|
|
55045
|
+
};
|
|
55046
|
+
export declare type JiraContextEdge = {
|
|
55047
|
+
__typename?: 'JiraContextEdge';
|
|
55048
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55049
|
+
node?: Maybe<JiraContext>;
|
|
55050
|
+
};
|
|
55034
55051
|
export declare type JiraCreateActivityConfigurationInput = {
|
|
55035
55052
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
55036
55053
|
id: Scalars['ID']['input'];
|
|
@@ -56312,6 +56329,10 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
56312
56329
|
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
56313
56330
|
issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56314
56331
|
};
|
|
56332
|
+
export declare enum JiraFieldCategoryType {
|
|
56333
|
+
Custom = "CUSTOM",
|
|
56334
|
+
System = "SYSTEM"
|
|
56335
|
+
}
|
|
56315
56336
|
export declare type JiraFieldConfig = {
|
|
56316
56337
|
__typename?: 'JiraFieldConfig';
|
|
56317
56338
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56334,6 +56355,8 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
56334
56355
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56335
56356
|
cloudId: Scalars['ID']['input'];
|
|
56336
56357
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56358
|
+
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
56359
|
+
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
56337
56360
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
56338
56361
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56339
56362
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56436,6 +56459,10 @@ export declare type JiraFieldSetsViewPayload = Payload & {
|
|
|
56436
56459
|
success: Scalars['Boolean']['output'];
|
|
56437
56460
|
view?: Maybe<JiraFieldSetsViewMetadata>;
|
|
56438
56461
|
};
|
|
56462
|
+
export declare enum JiraFieldStatusType {
|
|
56463
|
+
Active = "ACTIVE",
|
|
56464
|
+
Trashed = "TRASHED"
|
|
56465
|
+
}
|
|
56439
56466
|
export declare type JiraFieldType = {
|
|
56440
56467
|
__typename?: 'JiraFieldType';
|
|
56441
56468
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -57942,15 +57969,44 @@ export declare type JiraIssueField = {
|
|
|
57942
57969
|
};
|
|
57943
57970
|
export declare type JiraIssueFieldConfig = Node & {
|
|
57944
57971
|
__typename?: 'JiraIssueFieldConfig';
|
|
57972
|
+
associatedContexts?: Maybe<JiraContextConnection>;
|
|
57973
|
+
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
57974
|
+
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
57975
|
+
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
57976
|
+
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
57977
|
+
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
57945
57978
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
57979
|
+
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
57946
57980
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
57981
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
57947
57982
|
fieldId: Scalars['String']['output'];
|
|
57948
57983
|
id: Scalars['ID']['output'];
|
|
57949
57984
|
isCustom: Scalars['Boolean']['output'];
|
|
57985
|
+
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
57986
|
+
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
57950
57987
|
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
57988
|
+
lastUsed?: Maybe<Scalars['DateTime']['output']>;
|
|
57951
57989
|
name: Scalars['String']['output'];
|
|
57952
57990
|
type: JiraConfigFieldType;
|
|
57953
57991
|
};
|
|
57992
|
+
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
57993
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
57994
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
57995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57996
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
57997
|
+
};
|
|
57998
|
+
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
57999
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58000
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58001
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58002
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58003
|
+
};
|
|
58004
|
+
export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
|
|
58005
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58006
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58007
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58008
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58009
|
+
};
|
|
57954
58010
|
export declare type JiraIssueFieldConfiguration = {
|
|
57955
58011
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
57956
58012
|
};
|
|
@@ -63025,6 +63081,7 @@ export declare type JiraQuery = {
|
|
|
63025
63081
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
63026
63082
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
63027
63083
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
63084
|
+
contextById?: Maybe<Array<Maybe<JiraContext>>>;
|
|
63028
63085
|
customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
|
|
63029
63086
|
defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
|
|
63030
63087
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
@@ -63035,6 +63092,7 @@ export declare type JiraQuery = {
|
|
|
63035
63092
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
63036
63093
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
63037
63094
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
63095
|
+
fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
|
|
63038
63096
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
63039
63097
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
63040
63098
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -63168,6 +63226,7 @@ export declare type JiraQuery = {
|
|
|
63168
63226
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
63169
63227
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
63170
63228
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
63229
|
+
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
63171
63230
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
63172
63231
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
63173
63232
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
@@ -63308,6 +63367,9 @@ export declare type JiraQueryChildIssuesLimitArgs = {
|
|
|
63308
63367
|
export declare type JiraQueryContainerNavigationArgs = {
|
|
63309
63368
|
input: JiraContainerNavigationQueryInput;
|
|
63310
63369
|
};
|
|
63370
|
+
export declare type JiraQueryContextByIdArgs = {
|
|
63371
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63372
|
+
};
|
|
63311
63373
|
export declare type JiraQueryCustomBackgroundsArgs = {
|
|
63312
63374
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63313
63375
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63350,6 +63412,9 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
63350
63412
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63351
63413
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63352
63414
|
};
|
|
63415
|
+
export declare type JiraQueryFieldConfigByIdArgs = {
|
|
63416
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63417
|
+
};
|
|
63353
63418
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
63354
63419
|
cloudId: Scalars['ID']['input'];
|
|
63355
63420
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64007,6 +64072,9 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
64007
64072
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
64008
64073
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64009
64074
|
};
|
|
64075
|
+
export declare type JiraQueryScreenByIdArgs = {
|
|
64076
|
+
ids: Array<Scalars['ID']['input']>;
|
|
64077
|
+
};
|
|
64010
64078
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
64011
64079
|
issueId: Scalars['ID']['input'];
|
|
64012
64080
|
};
|
|
@@ -64956,6 +65024,23 @@ export declare type JiraScmRepository = {
|
|
|
64956
65024
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
64957
65025
|
name?: Maybe<Scalars['String']['output']>;
|
|
64958
65026
|
};
|
|
65027
|
+
export declare type JiraScreen = Node & {
|
|
65028
|
+
__typename?: 'JiraScreen';
|
|
65029
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65030
|
+
id: Scalars['ID']['output'];
|
|
65031
|
+
name: Scalars['String']['output'];
|
|
65032
|
+
screenId?: Maybe<Scalars['String']['output']>;
|
|
65033
|
+
};
|
|
65034
|
+
export declare type JiraScreenConnection = {
|
|
65035
|
+
__typename?: 'JiraScreenConnection';
|
|
65036
|
+
edges?: Maybe<Array<JiraScreenEdge>>;
|
|
65037
|
+
pageInfo?: Maybe<PageInfo>;
|
|
65038
|
+
};
|
|
65039
|
+
export declare type JiraScreenEdge = {
|
|
65040
|
+
__typename?: 'JiraScreenEdge';
|
|
65041
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65042
|
+
node?: Maybe<JiraScreen>;
|
|
65043
|
+
};
|
|
64959
65044
|
export declare type JiraScreenTabLayout = {
|
|
64960
65045
|
__typename?: 'JiraScreenTabLayout';
|
|
64961
65046
|
items?: Maybe<JiraScreenTabLayoutItemConnection>;
|