@forge/cli-shared 3.20.3-next.10 → 3.20.3-next.11
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,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 821b018: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/js-yaml
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [821b018]
|
|
12
|
+
- @forge/manifest@4.20.4-next.4
|
|
13
|
+
|
|
3
14
|
## 3.20.3-next.10
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -2974,6 +2974,7 @@ export type CompassCatalogMutationApi = {
|
|
|
2974
2974
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
2975
2975
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
2976
2976
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
2977
|
+
createIncomingWebhook?: Maybe<CompassCreateIncomingWebhookPayload>;
|
|
2977
2978
|
createMetricDefinition?: Maybe<CompassCreateMetricDefinitionPayload>;
|
|
2978
2979
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
2979
2980
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
@@ -3068,6 +3069,9 @@ export type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
|
3068
3069
|
export type CompassCatalogMutationApiCreateEventSourceArgs = {
|
|
3069
3070
|
input: CreateEventSourceInput;
|
|
3070
3071
|
};
|
|
3072
|
+
export type CompassCatalogMutationApiCreateIncomingWebhookArgs = {
|
|
3073
|
+
input: CompassCreateIncomingWebhookInput;
|
|
3074
|
+
};
|
|
3071
3075
|
export type CompassCatalogMutationApiCreateMetricDefinitionArgs = {
|
|
3072
3076
|
input: CompassCreateMetricDefinitionInput;
|
|
3073
3077
|
};
|
|
@@ -3599,6 +3603,18 @@ export type CompassCreateIncidentEventPropertiesInput = {
|
|
|
3599
3603
|
startTime: Scalars['DateTime']['input'];
|
|
3600
3604
|
state: CompassIncidentEventState;
|
|
3601
3605
|
};
|
|
3606
|
+
export type CompassCreateIncomingWebhookInput = {
|
|
3607
|
+
cloudId: Scalars['ID']['input'];
|
|
3608
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3609
|
+
name: Scalars['String']['input'];
|
|
3610
|
+
source: Scalars['String']['input'];
|
|
3611
|
+
};
|
|
3612
|
+
export type CompassCreateIncomingWebhookPayload = Payload & {
|
|
3613
|
+
__typename?: 'CompassCreateIncomingWebhookPayload';
|
|
3614
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3615
|
+
success: Scalars['Boolean']['output'];
|
|
3616
|
+
webhookDetails: CompassIncomingWebhook;
|
|
3617
|
+
};
|
|
3602
3618
|
export type CompassCreateLifecycleEventInput = {
|
|
3603
3619
|
description: Scalars['String']['input'];
|
|
3604
3620
|
displayName: Scalars['String']['input'];
|
|
@@ -4265,6 +4281,13 @@ export declare enum CompassIncidentEventState {
|
|
|
4265
4281
|
Open = "OPEN",
|
|
4266
4282
|
Resolved = "RESOLVED"
|
|
4267
4283
|
}
|
|
4284
|
+
export type CompassIncomingWebhook = Node & {
|
|
4285
|
+
__typename?: 'CompassIncomingWebhook';
|
|
4286
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4287
|
+
id: Scalars['ID']['output'];
|
|
4288
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4289
|
+
source: Scalars['String']['output'];
|
|
4290
|
+
};
|
|
4268
4291
|
export type CompassInsertMetricValueByExternalIdInput = {
|
|
4269
4292
|
cloudId: Scalars['ID']['input'];
|
|
4270
4293
|
externalMetricSourceId: Scalars['ID']['input'];
|
|
@@ -9910,6 +9933,36 @@ export type ForgeContextToken = {
|
|
|
9910
9933
|
expiresAt: Scalars['String']['output'];
|
|
9911
9934
|
jwt: Scalars['String']['output'];
|
|
9912
9935
|
};
|
|
9936
|
+
export declare enum ForgeMetricsApiRequestGroupByDimensions {
|
|
9937
|
+
Url = "URL"
|
|
9938
|
+
}
|
|
9939
|
+
export type ForgeMetricsApiRequestLatencyValueData = {
|
|
9940
|
+
__typename?: 'ForgeMetricsApiRequestLatencyValueData';
|
|
9941
|
+
interval: ForgeMetricsIntervalRange;
|
|
9942
|
+
name: Scalars['String']['output'];
|
|
9943
|
+
series: Array<ForgeMetricsApiRequestLatencyValueSeries>;
|
|
9944
|
+
type: ForgeMetricsDataType;
|
|
9945
|
+
};
|
|
9946
|
+
export type ForgeMetricsApiRequestLatencyValueResult = ForgeMetricsApiRequestLatencyValueData | QueryError;
|
|
9947
|
+
export type ForgeMetricsApiRequestLatencyValueSeries = {
|
|
9948
|
+
__typename?: 'ForgeMetricsApiRequestLatencyValueSeries';
|
|
9949
|
+
percentiles: Array<ForgeMetricsLatenciesPercentile>;
|
|
9950
|
+
};
|
|
9951
|
+
export type ForgeMetricsApiRequestQueryFilters = {
|
|
9952
|
+
apiRequestType?: InputMaybe<ForgeMetricsApiRequestType>;
|
|
9953
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9954
|
+
environment: Scalars['ID']['input'];
|
|
9955
|
+
interval: ForgeMetricsIntervalInput;
|
|
9956
|
+
urls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9957
|
+
};
|
|
9958
|
+
export type ForgeMetricsApiRequestQueryInput = {
|
|
9959
|
+
filters: ForgeMetricsApiRequestQueryFilters;
|
|
9960
|
+
groupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
|
|
9961
|
+
};
|
|
9962
|
+
export declare enum ForgeMetricsApiRequestType {
|
|
9963
|
+
External = "EXTERNAL",
|
|
9964
|
+
Product = "PRODUCT"
|
|
9965
|
+
}
|
|
9913
9966
|
export type ForgeMetricsData = {
|
|
9914
9967
|
name: Scalars['String']['output'];
|
|
9915
9968
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -10055,6 +10108,7 @@ export type ForgeMetricsOtlpQueryInput = {
|
|
|
10055
10108
|
export type ForgeMetricsOtlpResult = ForgeMetricsOtlpData | QueryError;
|
|
10056
10109
|
export type ForgeMetricsQuery = {
|
|
10057
10110
|
__typename?: 'ForgeMetricsQuery';
|
|
10111
|
+
apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
|
|
10058
10112
|
appId: Scalars['ID']['output'];
|
|
10059
10113
|
errors: ForgeMetricsErrorsResult;
|
|
10060
10114
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
@@ -10067,6 +10121,9 @@ export type ForgeMetricsQuery = {
|
|
|
10067
10121
|
successRate: ForgeMetricsSuccessRateResult;
|
|
10068
10122
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
10069
10123
|
};
|
|
10124
|
+
export type ForgeMetricsQueryApiRequestLatencyValueArgs = {
|
|
10125
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
10126
|
+
};
|
|
10070
10127
|
export type ForgeMetricsQueryErrorsArgs = {
|
|
10071
10128
|
query: ForgeMetricsQueryInput;
|
|
10072
10129
|
};
|
|
@@ -24093,6 +24150,7 @@ export declare enum NlpErrorState {
|
|
|
24093
24150
|
NoAnswerRelevantContent = "NO_ANSWER_RELEVANT_CONTENT",
|
|
24094
24151
|
NoAnswerSearchResults = "NO_ANSWER_SEARCH_RESULTS",
|
|
24095
24152
|
NoAnswerWhoQuestion = "NO_ANSWER_WHO_QUESTION",
|
|
24153
|
+
OpenaiRateLimitUserAbuse = "OPENAI_RATE_LIMIT_USER_ABUSE",
|
|
24096
24154
|
SubjectiveQuery = "SUBJECTIVE_QUERY"
|
|
24097
24155
|
}
|
|
24098
24156
|
export type NlpFollowUpResponse = {
|
|
@@ -30040,6 +30098,7 @@ export type ToolchainAssociateContainersInput = {
|
|
|
30040
30098
|
};
|
|
30041
30099
|
export type ToolchainAssociateContainersPayload = Payload & {
|
|
30042
30100
|
__typename?: 'ToolchainAssociateContainersPayload';
|
|
30101
|
+
associatedContainers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
30043
30102
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
30044
30103
|
errors?: Maybe<Array<MutationError>>;
|
|
30045
30104
|
success: Scalars['Boolean']['output'];
|
|
@@ -31002,8 +31061,10 @@ export type TrelloCreateCardPayload = Payload & {
|
|
|
31002
31061
|
};
|
|
31003
31062
|
export type TrelloCustomField = {
|
|
31004
31063
|
__typename?: 'TrelloCustomField';
|
|
31064
|
+
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
31005
31065
|
name?: Maybe<Scalars['String']['output']>;
|
|
31006
31066
|
objectId: Scalars['ID']['output'];
|
|
31067
|
+
options?: Maybe<Array<TrelloCustomFieldOption>>;
|
|
31007
31068
|
position?: Maybe<Scalars['Float']['output']>;
|
|
31008
31069
|
type?: Maybe<Scalars['String']['output']>;
|
|
31009
31070
|
};
|
|
@@ -31013,6 +31074,10 @@ export type TrelloCustomFieldConnection = {
|
|
|
31013
31074
|
nodes?: Maybe<Array<TrelloCustomField>>;
|
|
31014
31075
|
pageInfo: PageInfo;
|
|
31015
31076
|
};
|
|
31077
|
+
export type TrelloCustomFieldDisplay = {
|
|
31078
|
+
__typename?: 'TrelloCustomFieldDisplay';
|
|
31079
|
+
cardFront?: Maybe<Scalars['Boolean']['output']>;
|
|
31080
|
+
};
|
|
31016
31081
|
export type TrelloCustomFieldEdge = {
|
|
31017
31082
|
__typename?: 'TrelloCustomFieldEdge';
|
|
31018
31083
|
cursor: Scalars['String']['output'];
|
|
@@ -31044,6 +31109,17 @@ export type TrelloCustomFieldItemValueInfo = {
|
|
|
31044
31109
|
number?: Maybe<Scalars['Float']['output']>;
|
|
31045
31110
|
text?: Maybe<Scalars['String']['output']>;
|
|
31046
31111
|
};
|
|
31112
|
+
export type TrelloCustomFieldOption = {
|
|
31113
|
+
__typename?: 'TrelloCustomFieldOption';
|
|
31114
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
31115
|
+
objectId: Scalars['ID']['output'];
|
|
31116
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
31117
|
+
value?: Maybe<TrelloCustomFieldOptionValue>;
|
|
31118
|
+
};
|
|
31119
|
+
export type TrelloCustomFieldOptionValue = {
|
|
31120
|
+
__typename?: 'TrelloCustomFieldOptionValue';
|
|
31121
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
31122
|
+
};
|
|
31047
31123
|
export type TrelloDescription = {
|
|
31048
31124
|
__typename?: 'TrelloDescription';
|
|
31049
31125
|
customData?: Maybe<TrelloDescriptionData>;
|
|
@@ -31108,6 +31184,7 @@ export type TrelloImagePreviewUpdatedConnection = {
|
|
|
31108
31184
|
export type TrelloJwmWorkspaceLink = {
|
|
31109
31185
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
31110
31186
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
31187
|
+
idCloud?: Maybe<Scalars['String']['output']>;
|
|
31111
31188
|
};
|
|
31112
31189
|
export type TrelloLabel = {
|
|
31113
31190
|
__typename?: 'TrelloLabel';
|