@forge/cli-shared 3.20.4-next.3 → 3.20.4-next.3-experimental-5c9420a
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,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.4-next.3-experimental-5c9420a
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a45ba82: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
- b136f20: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- @sentry/node
|
|
14
|
+
|
|
15
|
+
- e5c1e4e: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- yaml
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [6a30243]
|
|
20
|
+
- Updated dependencies [5fadc46]
|
|
21
|
+
- @forge/manifest@5.0.1-next.1-experimental-5c9420a
|
|
22
|
+
|
|
3
23
|
## 3.20.4-next.3
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -3005,6 +3005,7 @@ export type CompassCatalogMutationApi = {
|
|
|
3005
3005
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3006
3006
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3007
3007
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
3008
|
+
deleteIncomingWebhook?: Maybe<CompassDeleteIncomingWebhookPayload>;
|
|
3008
3009
|
deleteMetricDefinition?: Maybe<CompassDeleteMetricDefinitionPayload>;
|
|
3009
3010
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
3010
3011
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
@@ -3132,6 +3133,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
3132
3133
|
export type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
3133
3134
|
input: DeleteEventSourceInput;
|
|
3134
3135
|
};
|
|
3136
|
+
export type CompassCatalogMutationApiDeleteIncomingWebhookArgs = {
|
|
3137
|
+
input: CompassDeleteIncomingWebhookInput;
|
|
3138
|
+
};
|
|
3135
3139
|
export type CompassCatalogMutationApiDeleteMetricDefinitionArgs = {
|
|
3136
3140
|
input: CompassDeleteMetricDefinitionInput;
|
|
3137
3141
|
};
|
|
@@ -3979,6 +3983,16 @@ export type CompassDeleteExternalAliasInput = {
|
|
|
3979
3983
|
externalId: Scalars['ID']['input'];
|
|
3980
3984
|
externalSource: Scalars['ID']['input'];
|
|
3981
3985
|
};
|
|
3986
|
+
export type CompassDeleteIncomingWebhookInput = {
|
|
3987
|
+
cloudId: Scalars['ID']['input'];
|
|
3988
|
+
id: Scalars['ID']['input'];
|
|
3989
|
+
};
|
|
3990
|
+
export type CompassDeleteIncomingWebhookPayload = Payload & {
|
|
3991
|
+
__typename?: 'CompassDeleteIncomingWebhookPayload';
|
|
3992
|
+
deletedIncomingWebhookId?: Maybe<Scalars['ID']['output']>;
|
|
3993
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3994
|
+
success: Scalars['Boolean']['output'];
|
|
3995
|
+
};
|
|
3982
3996
|
export type CompassDeleteMetricDefinitionInput = {
|
|
3983
3997
|
id: Scalars['ID']['input'];
|
|
3984
3998
|
};
|
|
@@ -13047,6 +13061,7 @@ export declare enum HelpObjectStoreHelpObjectType {
|
|
|
13047
13061
|
export type HelpObjectStoreIcon = {
|
|
13048
13062
|
__typename?: 'HelpObjectStoreIcon';
|
|
13049
13063
|
iconUrl: Scalars['URL']['output'];
|
|
13064
|
+
iconUrlV2: Scalars['String']['output'];
|
|
13050
13065
|
};
|
|
13051
13066
|
export declare enum HelpObjectStoreJsmEntityType {
|
|
13052
13067
|
Article = "ARTICLE",
|
|
@@ -13504,19 +13519,19 @@ export type InsightsNextBestTask = {
|
|
|
13504
13519
|
title?: Maybe<Scalars['String']['output']>;
|
|
13505
13520
|
url?: Maybe<Scalars['String']['output']>;
|
|
13506
13521
|
};
|
|
13507
|
-
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails |
|
|
13508
|
-
export type
|
|
13509
|
-
__typename?: '
|
|
13510
|
-
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13522
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails;
|
|
13523
|
+
export type InsightsPullRequestNeedsWorkDetails = {
|
|
13524
|
+
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
13511
13525
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13512
13526
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13527
|
+
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13513
13528
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13514
13529
|
};
|
|
13515
|
-
export type
|
|
13516
|
-
__typename?: '
|
|
13530
|
+
export type InsightsPullRequestReviewDetails = {
|
|
13531
|
+
__typename?: 'InsightsPullRequestReviewDetails';
|
|
13532
|
+
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13517
13533
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13518
13534
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13519
|
-
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13520
13535
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13521
13536
|
};
|
|
13522
13537
|
export declare enum InsightsTaskType {
|