@forge/cli-shared 3.5.0 → 3.5.1-next.1
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,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.5.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [734a5dec]
|
|
8
|
+
- @forge/manifest@4.6.0-next.1
|
|
9
|
+
|
|
10
|
+
## 3.5.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [40b251cf]
|
|
15
|
+
- @forge/manifest@4.5.4-next.0
|
|
16
|
+
|
|
3
17
|
## 3.5.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -4265,6 +4265,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
4265
4265
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
4266
4266
|
space?: Maybe<ConfluenceSpace>;
|
|
4267
4267
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
4268
|
+
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
4268
4269
|
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
4269
4270
|
userProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
4270
4271
|
};
|
|
@@ -4304,6 +4305,12 @@ export declare type ConfluenceQueryApiSpaceArgs = {
|
|
|
4304
4305
|
export declare type ConfluenceQueryApiSpacesArgs = {
|
|
4305
4306
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
4306
4307
|
};
|
|
4308
|
+
export declare type ConfluenceQueryApiValidateSpaceKeyArgs = {
|
|
4309
|
+
cloudId: Scalars['ID'];
|
|
4310
|
+
generateUniqueKey?: Maybe<Scalars['Boolean']>;
|
|
4311
|
+
spaceKey: Scalars['String'];
|
|
4312
|
+
validateUniqueness?: Maybe<Scalars['Boolean']>;
|
|
4313
|
+
};
|
|
4307
4314
|
export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
4308
4315
|
id: Scalars['ID'];
|
|
4309
4316
|
};
|
|
@@ -4559,6 +4566,11 @@ export declare enum ConfluenceUserType {
|
|
|
4559
4566
|
Anonymous = "ANONYMOUS",
|
|
4560
4567
|
Known = "KNOWN"
|
|
4561
4568
|
}
|
|
4569
|
+
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
4570
|
+
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
4571
|
+
generatedUniqueKey?: Maybe<Scalars['String']>;
|
|
4572
|
+
isValid: Scalars['Boolean'];
|
|
4573
|
+
};
|
|
4562
4574
|
export declare type ConnectAppScope = {
|
|
4563
4575
|
__typename?: 'ConnectAppScope';
|
|
4564
4576
|
scopeId: Scalars['ID'];
|
|
@@ -12109,6 +12121,27 @@ export declare enum JiraProjectType {
|
|
|
12109
12121
|
Business = "BUSINESS",
|
|
12110
12122
|
Software = "SOFTWARE"
|
|
12111
12123
|
}
|
|
12124
|
+
export declare type JiraProjectTypeDetails = Node & {
|
|
12125
|
+
__typename?: 'JiraProjectTypeDetails';
|
|
12126
|
+
id: Scalars['ID'];
|
|
12127
|
+
type: JiraProjectType;
|
|
12128
|
+
key: Scalars['String'];
|
|
12129
|
+
formattedKey: Scalars['String'];
|
|
12130
|
+
description: Scalars['String'];
|
|
12131
|
+
icon: Scalars['String'];
|
|
12132
|
+
color: Scalars['String'];
|
|
12133
|
+
weight?: Maybe<Scalars['Int']>;
|
|
12134
|
+
};
|
|
12135
|
+
export declare type JiraProjectTypeDetailsConnection = {
|
|
12136
|
+
__typename?: 'JiraProjectTypeDetailsConnection';
|
|
12137
|
+
pageInfo: PageInfo;
|
|
12138
|
+
edges?: Maybe<Array<Maybe<JiraProjectTypeDetailsEdge>>>;
|
|
12139
|
+
};
|
|
12140
|
+
export declare type JiraProjectTypeDetailsEdge = {
|
|
12141
|
+
__typename?: 'JiraProjectTypeDetailsEdge';
|
|
12142
|
+
node?: Maybe<JiraProjectTypeDetails>;
|
|
12143
|
+
cursor: Scalars['String'];
|
|
12144
|
+
};
|
|
12112
12145
|
export declare type JiraPullRequestReviewer = {
|
|
12113
12146
|
__typename?: 'JiraPullRequestReviewer';
|
|
12114
12147
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -12157,11 +12190,13 @@ export declare type JiraQuery = {
|
|
|
12157
12190
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
12158
12191
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
12159
12192
|
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
12193
|
+
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
12160
12194
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
12161
12195
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
12162
12196
|
version?: Maybe<JiraVersionResult>;
|
|
12163
12197
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
12164
12198
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
12199
|
+
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
12165
12200
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
12166
12201
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
12167
12202
|
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
@@ -12326,6 +12361,13 @@ export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
|
12326
12361
|
export declare type JiraQueryIssueHierarchyConfigUpdateTaskArgs = {
|
|
12327
12362
|
cloudId: Scalars['ID'];
|
|
12328
12363
|
};
|
|
12364
|
+
export declare type JiraQueryAllJiraProjectTypesArgs = {
|
|
12365
|
+
cloudId: Scalars['ID'];
|
|
12366
|
+
first?: Maybe<Scalars['Int']>;
|
|
12367
|
+
last?: Maybe<Scalars['Int']>;
|
|
12368
|
+
after?: Maybe<Scalars['String']>;
|
|
12369
|
+
before?: Maybe<Scalars['String']>;
|
|
12370
|
+
};
|
|
12329
12371
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
12330
12372
|
ids: Array<Scalars['ID']>;
|
|
12331
12373
|
};
|
|
@@ -12350,6 +12392,9 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
12350
12392
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
12351
12393
|
versionId: Scalars['ID'];
|
|
12352
12394
|
};
|
|
12395
|
+
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
12396
|
+
cloudId: Scalars['ID'];
|
|
12397
|
+
};
|
|
12353
12398
|
export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
12354
12399
|
id: Scalars['ID'];
|
|
12355
12400
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -17727,7 +17772,7 @@ export declare type ProjectAvatars = {
|
|
|
17727
17772
|
};
|
|
17728
17773
|
export declare type Query = {
|
|
17729
17774
|
__typename?: 'Query';
|
|
17730
|
-
trello
|
|
17775
|
+
trello: TrelloQueryApi;
|
|
17731
17776
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
17732
17777
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
17733
17778
|
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|