@forge/cli-shared 3.6.0-next.1 → 3.6.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 +10 -0
- package/out/graphql/graphql-types.d.ts +53 -27
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +13 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8c60d16: Fixing small cross-platform issue with line breaks in .gitignore
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- d71279f: Add link to docs in CLI for MUAO EAP
|
|
12
|
+
|
|
3
13
|
## 3.6.0-next.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -7071,14 +7071,10 @@ export declare type DeveloperLogAccessResult = {
|
|
|
7071
7071
|
};
|
|
7072
7072
|
export declare type DirectoryMutation = {
|
|
7073
7073
|
__typename?: 'DirectoryMutation';
|
|
7074
|
-
removeUserFromOrganization?: Maybe<DirectoryRemoveUserPayload>;
|
|
7075
7074
|
removeUserAccess?: Maybe<DirectoryRemoveUserAccessPayload>;
|
|
7076
7075
|
restoreUserAccess?: Maybe<DirectoryRestoreUserAccessPayload>;
|
|
7077
7076
|
suspendUserAccess?: Maybe<DirectorySuspendUserAccessPayload>;
|
|
7078
7077
|
};
|
|
7079
|
-
export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
|
|
7080
|
-
input?: Maybe<DirectoryRemoveUserInput>;
|
|
7081
|
-
};
|
|
7082
7078
|
export declare type DirectoryMutationRemoveUserAccessArgs = {
|
|
7083
7079
|
input?: Maybe<DirectoryRemoveUserInput>;
|
|
7084
7080
|
};
|
|
@@ -7101,11 +7097,6 @@ export declare type DirectoryRemoveUserInput = {
|
|
|
7101
7097
|
orgId: Scalars['ID'];
|
|
7102
7098
|
accountId: Scalars['ID'];
|
|
7103
7099
|
};
|
|
7104
|
-
export declare type DirectoryRemoveUserPayload = Payload & {
|
|
7105
|
-
__typename?: 'DirectoryRemoveUserPayload';
|
|
7106
|
-
success: Scalars['Boolean'];
|
|
7107
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7108
|
-
};
|
|
7109
7100
|
export declare type DirectoryRestoreUserAccessPayload = Payload & {
|
|
7110
7101
|
__typename?: 'DirectoryRestoreUserAccessPayload';
|
|
7111
7102
|
success: Scalars['Boolean'];
|
|
@@ -10009,9 +10000,9 @@ export declare type JiraForgeUsersFieldUsersArgs = {
|
|
|
10009
10000
|
};
|
|
10010
10001
|
export declare type JiraGlobalPermission = {
|
|
10011
10002
|
__typename?: 'JiraGlobalPermission';
|
|
10012
|
-
key
|
|
10013
|
-
name
|
|
10014
|
-
description
|
|
10003
|
+
key?: Maybe<Scalars['String']>;
|
|
10004
|
+
name?: Maybe<Scalars['String']>;
|
|
10005
|
+
description?: Maybe<Scalars['String']>;
|
|
10015
10006
|
};
|
|
10016
10007
|
export declare type JiraGlobalPermissionAddGroupGrantInput = {
|
|
10017
10008
|
key: Scalars['String'];
|
|
@@ -10033,9 +10024,15 @@ export declare type JiraGlobalPermissionDeleteGroupGrantPayload = Payload & {
|
|
|
10033
10024
|
};
|
|
10034
10025
|
export declare type JiraGlobalPermissionGrants = {
|
|
10035
10026
|
__typename?: 'JiraGlobalPermissionGrants';
|
|
10036
|
-
permission
|
|
10037
|
-
groups?: Maybe<Array<JiraGroup
|
|
10027
|
+
permission?: Maybe<JiraGlobalPermission>;
|
|
10028
|
+
groups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
10029
|
+
isManagedByJira?: Maybe<Scalars['Boolean']>;
|
|
10030
|
+
};
|
|
10031
|
+
export declare type JiraGlobalPermissionGrantsList = {
|
|
10032
|
+
__typename?: 'JiraGlobalPermissionGrantsList';
|
|
10033
|
+
globalPermissionGrants?: Maybe<Array<Maybe<JiraGlobalPermissionGrants>>>;
|
|
10038
10034
|
};
|
|
10035
|
+
export declare type JiraGlobalPermissionGrantsResult = JiraGlobalPermissionGrantsList | QueryError;
|
|
10039
10036
|
export declare type JiraGlobalTimeTrackingSettings = {
|
|
10040
10037
|
__typename?: 'JiraGlobalTimeTrackingSettings';
|
|
10041
10038
|
isTimeTrackingEnabled: Scalars['Boolean'];
|
|
@@ -11647,9 +11644,11 @@ export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
|
11647
11644
|
input: JiraSetIsFavouriteInput;
|
|
11648
11645
|
};
|
|
11649
11646
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
11647
|
+
cloudId: Scalars['ID'];
|
|
11650
11648
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
11651
11649
|
};
|
|
11652
11650
|
export declare type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
11651
|
+
cloudId: Scalars['ID'];
|
|
11653
11652
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
11654
11653
|
};
|
|
11655
11654
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
@@ -12697,7 +12696,7 @@ export declare type JiraQuery = {
|
|
|
12697
12696
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
12698
12697
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
12699
12698
|
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
12700
|
-
getGlobalPermissionsAndGrants?: Maybe<
|
|
12699
|
+
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
12701
12700
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
12702
12701
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
12703
12702
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -12829,7 +12828,7 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
12829
12828
|
issueKey: Scalars['String'];
|
|
12830
12829
|
};
|
|
12831
12830
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
12832
|
-
|
|
12831
|
+
cloudId: Scalars['ID'];
|
|
12833
12832
|
};
|
|
12834
12833
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
12835
12834
|
cloudId: Scalars['ID'];
|
|
@@ -20914,15 +20913,22 @@ export declare type ShepherdActivityHighlight = {
|
|
|
20914
20913
|
__typename?: 'ShepherdActivityHighlight';
|
|
20915
20914
|
action?: Maybe<ShepherdActionType>;
|
|
20916
20915
|
actor?: Maybe<ShepherdUser>;
|
|
20916
|
+
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
20917
20917
|
subject?: Maybe<ShepherdSubject>;
|
|
20918
20918
|
time?: Maybe<ShepherdTime>;
|
|
20919
20919
|
};
|
|
20920
20920
|
export declare type ShepherdActivityHighlightInput = {
|
|
20921
20921
|
action?: Maybe<ShepherdActionType>;
|
|
20922
20922
|
actor?: Maybe<Scalars['ID']>;
|
|
20923
|
+
histogram?: Maybe<Array<Maybe<ShepherdHistogramBucketInput>>>;
|
|
20923
20924
|
subject?: Maybe<ShepherdSubjectInput>;
|
|
20924
20925
|
time: ShepherdTimeInput;
|
|
20925
20926
|
};
|
|
20927
|
+
export declare type ShepherdActivityHistogramBucket = {
|
|
20928
|
+
__typename?: 'ShepherdActivityHistogramBucket';
|
|
20929
|
+
name: Scalars['String'];
|
|
20930
|
+
value: Scalars['Int'];
|
|
20931
|
+
};
|
|
20926
20932
|
export declare type ShepherdActivityResult = QueryError | ShepherdActivityConnection;
|
|
20927
20933
|
export declare type ShepherdActorActivity = {
|
|
20928
20934
|
__typename?: 'ShepherdActorActivity';
|
|
@@ -20947,11 +20953,6 @@ export declare type ShepherdAlert = Node & {
|
|
|
20947
20953
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
20948
20954
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
20949
20955
|
};
|
|
20950
|
-
export declare enum ShepherdAlertDescriptionType {
|
|
20951
|
-
AlertInfo = "ALERT_INFO",
|
|
20952
|
-
Investigate = "INVESTIGATE",
|
|
20953
|
-
Remediate = "REMEDIATE"
|
|
20954
|
-
}
|
|
20955
20956
|
export declare type ShepherdAlertEdge = {
|
|
20956
20957
|
__typename?: 'ShepherdAlertEdge';
|
|
20957
20958
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -20970,12 +20971,6 @@ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
|
20970
20971
|
workspaceId: Scalars['ID'];
|
|
20971
20972
|
};
|
|
20972
20973
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
20973
|
-
export declare enum ShepherdAlertSeverity {
|
|
20974
|
-
Critical = "CRITICAL",
|
|
20975
|
-
High = "HIGH",
|
|
20976
|
-
Low = "LOW",
|
|
20977
|
-
Medium = "MEDIUM"
|
|
20978
|
-
}
|
|
20979
20974
|
export declare enum ShepherdAlertStatus {
|
|
20980
20975
|
InProgress = "IN_PROGRESS",
|
|
20981
20976
|
Triaged = "TRIAGED",
|
|
@@ -21030,6 +21025,12 @@ export declare type ShepherdAppInfo = {
|
|
|
21030
21025
|
env: Scalars['String'];
|
|
21031
21026
|
loginUrl: Scalars['String'];
|
|
21032
21027
|
};
|
|
21028
|
+
export declare enum ShepherdAtlassianProduct {
|
|
21029
|
+
AdminHub = "ADMIN_HUB",
|
|
21030
|
+
Confluence = "CONFLUENCE",
|
|
21031
|
+
JiraSoftware = "JIRA_SOFTWARE",
|
|
21032
|
+
Marketplace = "MARKETPLACE"
|
|
21033
|
+
}
|
|
21033
21034
|
export declare type ShepherdConfig = {
|
|
21034
21035
|
__typename?: 'ShepherdConfig';
|
|
21035
21036
|
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
@@ -21105,6 +21106,22 @@ export declare type ShepherdDescriptionTemplate = {
|
|
|
21105
21106
|
text?: Maybe<Scalars['JSON']>;
|
|
21106
21107
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
21107
21108
|
};
|
|
21109
|
+
export declare type ShepherdDetection = {
|
|
21110
|
+
__typename?: 'ShepherdDetection';
|
|
21111
|
+
description?: Maybe<Scalars['JSON']>;
|
|
21112
|
+
id: Scalars['ID'];
|
|
21113
|
+
product: ShepherdAtlassianProduct;
|
|
21114
|
+
scanningInfo: ShepherdDetectionScanningInfo;
|
|
21115
|
+
title: Scalars['String'];
|
|
21116
|
+
};
|
|
21117
|
+
export declare enum ShepherdDetectionScanningFrequency {
|
|
21118
|
+
RealTime = "REAL_TIME",
|
|
21119
|
+
Scheduled = "SCHEDULED"
|
|
21120
|
+
}
|
|
21121
|
+
export declare type ShepherdDetectionScanningInfo = {
|
|
21122
|
+
__typename?: 'ShepherdDetectionScanningInfo';
|
|
21123
|
+
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
21124
|
+
};
|
|
21108
21125
|
export declare type ShepherdEmailConnection = {
|
|
21109
21126
|
__typename?: 'ShepherdEmailConnection';
|
|
21110
21127
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -21134,6 +21151,10 @@ export declare type ShepherdHighlight = ShepherdActivityHighlight;
|
|
|
21134
21151
|
export declare type ShepherdHighlightInput = {
|
|
21135
21152
|
activityHighlight?: Maybe<ShepherdActivityHighlightInput>;
|
|
21136
21153
|
};
|
|
21154
|
+
export declare type ShepherdHistogramBucketInput = {
|
|
21155
|
+
name: Scalars['String'];
|
|
21156
|
+
value: Scalars['Int'];
|
|
21157
|
+
};
|
|
21137
21158
|
export declare type ShepherdLoginActivity = {
|
|
21138
21159
|
__typename?: 'ShepherdLoginActivity';
|
|
21139
21160
|
actor: ShepherdUser;
|
|
@@ -21453,10 +21474,15 @@ export declare enum ShepherdWebhookType {
|
|
|
21453
21474
|
export declare type ShepherdWorkspace = {
|
|
21454
21475
|
__typename?: 'ShepherdWorkspace';
|
|
21455
21476
|
cloudId: Scalars['ID'];
|
|
21477
|
+
cloudName?: Maybe<Scalars['String']>;
|
|
21478
|
+
detections: Array<ShepherdDetection>;
|
|
21456
21479
|
id: Scalars['ID'];
|
|
21457
21480
|
orgId: Scalars['ID'];
|
|
21458
21481
|
shouldOnboard?: Maybe<Scalars['Boolean']>;
|
|
21459
21482
|
};
|
|
21483
|
+
export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
21484
|
+
detectionId?: Maybe<Scalars['ID']>;
|
|
21485
|
+
};
|
|
21460
21486
|
export declare type ShepherdWorkspaceConnection = {
|
|
21461
21487
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
21462
21488
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|