@forge/cli-shared 3.8.0-next.7 → 3.8.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,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- db2615bd: Allow custom environment names
|
|
8
|
+
- 149ebb5: Introduced command to list custom entities indexes
|
|
9
|
+
- dc0e198: Added 'forge environment list' command
|
|
10
|
+
- 9614f64: Add warning to Forge linter for scopes that require interactive user consent
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 0d36e72: Improve node version warning text
|
|
15
|
+
- 081aaa9: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- cli-table3
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [7100287]
|
|
20
|
+
- Updated dependencies [9614f64]
|
|
21
|
+
- Updated dependencies [32ca02f]
|
|
22
|
+
- Updated dependencies [4d594e7]
|
|
23
|
+
- @forge/util@1.2.2
|
|
24
|
+
- @forge/manifest@4.8.0
|
|
25
|
+
|
|
3
26
|
## 3.8.0-next.7
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -7496,7 +7496,6 @@ export declare type ExtensionContextsFilter = {
|
|
|
7496
7496
|
value: Array<Scalars['String']>;
|
|
7497
7497
|
};
|
|
7498
7498
|
export declare enum ExtensionContextsFilterType {
|
|
7499
|
-
Container = "CONTAINER",
|
|
7500
7499
|
DataClassificationTag = "DATA_CLASSIFICATION_TAG",
|
|
7501
7500
|
ExtensionType = "EXTENSION_TYPE",
|
|
7502
7501
|
PrincipalType = "PRINCIPAL_TYPE"
|
|
@@ -20903,10 +20902,6 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
20903
20902
|
node?: Maybe<ShepherdAlert>;
|
|
20904
20903
|
success: Scalars['Boolean'];
|
|
20905
20904
|
};
|
|
20906
|
-
export declare type ShepherdCreateEmailInput = {
|
|
20907
|
-
email?: Maybe<Scalars['String']>;
|
|
20908
|
-
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
20909
|
-
};
|
|
20910
20905
|
export declare type ShepherdCreateExampleAlertInput = {
|
|
20911
20906
|
cloudId?: Maybe<Scalars['ID']>;
|
|
20912
20907
|
orgId?: Maybe<Scalars['ID']>;
|
|
@@ -20917,16 +20912,6 @@ export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
|
20917
20912
|
node?: Maybe<ShepherdAlert>;
|
|
20918
20913
|
success: Scalars['Boolean'];
|
|
20919
20914
|
};
|
|
20920
|
-
export declare type ShepherdCreateOrganizationInput = {
|
|
20921
|
-
enabled?: Maybe<Scalars['Boolean']>;
|
|
20922
|
-
id: Scalars['ID'];
|
|
20923
|
-
};
|
|
20924
|
-
export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
20925
|
-
__typename?: 'ShepherdCreateOrganizationPayload';
|
|
20926
|
-
errors?: Maybe<Array<MutationError>>;
|
|
20927
|
-
node?: Maybe<ShepherdOrganization>;
|
|
20928
|
-
success: Scalars['Boolean'];
|
|
20929
|
-
};
|
|
20930
20915
|
export declare type ShepherdCreateSlackInput = {
|
|
20931
20916
|
authToken: Scalars['String'];
|
|
20932
20917
|
callbackURL: Scalars['URL'];
|
|
@@ -20934,12 +20919,6 @@ export declare type ShepherdCreateSlackInput = {
|
|
|
20934
20919
|
status: ShepherdSubscriptionStatus;
|
|
20935
20920
|
teamId: Scalars['String'];
|
|
20936
20921
|
};
|
|
20937
|
-
export declare type ShepherdCreateSubscriptionInput = {
|
|
20938
|
-
email?: Maybe<ShepherdCreateEmailInput>;
|
|
20939
|
-
orgId: Scalars['ID'];
|
|
20940
|
-
slack?: Maybe<ShepherdCreateSlackInput>;
|
|
20941
|
-
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
20942
|
-
};
|
|
20943
20922
|
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
20944
20923
|
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
20945
20924
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -20983,25 +20962,6 @@ export declare type ShepherdDetectionSetting = {
|
|
|
20983
20962
|
value: ShepherdDetectionSettingValueType;
|
|
20984
20963
|
};
|
|
20985
20964
|
export declare type ShepherdDetectionSettingValueType = ShepherdRateThresholdSetting;
|
|
20986
|
-
export declare type ShepherdEmailConnection = {
|
|
20987
|
-
__typename?: 'ShepherdEmailConnection';
|
|
20988
|
-
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
20989
|
-
};
|
|
20990
|
-
export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
|
|
20991
|
-
__typename?: 'ShepherdEmailEdge';
|
|
20992
|
-
cursor?: Maybe<Scalars['String']>;
|
|
20993
|
-
node?: Maybe<ShepherdEmailSubscription>;
|
|
20994
|
-
};
|
|
20995
|
-
export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
|
|
20996
|
-
__typename?: 'ShepherdEmailSubscription';
|
|
20997
|
-
createdBy: Scalars['String'];
|
|
20998
|
-
createdOn: Scalars['DateTime'];
|
|
20999
|
-
email: Scalars['String'];
|
|
21000
|
-
id: Scalars['ID'];
|
|
21001
|
-
status: ShepherdSubscriptionStatus;
|
|
21002
|
-
updatedBy?: Maybe<Scalars['String']>;
|
|
21003
|
-
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
21004
|
-
};
|
|
21005
20965
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
21006
20966
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
21007
20967
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -21035,15 +20995,9 @@ export declare type ShepherdMutation = {
|
|
|
21035
20995
|
__typename?: 'ShepherdMutation';
|
|
21036
20996
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
21037
20997
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
21038
|
-
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
21039
|
-
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
21040
|
-
deleteSubscription?: Maybe<ShepherdSubscriptionMutationPayload>;
|
|
21041
20998
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
21042
|
-
testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
|
|
21043
20999
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
21044
21000
|
updateAlerts?: Maybe<ShepherdUpdateAlertsPayload>;
|
|
21045
|
-
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
21046
|
-
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
21047
21001
|
workspace?: Maybe<ShepherdWorkspaceMutations>;
|
|
21048
21002
|
};
|
|
21049
21003
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
@@ -21052,21 +21006,6 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
21052
21006
|
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
21053
21007
|
input: ShepherdCreateExampleAlertInput;
|
|
21054
21008
|
};
|
|
21055
|
-
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
21056
|
-
input: ShepherdCreateOrganizationInput;
|
|
21057
|
-
};
|
|
21058
|
-
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
21059
|
-
input: ShepherdCreateSubscriptionInput;
|
|
21060
|
-
};
|
|
21061
|
-
export declare type ShepherdMutationDeleteSubscriptionArgs = {
|
|
21062
|
-
hardDelete?: Maybe<Scalars['Boolean']>;
|
|
21063
|
-
orgId: Scalars['ID'];
|
|
21064
|
-
subscriptionId: Scalars['ID'];
|
|
21065
|
-
};
|
|
21066
|
-
export declare type ShepherdMutationTestSubscriptionArgs = {
|
|
21067
|
-
orgId: Scalars['ID'];
|
|
21068
|
-
subscriptionId: Scalars['ID'];
|
|
21069
|
-
};
|
|
21070
21009
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
21071
21010
|
id: Scalars['ID'];
|
|
21072
21011
|
input: ShepherdUpdateAlertInput;
|
|
@@ -21075,39 +21014,19 @@ export declare type ShepherdMutationUpdateAlertsArgs = {
|
|
|
21075
21014
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
21076
21015
|
input: ShepherdUpdateAlertInput;
|
|
21077
21016
|
};
|
|
21078
|
-
export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
21079
|
-
id: Scalars['ID'];
|
|
21080
|
-
input: ShepherdUpdateOrganizationInput;
|
|
21081
|
-
};
|
|
21082
|
-
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
21083
|
-
id: Scalars['ID'];
|
|
21084
|
-
input: ShepherdUpdateSubscriptionInput;
|
|
21085
|
-
};
|
|
21086
21017
|
export declare enum ShepherdMutationErrorType {
|
|
21087
21018
|
BadRequest = "BAD_REQUEST",
|
|
21088
21019
|
InternalServerError = "INTERNAL_SERVER_ERROR",
|
|
21089
21020
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
21090
21021
|
Unauthorized = "UNAUTHORIZED"
|
|
21091
21022
|
}
|
|
21092
|
-
export declare type ShepherdOrganization = {
|
|
21093
|
-
__typename?: 'ShepherdOrganization';
|
|
21094
|
-
createdOn: Scalars['DateTime'];
|
|
21095
|
-
enabled: Scalars['Boolean'];
|
|
21096
|
-
id: Scalars['ID'];
|
|
21097
|
-
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
21098
|
-
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
21099
|
-
};
|
|
21100
|
-
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
21101
21023
|
export declare type ShepherdQuery = {
|
|
21102
21024
|
__typename?: 'ShepherdQuery';
|
|
21103
21025
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
21104
21026
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
21105
21027
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
21106
|
-
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
21107
21028
|
shepherdAppInfo: ShepherdAppInfo;
|
|
21108
21029
|
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
21109
|
-
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
21110
|
-
shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
21111
21030
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
21112
21031
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
21113
21032
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
@@ -21127,16 +21046,6 @@ export declare type ShepherdQueryShepherdActivityArgs = {
|
|
|
21127
21046
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
21128
21047
|
id: Scalars['ID'];
|
|
21129
21048
|
};
|
|
21130
|
-
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
21131
|
-
aaid?: Maybe<Scalars['ID']>;
|
|
21132
|
-
orgId: Scalars['ID'];
|
|
21133
|
-
};
|
|
21134
|
-
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
21135
|
-
id: Scalars['ID'];
|
|
21136
|
-
};
|
|
21137
|
-
export declare type ShepherdQueryShepherdSubscriptionsArgs = {
|
|
21138
|
-
orgId: Scalars['ID'];
|
|
21139
|
-
};
|
|
21140
21049
|
export declare type ShepherdQueryShepherdUserArgs = {
|
|
21141
21050
|
id?: Maybe<Scalars['ID']>;
|
|
21142
21051
|
};
|
|
@@ -21262,13 +21171,7 @@ export declare type ShepherdSubscriptionUpdateInput = {
|
|
|
21262
21171
|
slack?: Maybe<ShepherdUpdateSlackInput>;
|
|
21263
21172
|
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
21264
21173
|
};
|
|
21265
|
-
export declare type ShepherdSubscriptionsResult = QueryError |
|
|
21266
|
-
export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
21267
|
-
__typename?: 'ShepherdTestSubscriptionPayload';
|
|
21268
|
-
errors?: Maybe<Array<MutationError>>;
|
|
21269
|
-
node?: Maybe<ShepherdSubscription>;
|
|
21270
|
-
success: Scalars['Boolean'];
|
|
21271
|
-
};
|
|
21174
|
+
export declare type ShepherdSubscriptionsResult = QueryError | ShepherdSubscriptionConnection;
|
|
21272
21175
|
export declare type ShepherdTime = {
|
|
21273
21176
|
__typename?: 'ShepherdTime';
|
|
21274
21177
|
end?: Maybe<Scalars['DateTime']>;
|
|
@@ -21294,19 +21197,6 @@ export declare type ShepherdUpdateAlertsPayload = Payload & {
|
|
|
21294
21197
|
nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
21295
21198
|
success: Scalars['Boolean'];
|
|
21296
21199
|
};
|
|
21297
|
-
export declare type ShepherdUpdateEmailInput = {
|
|
21298
|
-
email?: Maybe<ShepherdCreateEmailInput>;
|
|
21299
|
-
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
21300
|
-
};
|
|
21301
|
-
export declare type ShepherdUpdateOrganizationInput = {
|
|
21302
|
-
enabled?: Maybe<Scalars['Boolean']>;
|
|
21303
|
-
};
|
|
21304
|
-
export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
21305
|
-
__typename?: 'ShepherdUpdateOrganizationPayload';
|
|
21306
|
-
errors?: Maybe<Array<MutationError>>;
|
|
21307
|
-
node?: Maybe<ShepherdOrganization>;
|
|
21308
|
-
success: Scalars['Boolean'];
|
|
21309
|
-
};
|
|
21310
21200
|
export declare type ShepherdUpdateSlackInput = {
|
|
21311
21201
|
authToken?: Maybe<Scalars['String']>;
|
|
21312
21202
|
callbackURL?: Maybe<Scalars['URL']>;
|
|
@@ -21314,12 +21204,6 @@ export declare type ShepherdUpdateSlackInput = {
|
|
|
21314
21204
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
21315
21205
|
teamId?: Maybe<Scalars['String']>;
|
|
21316
21206
|
};
|
|
21317
|
-
export declare type ShepherdUpdateSubscriptionInput = {
|
|
21318
|
-
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
21319
|
-
orgId: Scalars['ID'];
|
|
21320
|
-
slack?: Maybe<ShepherdUpdateSlackInput>;
|
|
21321
|
-
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
21322
|
-
};
|
|
21323
21207
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
21324
21208
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
21325
21209
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -21338,10 +21222,6 @@ export declare type ShepherdUser = {
|
|
|
21338
21222
|
createdOn?: Maybe<Scalars['DateTime']>;
|
|
21339
21223
|
user?: Maybe<User>;
|
|
21340
21224
|
};
|
|
21341
|
-
export declare type ShepherdWebhookConnection = {
|
|
21342
|
-
__typename?: 'ShepherdWebhookConnection';
|
|
21343
|
-
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
21344
|
-
};
|
|
21345
21225
|
export declare enum ShepherdWebhookDestinationType {
|
|
21346
21226
|
Default = "DEFAULT",
|
|
21347
21227
|
MicrosoftTeams = "MICROSOFT_TEAMS"
|