@forge/cli-shared 3.20.4-next.0 → 3.20.4-next.2
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,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.4-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a45ba82: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
## 3.20.4-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [5fadc46]
|
|
16
|
+
- @forge/manifest@5.0.1-next.1
|
|
17
|
+
|
|
3
18
|
## 3.20.4-next.0
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -3008,6 +3008,7 @@ export type CompassCatalogMutationApi = {
|
|
|
3008
3008
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
3009
3009
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
3010
3010
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3011
|
+
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3011
3012
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3012
3013
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3013
3014
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
@@ -3173,6 +3174,9 @@ export type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
|
|
|
3173
3174
|
export type CompassCatalogMutationApiUpdateComponentLinkArgs = {
|
|
3174
3175
|
input: UpdateCompassComponentLinkInput;
|
|
3175
3176
|
};
|
|
3177
|
+
export type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
|
|
3178
|
+
input: CompassUpdateComponentScorecardJiraIssueInput;
|
|
3179
|
+
};
|
|
3176
3180
|
export type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
3177
3181
|
input: UpdateCompassComponentTypeInput;
|
|
3178
3182
|
};
|
|
@@ -3198,12 +3202,14 @@ export type CompassCatalogQueryApi = {
|
|
|
3198
3202
|
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
3199
3203
|
component?: Maybe<CompassComponentResult>;
|
|
3200
3204
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
3205
|
+
componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
|
|
3201
3206
|
componentType?: Maybe<CompassComponentTypeResult>;
|
|
3202
3207
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
3203
3208
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3204
3209
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3205
3210
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3206
3211
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3212
|
+
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
3207
3213
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
3208
3214
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
3209
3215
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
@@ -3232,6 +3238,11 @@ export type CompassCatalogQueryApiComponentByExternalAliasArgs = {
|
|
|
3232
3238
|
externalID: Scalars['ID']['input'];
|
|
3233
3239
|
externalSource: Scalars['ID']['input'];
|
|
3234
3240
|
};
|
|
3241
|
+
export type CompassCatalogQueryApiComponentScorecardRelationshipArgs = {
|
|
3242
|
+
cloudId: Scalars['ID']['input'];
|
|
3243
|
+
componentId: Scalars['ID']['input'];
|
|
3244
|
+
scorecardId: Scalars['ID']['input'];
|
|
3245
|
+
};
|
|
3235
3246
|
export type CompassCatalogQueryApiComponentTypeArgs = {
|
|
3236
3247
|
cloudId: Scalars['ID']['input'];
|
|
3237
3248
|
id: Scalars['ID']['input'];
|
|
@@ -3255,6 +3266,11 @@ export type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs = {
|
|
|
3255
3266
|
cloudId: Scalars['ID']['input'];
|
|
3256
3267
|
input: CompassComponentType;
|
|
3257
3268
|
};
|
|
3269
|
+
export type CompassCatalogQueryApiIncomingWebhooksArgs = {
|
|
3270
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3271
|
+
cloudId: Scalars['ID']['input'];
|
|
3272
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3273
|
+
};
|
|
3258
3274
|
export type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
3259
3275
|
cloudId: Scalars['ID']['input'];
|
|
3260
3276
|
metricDefinitionId: Scalars['ID']['input'];
|
|
@@ -3387,6 +3403,14 @@ export type CompassComponentScorecardJiraIssuesQuery = {
|
|
|
3387
3403
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3388
3404
|
};
|
|
3389
3405
|
export type CompassComponentScorecardJiraIssuesQueryResult = CompassComponentScorecardJiraIssueConnection | QueryError;
|
|
3406
|
+
export type CompassComponentScorecardRelationship = {
|
|
3407
|
+
__typename?: 'CompassComponentScorecardRelationship';
|
|
3408
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
3409
|
+
};
|
|
3410
|
+
export type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
3411
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
3412
|
+
};
|
|
3413
|
+
export type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
3390
3414
|
export type CompassComponentScorecardScoreQuery = {
|
|
3391
3415
|
scorecardId: Scalars['ID']['input'];
|
|
3392
3416
|
};
|
|
@@ -4300,11 +4324,23 @@ export declare enum CompassIncidentEventState {
|
|
|
4300
4324
|
}
|
|
4301
4325
|
export type CompassIncomingWebhook = Node & {
|
|
4302
4326
|
__typename?: 'CompassIncomingWebhook';
|
|
4327
|
+
changeMetadata: CompassChangeMetadata;
|
|
4303
4328
|
description?: Maybe<Scalars['String']['output']>;
|
|
4304
4329
|
id: Scalars['ID']['output'];
|
|
4305
4330
|
name?: Maybe<Scalars['String']['output']>;
|
|
4306
4331
|
source: Scalars['String']['output'];
|
|
4307
4332
|
};
|
|
4333
|
+
export type CompassIncomingWebhookEdge = {
|
|
4334
|
+
__typename?: 'CompassIncomingWebhookEdge';
|
|
4335
|
+
cursor: Scalars['String']['output'];
|
|
4336
|
+
node?: Maybe<CompassIncomingWebhook>;
|
|
4337
|
+
};
|
|
4338
|
+
export type CompassIncomingWebhooksConnection = {
|
|
4339
|
+
__typename?: 'CompassIncomingWebhooksConnection';
|
|
4340
|
+
edges?: Maybe<Array<CompassIncomingWebhookEdge>>;
|
|
4341
|
+
nodes?: Maybe<Array<CompassIncomingWebhook>>;
|
|
4342
|
+
pageInfo?: Maybe<PageInfo>;
|
|
4343
|
+
};
|
|
4308
4344
|
export type CompassInsertMetricValueByExternalIdInput = {
|
|
4309
4345
|
cloudId: Scalars['ID']['input'];
|
|
4310
4346
|
externalMetricSourceId: Scalars['ID']['input'];
|
|
@@ -4912,6 +4948,17 @@ export type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
4912
4948
|
success: Scalars['Boolean']['output'];
|
|
4913
4949
|
updatedAnnouncement?: Maybe<CompassAnnouncement>;
|
|
4914
4950
|
};
|
|
4951
|
+
export type CompassUpdateComponentScorecardJiraIssueInput = {
|
|
4952
|
+
componentId: Scalars['ID']['input'];
|
|
4953
|
+
isActive: Scalars['Boolean']['input'];
|
|
4954
|
+
issueId: Scalars['ID']['input'];
|
|
4955
|
+
scorecardId: Scalars['ID']['input'];
|
|
4956
|
+
};
|
|
4957
|
+
export type CompassUpdateComponentScorecardJiraIssuePayload = Payload & {
|
|
4958
|
+
__typename?: 'CompassUpdateComponentScorecardJiraIssuePayload';
|
|
4959
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4960
|
+
success: Scalars['Boolean']['output'];
|
|
4961
|
+
};
|
|
4915
4962
|
export type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
4916
4963
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4917
4964
|
componentTypes?: InputMaybe<Array<CompassComponentType>>;
|
|
@@ -16908,6 +16955,13 @@ export type JiraJqlBuilderSearchModeMutationPayload = Payload & {
|
|
|
16908
16955
|
success: Scalars['Boolean']['output'];
|
|
16909
16956
|
userSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
16910
16957
|
};
|
|
16958
|
+
export type JiraJqlContextFieldsFilter = {
|
|
16959
|
+
excludeJqlTerms?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16960
|
+
forClause?: InputMaybe<JiraJqlClauseType>;
|
|
16961
|
+
jqlTerms?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16962
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
16963
|
+
shouldShowInContext?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16964
|
+
};
|
|
16911
16965
|
export type JiraJqlFromNaturalLanguage = {
|
|
16912
16966
|
__typename?: 'JiraJQLFromNaturalLanguage';
|
|
16913
16967
|
generatedJQL?: Maybe<Scalars['String']['output']>;
|
|
@@ -16987,11 +17041,9 @@ export type JiraJqlBuilderFieldValuesArgs = {
|
|
|
16987
17041
|
};
|
|
16988
17042
|
export type JiraJqlBuilderFieldsArgs = {
|
|
16989
17043
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16990
|
-
excludeFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16991
17044
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16992
|
-
forClause?: InputMaybe<JiraJqlClauseType>;
|
|
16993
17045
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
16994
|
-
|
|
17046
|
+
jqlContextFieldsFilter?: InputMaybe<JiraJqlContextFieldsFilter>;
|
|
16995
17047
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
16996
17048
|
};
|
|
16997
17049
|
export type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
@@ -19463,11 +19515,9 @@ export type JiraQueryFieldSetsByIdArgs = {
|
|
|
19463
19515
|
export type JiraQueryFieldsArgs = {
|
|
19464
19516
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
19465
19517
|
cloudId: Scalars['ID']['input'];
|
|
19466
|
-
excludeFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19467
19518
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19468
|
-
forClause?: InputMaybe<JiraJqlClauseType>;
|
|
19469
19519
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
19470
|
-
|
|
19520
|
+
jqlContextFieldsFilter?: InputMaybe<JiraJqlContextFieldsFilter>;
|
|
19471
19521
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
19472
19522
|
};
|
|
19473
19523
|
export type JiraQueryFilterArgs = {
|
|
@@ -24267,6 +24317,7 @@ export type NlpSearchResult = {
|
|
|
24267
24317
|
export declare enum NlpSearchResultFormat {
|
|
24268
24318
|
Adf = "ADF",
|
|
24269
24319
|
Json = "JSON",
|
|
24320
|
+
Markdown = "MARKDOWN",
|
|
24270
24321
|
PlainText = "PLAIN_TEXT"
|
|
24271
24322
|
}
|
|
24272
24323
|
export declare enum NlpSearchResultType {
|
|
@@ -30844,7 +30895,10 @@ export type TrelloBoardPluginConnection = {
|
|
|
30844
30895
|
export type TrelloBoardPluginEdge = {
|
|
30845
30896
|
__typename?: 'TrelloBoardPluginEdge';
|
|
30846
30897
|
cursor: Scalars['String']['output'];
|
|
30898
|
+
memberId?: Maybe<Scalars['ID']['output']>;
|
|
30847
30899
|
node: TrelloPlugin;
|
|
30900
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
30901
|
+
promotional?: Maybe<Scalars['Boolean']['output']>;
|
|
30848
30902
|
};
|
|
30849
30903
|
export type TrelloBoardPluginFilterInput = {
|
|
30850
30904
|
access?: InputMaybe<Scalars['String']['input']>;
|