@forge/cli-shared 3.0.0-next.3 → 3.0.0
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,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 5972825c: Refuse to store credentials in plaintext
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 35172f2: Add ngrok debug logs
|
|
12
|
+
- edab85a: Adding silent BBC app installation
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 5424f97: Handle keytar errors
|
|
17
|
+
- Updated dependencies [c9f0e83]
|
|
18
|
+
- @forge/manifest@4.1.0
|
|
19
|
+
|
|
3
20
|
## 3.0.0-next.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -8996,6 +8996,7 @@ export declare type JiraIssue = Node & {
|
|
|
8996
8996
|
issueId: Scalars['String'];
|
|
8997
8997
|
key: Scalars['String'];
|
|
8998
8998
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8999
|
+
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
8999
9000
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
9000
9001
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
9001
9002
|
comments?: Maybe<JiraCommentConnection>;
|
|
@@ -9394,6 +9395,11 @@ export declare type JiraIssueItemTabContainerItemEdge = {
|
|
|
9394
9395
|
node?: Maybe<JiraIssueItemTabContainerItem>;
|
|
9395
9396
|
cursor: Scalars['String'];
|
|
9396
9397
|
};
|
|
9398
|
+
export declare enum JiraIssueLifecycleState {
|
|
9399
|
+
Active = "ACTIVE",
|
|
9400
|
+
Archived = "ARCHIVED",
|
|
9401
|
+
HardDeleted = "HARD_DELETED"
|
|
9402
|
+
}
|
|
9397
9403
|
export declare type JiraIssueLink = {
|
|
9398
9404
|
__typename?: 'JiraIssueLink';
|
|
9399
9405
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -14318,6 +14324,7 @@ export declare type OpsgenieTeam = Node & {
|
|
|
14318
14324
|
description?: Maybe<Scalars['String']>;
|
|
14319
14325
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
14320
14326
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
14327
|
+
baseUrl?: Maybe<Scalars['String']>;
|
|
14321
14328
|
url?: Maybe<Scalars['String']>;
|
|
14322
14329
|
members?: Maybe<OpsgenieTeamMemberConnection>;
|
|
14323
14330
|
schedules?: Maybe<Array<Maybe<OpsgenieSchedule>>>;
|
|
@@ -17146,12 +17153,16 @@ export declare enum ShepherdAlertStatus {
|
|
|
17146
17153
|
export declare enum ShepherdAlertTemplateType {
|
|
17147
17154
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
17148
17155
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
17156
|
+
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
17149
17157
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17150
17158
|
Default = "DEFAULT",
|
|
17159
|
+
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17151
17160
|
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
17152
17161
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
17153
17162
|
TokenCreated = "TOKEN_CREATED",
|
|
17154
|
-
|
|
17163
|
+
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
17164
|
+
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
17165
|
+
UserRevokedRole = "USER_REVOKED_ROLE"
|
|
17155
17166
|
}
|
|
17156
17167
|
export declare type ShepherdAlertsConnection = {
|
|
17157
17168
|
__typename?: 'ShepherdAlertsConnection';
|