@forge/cli-shared 3.17.2-next.6 → 3.17.2-next.6-experimental-8802d63
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.17.2-next.6-experimental-8802d63
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 30713ea: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
- cdf28f2: Improve user error detection
|
|
12
|
+
- 81556b08: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- @sentry/node
|
|
15
|
+
|
|
16
|
+
- 035116d: Bumping dependencies via Renovate:
|
|
17
|
+
|
|
18
|
+
- node-fetch
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [8b993ad6]
|
|
21
|
+
- Updated dependencies [035116d]
|
|
22
|
+
- Updated dependencies [07e8f1f]
|
|
23
|
+
- Updated dependencies [1fa312e]
|
|
24
|
+
- @forge/manifest@4.19.1-next.3-experimental-8802d63
|
|
25
|
+
|
|
3
26
|
## 3.17.2-next.6
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -7586,6 +7586,17 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
|
7586
7586
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7587
7587
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7588
7588
|
};
|
|
7589
|
+
export type DevOpsDesign = Node & {
|
|
7590
|
+
__typename?: 'DevOpsDesign';
|
|
7591
|
+
id: Scalars['ID'];
|
|
7592
|
+
displayName?: Maybe<Scalars['String']>;
|
|
7593
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
7594
|
+
url?: Maybe<Scalars['URL']>;
|
|
7595
|
+
liveEmbedUrl?: Maybe<Scalars['URL']>;
|
|
7596
|
+
inspectUrl?: Maybe<Scalars['URL']>;
|
|
7597
|
+
status?: Maybe<DevOpsDesignStatus>;
|
|
7598
|
+
type?: Maybe<DevOpsDesignType>;
|
|
7599
|
+
};
|
|
7589
7600
|
export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
7590
7601
|
__typename?: 'DevOpsDesignProvider';
|
|
7591
7602
|
id: Scalars['ID'];
|
|
@@ -7597,6 +7608,19 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
7597
7608
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7598
7609
|
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7599
7610
|
};
|
|
7611
|
+
export declare enum DevOpsDesignStatus {
|
|
7612
|
+
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
7613
|
+
Unknown = "UNKNOWN",
|
|
7614
|
+
None = "NONE"
|
|
7615
|
+
}
|
|
7616
|
+
export declare enum DevOpsDesignType {
|
|
7617
|
+
File = "FILE",
|
|
7618
|
+
Canvas = "CANVAS",
|
|
7619
|
+
Group = "GROUP",
|
|
7620
|
+
Node = "NODE",
|
|
7621
|
+
Prototype = "PROTOTYPE",
|
|
7622
|
+
Other = "OTHER"
|
|
7623
|
+
}
|
|
7600
7624
|
export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
7601
7625
|
__typename?: 'DevOpsDevInfoProvider';
|
|
7602
7626
|
id: Scalars['ID'];
|
|
@@ -8820,6 +8844,7 @@ export type EcosystemQuery = {
|
|
|
8820
8844
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
8821
8845
|
appsInstalledInContexts: CsAppsInstalledInContextsConnection;
|
|
8822
8846
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
8847
|
+
appByOauthClient?: Maybe<App>;
|
|
8823
8848
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
8824
8849
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
8825
8850
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -8866,6 +8891,9 @@ export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
|
8866
8891
|
export type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
8867
8892
|
oauthClientIds: Array<Scalars['ID']>;
|
|
8868
8893
|
};
|
|
8894
|
+
export type EcosystemQueryAppByOauthClientArgs = {
|
|
8895
|
+
oauthClientId: Scalars['ID'];
|
|
8896
|
+
};
|
|
8869
8897
|
export type EcosystemQueryForgeMetricsArgs = {
|
|
8870
8898
|
appId: Scalars['ID'];
|
|
8871
8899
|
};
|
|
@@ -13892,16 +13920,6 @@ export type JiraIssueEdge = {
|
|
|
13892
13920
|
node?: Maybe<JiraIssue>;
|
|
13893
13921
|
cursor: Scalars['String'];
|
|
13894
13922
|
};
|
|
13895
|
-
export type JiraIssueEmailBatchingWindowPayload = Payload & {
|
|
13896
|
-
__typename?: 'JiraIssueEmailBatchingWindowPayload';
|
|
13897
|
-
success: Scalars['Boolean'];
|
|
13898
|
-
errors?: Maybe<Array<MutationError>>;
|
|
13899
|
-
};
|
|
13900
|
-
export type JiraIssueEmailMaxIdleTimePayload = Payload & {
|
|
13901
|
-
__typename?: 'JiraIssueEmailMaxIdleTimePayload';
|
|
13902
|
-
success: Scalars['Boolean'];
|
|
13903
|
-
errors?: Maybe<Array<MutationError>>;
|
|
13904
|
-
};
|
|
13905
13923
|
export type JiraIssueField = {
|
|
13906
13924
|
id: Scalars['ID'];
|
|
13907
13925
|
fieldId: Scalars['String'];
|
|
@@ -19474,8 +19492,6 @@ export type JiraUserPreferences = {
|
|
|
19474
19492
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
19475
19493
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
19476
19494
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']>;
|
|
19477
|
-
issueEmailBatchingWindow?: Maybe<Scalars['String']>;
|
|
19478
|
-
issueEmailMaxIdleTime?: Maybe<Scalars['String']>;
|
|
19479
19495
|
};
|
|
19480
19496
|
export type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
19481
19497
|
projectKey: Scalars['String'];
|
|
@@ -19485,8 +19501,6 @@ export type JiraUserPreferencesMutation = {
|
|
|
19485
19501
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
19486
19502
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
19487
19503
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
19488
|
-
setIssueEmailBatchingWindow?: Maybe<JiraIssueEmailBatchingWindowPayload>;
|
|
19489
|
-
setIssueEmailMaxIdleTime?: Maybe<JiraIssueEmailMaxIdleTimePayload>;
|
|
19490
19504
|
};
|
|
19491
19505
|
export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
19492
19506
|
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -19497,12 +19511,6 @@ export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
|
19497
19511
|
export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
19498
19512
|
isEnabled: Scalars['Boolean'];
|
|
19499
19513
|
};
|
|
19500
|
-
export type JiraUserPreferencesMutationSetIssueEmailBatchingWindowArgs = {
|
|
19501
|
-
batchWindow: Scalars['String'];
|
|
19502
|
-
};
|
|
19503
|
-
export type JiraUserPreferencesMutationSetIssueEmailMaxIdleTimeArgs = {
|
|
19504
|
-
maxIdleTime: Scalars['String'];
|
|
19505
|
-
};
|
|
19506
19514
|
export type JiraUserSegmentation = {
|
|
19507
19515
|
__typename?: 'JiraUserSegmentation';
|
|
19508
19516
|
role?: Maybe<Scalars['String']>;
|
|
@@ -27136,7 +27144,23 @@ export type ToolchainAssociateContainersPayload = Payload & {
|
|
|
27136
27144
|
errors?: Maybe<Array<MutationError>>;
|
|
27137
27145
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
27138
27146
|
};
|
|
27147
|
+
export type ToolchainAssociateEntitiesInput = {
|
|
27148
|
+
cloudId: Scalars['ID'];
|
|
27149
|
+
providerId: Scalars['ID'];
|
|
27150
|
+
associations: Array<ToolchainAssociateEntityInput>;
|
|
27151
|
+
};
|
|
27152
|
+
export type ToolchainAssociateEntitiesPayload = Payload & {
|
|
27153
|
+
__typename?: 'ToolchainAssociateEntitiesPayload';
|
|
27154
|
+
success: Scalars['Boolean'];
|
|
27155
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27156
|
+
entities?: Maybe<Array<ToolchainAssociatedEntity>>;
|
|
27157
|
+
};
|
|
27158
|
+
export type ToolchainAssociateEntityInput = {
|
|
27159
|
+
fromId: Scalars['ID'];
|
|
27160
|
+
toEntityUrl: Scalars['URL'];
|
|
27161
|
+
};
|
|
27139
27162
|
export type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
|
|
27163
|
+
export type ToolchainAssociatedEntity = DevOpsDesign;
|
|
27140
27164
|
export type ToolchainCheck3Lo = {
|
|
27141
27165
|
__typename?: 'ToolchainCheck3LO';
|
|
27142
27166
|
authorized: Scalars['Boolean'];
|
|
@@ -27190,10 +27214,26 @@ export type ToolchainDisassociateContainersPayload = Payload & {
|
|
|
27190
27214
|
success: Scalars['Boolean'];
|
|
27191
27215
|
errors?: Maybe<Array<MutationError>>;
|
|
27192
27216
|
};
|
|
27217
|
+
export type ToolchainDisassociateEntitiesInput = {
|
|
27218
|
+
cloudId: Scalars['ID'];
|
|
27219
|
+
providerId: Scalars['ID'];
|
|
27220
|
+
disassociations: Array<ToolchainDisassociateEntityInput>;
|
|
27221
|
+
};
|
|
27222
|
+
export type ToolchainDisassociateEntitiesPayload = Payload & {
|
|
27223
|
+
__typename?: 'ToolchainDisassociateEntitiesPayload';
|
|
27224
|
+
success: Scalars['Boolean'];
|
|
27225
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27226
|
+
};
|
|
27227
|
+
export type ToolchainDisassociateEntityInput = {
|
|
27228
|
+
fromId: Scalars['ID'];
|
|
27229
|
+
toEntityId: Scalars['ID'];
|
|
27230
|
+
};
|
|
27193
27231
|
export type ToolchainMutation = {
|
|
27194
27232
|
__typename?: 'ToolchainMutation';
|
|
27195
27233
|
associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
|
|
27196
27234
|
disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
|
|
27235
|
+
associateEntities?: Maybe<ToolchainAssociateEntitiesPayload>;
|
|
27236
|
+
disassociateEntities?: Maybe<ToolchainDisassociateEntitiesPayload>;
|
|
27197
27237
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
27198
27238
|
};
|
|
27199
27239
|
export type ToolchainMutationAssociateContainersArgs = {
|
|
@@ -27202,6 +27242,12 @@ export type ToolchainMutationAssociateContainersArgs = {
|
|
|
27202
27242
|
export type ToolchainMutationDisassociateContainersArgs = {
|
|
27203
27243
|
input: ToolchainDisassociateContainersInput;
|
|
27204
27244
|
};
|
|
27245
|
+
export type ToolchainMutationAssociateEntitiesArgs = {
|
|
27246
|
+
input: ToolchainAssociateEntitiesInput;
|
|
27247
|
+
};
|
|
27248
|
+
export type ToolchainMutationDisassociateEntitiesArgs = {
|
|
27249
|
+
input: ToolchainDisassociateEntitiesInput;
|
|
27250
|
+
};
|
|
27205
27251
|
export type ToolchainMutationCreateContainerArgs = {
|
|
27206
27252
|
input: ToolchainCreateContainerInput;
|
|
27207
27253
|
};
|
|
@@ -28186,6 +28232,7 @@ export type TrelloMutationApi = {
|
|
|
28186
28232
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
28187
28233
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
28188
28234
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
28235
|
+
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
28189
28236
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
28190
28237
|
};
|
|
28191
28238
|
export type TrelloMutationApiAddHelloArgs = {
|
|
@@ -28209,6 +28256,9 @@ export type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
28209
28256
|
export type TrelloMutationApiUnwatchCardArgs = {
|
|
28210
28257
|
input: TrelloWatchCardInput;
|
|
28211
28258
|
};
|
|
28259
|
+
export type TrelloMutationApiUpdateCardNameArgs = {
|
|
28260
|
+
input: TrelloUpdateCardNameInput;
|
|
28261
|
+
};
|
|
28212
28262
|
export type TrelloMutationApiWatchCardArgs = {
|
|
28213
28263
|
input: TrelloWatchCardInput;
|
|
28214
28264
|
};
|
|
@@ -28411,6 +28461,16 @@ export type TrelloUnarchiveCardPayload = Payload & {
|
|
|
28411
28461
|
errors?: Maybe<Array<MutationError>>;
|
|
28412
28462
|
success: Scalars['Boolean'];
|
|
28413
28463
|
};
|
|
28464
|
+
export type TrelloUpdateCardNameInput = {
|
|
28465
|
+
cardId: Scalars['ID'];
|
|
28466
|
+
name?: Maybe<Scalars['String']>;
|
|
28467
|
+
};
|
|
28468
|
+
export type TrelloUpdateCardNamePayload = Payload & {
|
|
28469
|
+
__typename?: 'TrelloUpdateCardNamePayload';
|
|
28470
|
+
card?: Maybe<TrelloCard>;
|
|
28471
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28472
|
+
success: Scalars['Boolean'];
|
|
28473
|
+
};
|
|
28414
28474
|
export type TrelloUploadedBackground = {
|
|
28415
28475
|
__typename?: 'TrelloUploadedBackground';
|
|
28416
28476
|
objectId: Scalars['ID'];
|