@forge/cli-shared 3.17.2-next.5 → 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,35 @@
|
|
|
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
|
+
|
|
26
|
+
## 3.17.2-next.6
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [07e8f1f]
|
|
31
|
+
- @forge/manifest@4.19.1-next.3
|
|
32
|
+
|
|
3
33
|
## 3.17.2-next.5
|
|
4
34
|
|
|
5
35
|
### 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']>;
|
|
@@ -19794,7 +19802,8 @@ export declare enum JiraVersionIssuesSortField {
|
|
|
19794
19802
|
Created = "CREATED",
|
|
19795
19803
|
Key = "KEY",
|
|
19796
19804
|
Priority = "PRIORITY",
|
|
19797
|
-
Status = "STATUS"
|
|
19805
|
+
Status = "STATUS",
|
|
19806
|
+
Type = "TYPE"
|
|
19798
19807
|
}
|
|
19799
19808
|
export type JiraVersionIssuesSortInput = {
|
|
19800
19809
|
sortByField?: Maybe<JiraVersionIssuesSortField>;
|
|
@@ -27135,7 +27144,23 @@ export type ToolchainAssociateContainersPayload = Payload & {
|
|
|
27135
27144
|
errors?: Maybe<Array<MutationError>>;
|
|
27136
27145
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
27137
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
|
+
};
|
|
27138
27162
|
export type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
|
|
27163
|
+
export type ToolchainAssociatedEntity = DevOpsDesign;
|
|
27139
27164
|
export type ToolchainCheck3Lo = {
|
|
27140
27165
|
__typename?: 'ToolchainCheck3LO';
|
|
27141
27166
|
authorized: Scalars['Boolean'];
|
|
@@ -27189,10 +27214,26 @@ export type ToolchainDisassociateContainersPayload = Payload & {
|
|
|
27189
27214
|
success: Scalars['Boolean'];
|
|
27190
27215
|
errors?: Maybe<Array<MutationError>>;
|
|
27191
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
|
+
};
|
|
27192
27231
|
export type ToolchainMutation = {
|
|
27193
27232
|
__typename?: 'ToolchainMutation';
|
|
27194
27233
|
associateContainers?: Maybe<ToolchainAssociateContainersPayload>;
|
|
27195
27234
|
disassociateContainers?: Maybe<ToolchainDisassociateContainersPayload>;
|
|
27235
|
+
associateEntities?: Maybe<ToolchainAssociateEntitiesPayload>;
|
|
27236
|
+
disassociateEntities?: Maybe<ToolchainDisassociateEntitiesPayload>;
|
|
27196
27237
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
27197
27238
|
};
|
|
27198
27239
|
export type ToolchainMutationAssociateContainersArgs = {
|
|
@@ -27201,6 +27242,12 @@ export type ToolchainMutationAssociateContainersArgs = {
|
|
|
27201
27242
|
export type ToolchainMutationDisassociateContainersArgs = {
|
|
27202
27243
|
input: ToolchainDisassociateContainersInput;
|
|
27203
27244
|
};
|
|
27245
|
+
export type ToolchainMutationAssociateEntitiesArgs = {
|
|
27246
|
+
input: ToolchainAssociateEntitiesInput;
|
|
27247
|
+
};
|
|
27248
|
+
export type ToolchainMutationDisassociateEntitiesArgs = {
|
|
27249
|
+
input: ToolchainDisassociateEntitiesInput;
|
|
27250
|
+
};
|
|
27204
27251
|
export type ToolchainMutationCreateContainerArgs = {
|
|
27205
27252
|
input: ToolchainCreateContainerInput;
|
|
27206
27253
|
};
|
|
@@ -27547,6 +27594,7 @@ export type TrelloBoardListsArgs = {
|
|
|
27547
27594
|
};
|
|
27548
27595
|
export type TrelloBoardMembersArgs = {
|
|
27549
27596
|
after?: Maybe<Scalars['String']>;
|
|
27597
|
+
filter?: Maybe<TrelloBoardMembershipFilterInput>;
|
|
27550
27598
|
first?: Maybe<Scalars['Int']>;
|
|
27551
27599
|
};
|
|
27552
27600
|
export type TrelloBoardAttachmentsLimits = {
|
|
@@ -27637,10 +27685,15 @@ export type TrelloBoardMembershipEdge = {
|
|
|
27637
27685
|
membership?: Maybe<TrelloBoardMembershipInfo>;
|
|
27638
27686
|
node?: Maybe<TrelloMember>;
|
|
27639
27687
|
};
|
|
27688
|
+
export type TrelloBoardMembershipFilterInput = {
|
|
27689
|
+
memberId?: Maybe<Scalars['ID']>;
|
|
27690
|
+
type?: Maybe<TrelloBoardMembershipType>;
|
|
27691
|
+
};
|
|
27640
27692
|
export type TrelloBoardMembershipInfo = {
|
|
27641
27693
|
__typename?: 'TrelloBoardMembershipInfo';
|
|
27642
27694
|
deactivated?: Maybe<Scalars['Boolean']>;
|
|
27643
27695
|
lastActive?: Maybe<Scalars['DateTime']>;
|
|
27696
|
+
objectId: Scalars['ID'];
|
|
27644
27697
|
type?: Maybe<TrelloBoardMembershipType>;
|
|
27645
27698
|
unconfirmed?: Maybe<Scalars['Boolean']>;
|
|
27646
27699
|
};
|
|
@@ -28147,6 +28200,7 @@ export type TrelloMember = Node & {
|
|
|
28147
28200
|
fullName?: Maybe<Scalars['String']>;
|
|
28148
28201
|
id: Scalars['ID'];
|
|
28149
28202
|
initials?: Maybe<Scalars['String']>;
|
|
28203
|
+
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
28150
28204
|
objectId: Scalars['ID'];
|
|
28151
28205
|
url?: Maybe<Scalars['String']>;
|
|
28152
28206
|
user?: Maybe<User>;
|
|
@@ -28163,6 +28217,12 @@ export type TrelloMemberEdge = {
|
|
|
28163
28217
|
cursor: Scalars['String'];
|
|
28164
28218
|
node?: Maybe<TrelloMember>;
|
|
28165
28219
|
};
|
|
28220
|
+
export type TrelloMemberNonPublicData = {
|
|
28221
|
+
__typename?: 'TrelloMemberNonPublicData';
|
|
28222
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
28223
|
+
fullName?: Maybe<Scalars['String']>;
|
|
28224
|
+
initials?: Maybe<Scalars['String']>;
|
|
28225
|
+
};
|
|
28166
28226
|
export type TrelloMutationApi = {
|
|
28167
28227
|
__typename?: 'TrelloMutationApi';
|
|
28168
28228
|
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
@@ -28172,6 +28232,7 @@ export type TrelloMutationApi = {
|
|
|
28172
28232
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
28173
28233
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
28174
28234
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
28235
|
+
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
28175
28236
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
28176
28237
|
};
|
|
28177
28238
|
export type TrelloMutationApiAddHelloArgs = {
|
|
@@ -28195,6 +28256,9 @@ export type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
28195
28256
|
export type TrelloMutationApiUnwatchCardArgs = {
|
|
28196
28257
|
input: TrelloWatchCardInput;
|
|
28197
28258
|
};
|
|
28259
|
+
export type TrelloMutationApiUpdateCardNameArgs = {
|
|
28260
|
+
input: TrelloUpdateCardNameInput;
|
|
28261
|
+
};
|
|
28198
28262
|
export type TrelloMutationApiWatchCardArgs = {
|
|
28199
28263
|
input: TrelloWatchCardInput;
|
|
28200
28264
|
};
|
|
@@ -28397,6 +28461,16 @@ export type TrelloUnarchiveCardPayload = Payload & {
|
|
|
28397
28461
|
errors?: Maybe<Array<MutationError>>;
|
|
28398
28462
|
success: Scalars['Boolean'];
|
|
28399
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
|
+
};
|
|
28400
28474
|
export type TrelloUploadedBackground = {
|
|
28401
28475
|
__typename?: 'TrelloUploadedBackground';
|
|
28402
28476
|
objectId: Scalars['ID'];
|