@forge/cli-shared 8.1.0-next.8-experimental-6de9b2b → 8.1.0-next.8-experimental-8e96421
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
|
-
## 8.1.0-next.8-experimental-
|
|
3
|
+
## 8.1.0-next.8-experimental-8e96421
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
- Updated dependencies [ca7e661]
|
|
25
25
|
- Updated dependencies [5ab2c49]
|
|
26
26
|
- Updated dependencies [609f68b]
|
|
27
|
-
- @forge/manifest@10.1.0-next.8-experimental-
|
|
28
|
-
- @forge/i18n@0.0.7-next.0-experimental-
|
|
29
|
-
- @forge/util@1.4.10-next.0-experimental-
|
|
27
|
+
- @forge/manifest@10.1.0-next.8-experimental-8e96421
|
|
28
|
+
- @forge/i18n@0.0.7-next.0-experimental-8e96421
|
|
29
|
+
- @forge/util@1.4.10-next.0-experimental-8e96421
|
|
30
30
|
|
|
31
31
|
## 8.1.0-next.8
|
|
32
32
|
|
|
@@ -63960,6 +63960,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
63960
63960
|
};
|
|
63961
63961
|
export declare type JiraProject = Node & {
|
|
63962
63962
|
__typename?: 'JiraProject';
|
|
63963
|
+
accessLevel?: Maybe<JiraProjectAccessLevelType>;
|
|
63963
63964
|
action?: Maybe<JiraProjectAction>;
|
|
63964
63965
|
activeBackground?: Maybe<JiraBackground>;
|
|
63965
63966
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
@@ -64200,6 +64201,21 @@ export declare type JiraProjectVersionsV2Args = {
|
|
|
64200
64201
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
64201
64202
|
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
64202
64203
|
};
|
|
64204
|
+
export declare type JiraProjectAccessLevel = {
|
|
64205
|
+
__typename?: 'JiraProjectAccessLevel';
|
|
64206
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
64207
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
64208
|
+
everyoneRoleDescription?: Maybe<Scalars['String']['output']>;
|
|
64209
|
+
everyoneRoleName?: Maybe<Scalars['String']['output']>;
|
|
64210
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
64211
|
+
value: JiraProjectAccessLevelType;
|
|
64212
|
+
};
|
|
64213
|
+
export declare enum JiraProjectAccessLevelType {
|
|
64214
|
+
Free = "FREE",
|
|
64215
|
+
Limited = "LIMITED",
|
|
64216
|
+
Open = "OPEN",
|
|
64217
|
+
Private = "PRIVATE"
|
|
64218
|
+
}
|
|
64203
64219
|
export declare type JiraProjectAction = {
|
|
64204
64220
|
__typename?: 'JiraProjectAction';
|
|
64205
64221
|
canPerform: Scalars['Boolean']['output'];
|
|
@@ -64631,6 +64647,7 @@ export declare enum JiraProjectType {
|
|
|
64631
64647
|
}
|
|
64632
64648
|
export declare type JiraProjectTypeDetails = Node & {
|
|
64633
64649
|
__typename?: 'JiraProjectTypeDetails';
|
|
64650
|
+
availableAccessLevels: Array<JiraProjectAccessLevel>;
|
|
64634
64651
|
color: Scalars['String']['output'];
|
|
64635
64652
|
description: Scalars['String']['output'];
|
|
64636
64653
|
formattedKey: Scalars['String']['output'];
|
|
@@ -84469,6 +84486,7 @@ export declare type Query = {
|
|
|
84469
84486
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84470
84487
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
84471
84488
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
84489
|
+
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
84472
84490
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
84473
84491
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
84474
84492
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -86128,6 +86146,9 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
86128
86146
|
cloudId: Scalars['ID']['input'];
|
|
86129
86147
|
idOrKey: Scalars['String']['input'];
|
|
86130
86148
|
};
|
|
86149
|
+
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
86150
|
+
ids: Array<Scalars['ID']['input']>;
|
|
86151
|
+
};
|
|
86131
86152
|
export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
86132
86153
|
cloudId: Scalars['ID']['input'];
|
|
86133
86154
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|