@forge/cli-shared 3.19.1-next.9 → 3.20.0-next.14
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 +40 -0
- package/out/graphql/graphql-types.d.ts +103 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +3 -0
- package/out/service/feature-flag-service.d.ts +3 -3
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +18 -20
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.0-next.14
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 77496359: Added deployment errors messages involving manifest validation
|
|
8
|
+
|
|
9
|
+
## 3.19.1-next.13
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 370a5262: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- launchdarkly-node-client-sdk
|
|
16
|
+
|
|
17
|
+
## 3.19.1-next.12
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [ed9ecfda]
|
|
22
|
+
- @forge/manifest@4.20.2-next.4
|
|
23
|
+
|
|
24
|
+
## 3.19.1-next.11
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [b70e132d]
|
|
29
|
+
- @forge/manifest@4.20.2-next.3
|
|
30
|
+
|
|
31
|
+
## 3.19.1-next.10
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- ab7c204: Bumping dependencies via Renovate:
|
|
36
|
+
|
|
37
|
+
- js-yaml
|
|
38
|
+
- @types/js-yaml
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [ab7c204]
|
|
41
|
+
- @forge/manifest@4.20.2-next.2
|
|
42
|
+
|
|
3
43
|
## 3.19.1-next.9
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
|
@@ -2448,6 +2448,7 @@ export type CcpInvoiceGroup = CommerceInvoiceGroup & {
|
|
|
2448
2448
|
__typename?: 'CcpInvoiceGroup';
|
|
2449
2449
|
experienceCapabilities?: Maybe<CcpInvoiceGroupExperienceCapabilities>;
|
|
2450
2450
|
id: Scalars['ID']['output'];
|
|
2451
|
+
invoiceable?: Maybe<Scalars['Boolean']['output']>;
|
|
2451
2452
|
};
|
|
2452
2453
|
export type CcpInvoiceGroupExperienceCapabilities = CommerceInvoiceGroupExperienceCapabilities & {
|
|
2453
2454
|
__typename?: 'CcpInvoiceGroupExperienceCapabilities';
|
|
@@ -2807,6 +2808,7 @@ export type CommerceExperienceCapability = {
|
|
|
2807
2808
|
};
|
|
2808
2809
|
export type CommerceInvoiceGroup = {
|
|
2809
2810
|
experienceCapabilities?: Maybe<CommerceInvoiceGroupExperienceCapabilities>;
|
|
2811
|
+
invoiceable?: Maybe<Scalars['Boolean']['output']>;
|
|
2810
2812
|
};
|
|
2811
2813
|
export type CommerceInvoiceGroupExperienceCapabilities = {
|
|
2812
2814
|
configurePayment?: Maybe<CommerceExperienceCapability>;
|
|
@@ -8446,6 +8448,7 @@ export type DevOpsSecurityProvider = DevOpsDataProvider & {
|
|
|
8446
8448
|
name?: Maybe<Scalars['String']['output']>;
|
|
8447
8449
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8448
8450
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8451
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
8449
8452
|
};
|
|
8450
8453
|
export type DevOpsSecurityProviderLinkedContainersArgs = {
|
|
8451
8454
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8458,6 +8461,9 @@ export type DevOpsSecurityProviderLinkedWorkspacesArgs = {
|
|
|
8458
8461
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8459
8462
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
8460
8463
|
};
|
|
8464
|
+
export type DevOpsSecurityProviderWorkspacesArgs = {
|
|
8465
|
+
cloudId: Scalars['ID']['input'];
|
|
8466
|
+
};
|
|
8461
8467
|
export type DevOpsSecurityVulnerabilityAdditionalInfo = {
|
|
8462
8468
|
__typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
|
|
8463
8469
|
content?: Maybe<Scalars['String']['output']>;
|
|
@@ -10235,6 +10241,7 @@ export type Graph = {
|
|
|
10235
10241
|
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
10236
10242
|
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
10237
10243
|
serviceLinkedIncident?: Maybe<GraphJiraIssueConnection>;
|
|
10244
|
+
serviceLinkedIncidentInverse?: Maybe<GraphProjectServiceConnection>;
|
|
10238
10245
|
sprintAssociatedBuild?: Maybe<GraphJiraBuildConnection>;
|
|
10239
10246
|
sprintAssociatedBuildInverse?: Maybe<GraphJiraSprintConnection>;
|
|
10240
10247
|
sprintAssociatedBuildRelationship?: Maybe<GraphSprintAssociatedBuildRelationshipConnection>;
|
|
@@ -10397,6 +10404,12 @@ export type GraphServiceLinkedIncidentArgs = {
|
|
|
10397
10404
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10398
10405
|
from: Scalars['ID']['input'];
|
|
10399
10406
|
};
|
|
10407
|
+
export type GraphServiceLinkedIncidentInverseArgs = {
|
|
10408
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10409
|
+
filter?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInput>;
|
|
10410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10411
|
+
to: Scalars['ID']['input'];
|
|
10412
|
+
};
|
|
10400
10413
|
export type GraphSprintAssociatedBuildArgs = {
|
|
10401
10414
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10402
10415
|
filter?: InputMaybe<GraphQueryMetadataSprintAssociatedBuildInput>;
|
|
@@ -11251,6 +11264,56 @@ export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulne
|
|
|
11251
11264
|
Sca = "SCA",
|
|
11252
11265
|
Unknown = "UNKNOWN"
|
|
11253
11266
|
}
|
|
11267
|
+
export type GraphQueryMetadataServiceLinkedIncidentInput = {
|
|
11268
|
+
and?: InputMaybe<Array<GraphQueryMetadataServiceLinkedIncidentInputAnd>>;
|
|
11269
|
+
or?: InputMaybe<Array<GraphQueryMetadataServiceLinkedIncidentInputOr>>;
|
|
11270
|
+
};
|
|
11271
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputAnd = {
|
|
11272
|
+
createdAt?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAt>;
|
|
11273
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdated>;
|
|
11274
|
+
or?: InputMaybe<Array<GraphQueryMetadataServiceLinkedIncidentInputOrInner>>;
|
|
11275
|
+
};
|
|
11276
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputAndInner = {
|
|
11277
|
+
createdAt?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAt>;
|
|
11278
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdated>;
|
|
11279
|
+
};
|
|
11280
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputCreatedAt = {
|
|
11281
|
+
range?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAtRangeField>;
|
|
11282
|
+
sort?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAtMetadataSortField>;
|
|
11283
|
+
};
|
|
11284
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputCreatedAtMetadataSortField = {
|
|
11285
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
11286
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
11287
|
+
};
|
|
11288
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputCreatedAtRangeField = {
|
|
11289
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11290
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11291
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11292
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11293
|
+
};
|
|
11294
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputLastUpdated = {
|
|
11295
|
+
range?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdatedRangeField>;
|
|
11296
|
+
sort?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdatedMetadataSortField>;
|
|
11297
|
+
};
|
|
11298
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputLastUpdatedMetadataSortField = {
|
|
11299
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
11300
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
11301
|
+
};
|
|
11302
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputLastUpdatedRangeField = {
|
|
11303
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11304
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11305
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11306
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11307
|
+
};
|
|
11308
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputOr = {
|
|
11309
|
+
and?: InputMaybe<Array<GraphQueryMetadataServiceLinkedIncidentInputAndInner>>;
|
|
11310
|
+
createdAt?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAt>;
|
|
11311
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdated>;
|
|
11312
|
+
};
|
|
11313
|
+
export type GraphQueryMetadataServiceLinkedIncidentInputOrInner = {
|
|
11314
|
+
createdAt?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAt>;
|
|
11315
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdated>;
|
|
11316
|
+
};
|
|
11254
11317
|
export declare enum GraphQueryMetadataSortEnum {
|
|
11255
11318
|
Asc = "ASC",
|
|
11256
11319
|
Desc = "DESC"
|
|
@@ -11739,6 +11802,7 @@ export type HamsExperienceCapability = CommerceExperienceCapability & {
|
|
|
11739
11802
|
export type HamsInvoiceGroup = CommerceInvoiceGroup & {
|
|
11740
11803
|
__typename?: 'HamsInvoiceGroup';
|
|
11741
11804
|
experienceCapabilities?: Maybe<HamsInvoiceGroupExperienceCapabilities>;
|
|
11805
|
+
invoiceable?: Maybe<Scalars['Boolean']['output']>;
|
|
11742
11806
|
};
|
|
11743
11807
|
export type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGroupExperienceCapabilities & {
|
|
11744
11808
|
__typename?: 'HamsInvoiceGroupExperienceCapabilities';
|
|
@@ -14593,6 +14657,23 @@ export type JiraCustomFilterShareGrantsArgs = {
|
|
|
14593
14657
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14594
14658
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
14595
14659
|
};
|
|
14660
|
+
export type JiraDataClassification = {
|
|
14661
|
+
__typename?: 'JiraDataClassification';
|
|
14662
|
+
color?: Maybe<JiraColor>;
|
|
14663
|
+
guideline?: Maybe<Scalars['String']['output']>;
|
|
14664
|
+
id: Scalars['ID']['output'];
|
|
14665
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14666
|
+
};
|
|
14667
|
+
export type JiraDataClassificationField = JiraIssueField & Node & {
|
|
14668
|
+
__typename?: 'JiraDataClassificationField';
|
|
14669
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
14670
|
+
classification?: Maybe<JiraDataClassification>;
|
|
14671
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14672
|
+
fieldId: Scalars['String']['output'];
|
|
14673
|
+
id: Scalars['ID']['output'];
|
|
14674
|
+
name: Scalars['String']['output'];
|
|
14675
|
+
type: Scalars['String']['output'];
|
|
14676
|
+
};
|
|
14596
14677
|
export type JiraDateFieldInput = {
|
|
14597
14678
|
date: JiraDateInput;
|
|
14598
14679
|
fieldId: Scalars['ID']['input'];
|
|
@@ -14805,11 +14886,6 @@ export declare enum JiraEmailMimeType {
|
|
|
14805
14886
|
Html = "HTML",
|
|
14806
14887
|
Text = "TEXT"
|
|
14807
14888
|
}
|
|
14808
|
-
export type JiraEmailMimeTypeUpdateResult = {
|
|
14809
|
-
__typename?: 'JiraEmailMimeTypeUpdateResult';
|
|
14810
|
-
emailMimeType?: Maybe<JiraEmailMimeType>;
|
|
14811
|
-
id: Scalars['ID']['output'];
|
|
14812
|
-
};
|
|
14813
14889
|
export type JiraEntityProperty = {
|
|
14814
14890
|
id: Scalars['ID']['output'];
|
|
14815
14891
|
propertyKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -17477,10 +17553,14 @@ export declare enum JiraNotificationChannelType {
|
|
|
17477
17553
|
}
|
|
17478
17554
|
export type JiraNotificationGlobalPreference = {
|
|
17479
17555
|
__typename?: 'JiraNotificationGlobalPreference';
|
|
17556
|
+
options?: Maybe<JiraNotificationOptions>;
|
|
17557
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
17558
|
+
};
|
|
17559
|
+
export type JiraNotificationOptions = {
|
|
17560
|
+
__typename?: 'JiraNotificationOptions';
|
|
17480
17561
|
emailMimeType?: Maybe<JiraEmailMimeType>;
|
|
17481
17562
|
id: Scalars['ID']['output'];
|
|
17482
17563
|
isEmailMimeTypeEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
17483
|
-
preferences?: Maybe<JiraNotificationPreferences>;
|
|
17484
17564
|
};
|
|
17485
17565
|
export type JiraNotificationPreference = {
|
|
17486
17566
|
__typename?: 'JiraNotificationPreference';
|
|
@@ -20171,6 +20251,7 @@ export type JiraServiceManagementPeopleFieldUsersArgs = {
|
|
|
20171
20251
|
};
|
|
20172
20252
|
export declare enum JiraServiceManagementPractice {
|
|
20173
20253
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
20254
|
+
DeveloperEscalation = "DEVELOPER_ESCALATION",
|
|
20174
20255
|
IncidentManagement = "INCIDENT_MANAGEMENT",
|
|
20175
20256
|
PostIncidentReview = "POST_INCIDENT_REVIEW",
|
|
20176
20257
|
ProblemManagement = "PROBLEM_MANAGEMENT",
|
|
@@ -21175,8 +21256,8 @@ export type JiraUpdateEmailMimeTypeInput = {
|
|
|
21175
21256
|
};
|
|
21176
21257
|
export type JiraUpdateEmailMimeTypePayload = Payload & {
|
|
21177
21258
|
__typename?: 'JiraUpdateEmailMimeTypePayload';
|
|
21178
|
-
emailMimeTypeUpdateResult?: Maybe<JiraEmailMimeTypeUpdateResult>;
|
|
21179
21259
|
errors?: Maybe<Array<MutationError>>;
|
|
21260
|
+
options?: Maybe<JiraNotificationOptions>;
|
|
21180
21261
|
success: Scalars['Boolean']['output'];
|
|
21181
21262
|
};
|
|
21182
21263
|
export type JiraUpdateGlobalNotificationPreferencesInput = {
|
|
@@ -27614,9 +27695,11 @@ export declare enum ShepherdActionType {
|
|
|
27614
27695
|
Create = "CREATE",
|
|
27615
27696
|
Delete = "DELETE",
|
|
27616
27697
|
Export = "EXPORT",
|
|
27698
|
+
Install = "INSTALL",
|
|
27617
27699
|
Login = "LOGIN",
|
|
27618
27700
|
Read = "READ",
|
|
27619
27701
|
Search = "SEARCH",
|
|
27702
|
+
Uninstall = "UNINSTALL",
|
|
27620
27703
|
Update = "UPDATE"
|
|
27621
27704
|
}
|
|
27622
27705
|
export type ShepherdActivity = ShepherdActorActivity | ShepherdLoginActivity | ShepherdResourceActivity;
|
|
@@ -30484,6 +30567,7 @@ export type TrelloList = Node & {
|
|
|
30484
30567
|
objectId: Scalars['ID']['output'];
|
|
30485
30568
|
position: Scalars['Float']['output'];
|
|
30486
30569
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
30570
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
30487
30571
|
viewer?: Maybe<TrelloListViewer>;
|
|
30488
30572
|
};
|
|
30489
30573
|
export type TrelloListCardsArgs = {
|
|
@@ -30561,6 +30645,7 @@ export type TrelloMember = Node & {
|
|
|
30561
30645
|
initials?: Maybe<Scalars['String']['output']>;
|
|
30562
30646
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
30563
30647
|
objectId: Scalars['ID']['output'];
|
|
30648
|
+
referrer?: Maybe<TrelloMember>;
|
|
30564
30649
|
url?: Maybe<Scalars['String']['output']>;
|
|
30565
30650
|
user?: Maybe<User>;
|
|
30566
30651
|
username?: Maybe<Scalars['String']['output']>;
|
|
@@ -30662,6 +30747,10 @@ export type TrelloPopularLabelForColor = {
|
|
|
30662
30747
|
color?: Maybe<Scalars['String']['output']>;
|
|
30663
30748
|
labelName?: Maybe<Scalars['String']['output']>;
|
|
30664
30749
|
};
|
|
30750
|
+
export type TrelloProduct = {
|
|
30751
|
+
__typename?: 'TrelloProduct';
|
|
30752
|
+
sku: Scalars['Int']['output'];
|
|
30753
|
+
};
|
|
30665
30754
|
export type TrelloQueryApi = {
|
|
30666
30755
|
__typename?: 'TrelloQueryApi';
|
|
30667
30756
|
board?: Maybe<TrelloBoard>;
|
|
@@ -30883,12 +30972,14 @@ export type TrelloWorkspace = Node & {
|
|
|
30883
30972
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
30884
30973
|
id: Scalars['ID']['output'];
|
|
30885
30974
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
30975
|
+
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
30886
30976
|
logoHash?: Maybe<Scalars['String']['output']>;
|
|
30887
30977
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
30888
30978
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
30889
30979
|
name: Scalars['String']['output'];
|
|
30890
30980
|
objectId: Scalars['ID']['output'];
|
|
30891
30981
|
prefs: TrelloWorkspacePrefs;
|
|
30982
|
+
products?: Maybe<Array<Maybe<TrelloProduct>>>;
|
|
30892
30983
|
tags?: Maybe<TrelloTagConnection>;
|
|
30893
30984
|
url: Scalars['String']['output'];
|
|
30894
30985
|
website?: Maybe<Scalars['String']['output']>;
|
|
@@ -30901,6 +30992,11 @@ export type TrelloWorkspaceTagsArgs = {
|
|
|
30901
30992
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30902
30993
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30903
30994
|
};
|
|
30995
|
+
export type TrelloWorkspaceLimits = {
|
|
30996
|
+
__typename?: 'TrelloWorkspaceLimits';
|
|
30997
|
+
freeBoards?: Maybe<TrelloLimitProps>;
|
|
30998
|
+
totalMembers?: Maybe<TrelloLimitProps>;
|
|
30999
|
+
};
|
|
30904
31000
|
export type TrelloWorkspaceMembershipEdge = {
|
|
30905
31001
|
__typename?: 'TrelloWorkspaceMembershipEdge';
|
|
30906
31002
|
cursor?: Maybe<Scalars['String']['output']>;
|