@forge/cli-shared 9.3.0-next.13 → 9.3.0-next.14-experimental-5f9d93a
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 +38 -0
- package/out/graphql/graphql-types.d.ts +35 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +12 -12
- package/out/ui/text.d.ts +11 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +13 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.3.0-next.14-experimental-5f9d93a
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8a9e608: Pull the Forge tunnel proxy-sidecar image from the Portable Registry, falling back to ECR if the initial pull fails
|
|
8
|
+
- 18b920d: Update feature gate name
|
|
9
|
+
- a36d70b: Implement manual bundler
|
|
10
|
+
- bc2d278: Display deeplinks to installed modules after a successful `forge install`
|
|
11
|
+
- ca4fa27: Add utility function to check if a UI Kit resource needs to be bundled
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4d50a76: Changes to forge deploy with a feature-gated combined artifact upload flow.
|
|
16
|
+
- c8105d8: Remind the user to authenticate to the container registry after creating a new container
|
|
17
|
+
- 3e8de63: add `manifest render` command
|
|
18
|
+
- 0949833: Update `tmp` to 0.2.7 to remediate vulnerability
|
|
19
|
+
- e7bfe5e: Removing installationTarget
|
|
20
|
+
- Updated dependencies [f01417b]
|
|
21
|
+
- Updated dependencies [d706cd8]
|
|
22
|
+
- Updated dependencies [4b90a07]
|
|
23
|
+
- Updated dependencies [3e8de63]
|
|
24
|
+
- Updated dependencies [d1610cc]
|
|
25
|
+
- Updated dependencies [e7bfe5e]
|
|
26
|
+
- Updated dependencies [498fda5]
|
|
27
|
+
- Updated dependencies [89ccb1e]
|
|
28
|
+
- Updated dependencies [39f1f15]
|
|
29
|
+
- Updated dependencies [c3a0f20]
|
|
30
|
+
- @forge/manifest@13.3.0-next.9-experimental-5f9d93a
|
|
31
|
+
|
|
32
|
+
## 9.3.0-next.14
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- c8105d8: Remind the user to authenticate to the container registry after creating a new container
|
|
37
|
+
- 3e8de63: add `manifest render` command
|
|
38
|
+
- Updated dependencies [3e8de63]
|
|
39
|
+
- @forge/manifest@13.3.0-next.9
|
|
40
|
+
|
|
3
41
|
## 9.3.0-next.13
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|
|
@@ -162908,6 +162908,7 @@ export type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
|
162908
162908
|
export type MercuryAsk = Node & {
|
|
162909
162909
|
__typename?: 'MercuryAsk';
|
|
162910
162910
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
162911
|
+
askStatus: MercuryAskStatusEnum;
|
|
162911
162912
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
162912
162913
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
162913
162914
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -162932,7 +162933,6 @@ export type MercuryAsk = Node & {
|
|
|
162932
162933
|
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
162933
162934
|
receivingTeam?: Maybe<TeamV2>;
|
|
162934
162935
|
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
162935
|
-
status: MercuryAskStatus;
|
|
162936
162936
|
submitter?: Maybe<User>;
|
|
162937
162937
|
submitterId: Scalars['ID']['output'];
|
|
162938
162938
|
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
@@ -163113,8 +163113,8 @@ export type MercuryAskActivityUpdatedProposedDate = MercuryAskActivityUpdatedVal
|
|
|
163113
163113
|
export type MercuryAskActivityUpdatedStatus = MercuryAskActivityUpdatedValue & {
|
|
163114
163114
|
__typename?: 'MercuryAskActivityUpdatedStatus';
|
|
163115
163115
|
attribute: MercuryAskActivityAttribute;
|
|
163116
|
-
newValue?: Maybe<
|
|
163117
|
-
oldValue?: Maybe<
|
|
163116
|
+
newValue?: Maybe<MercuryAskStatusEnum>;
|
|
163117
|
+
oldValue?: Maybe<MercuryAskStatusEnum>;
|
|
163118
163118
|
};
|
|
163119
163119
|
export type MercuryAskActivityUpdatedString = MercuryAskActivityUpdatedValue & {
|
|
163120
163120
|
__typename?: 'MercuryAskActivityUpdatedString';
|
|
@@ -163239,7 +163239,7 @@ export declare enum MercuryAskPriority {
|
|
|
163239
163239
|
Medium = "MEDIUM"
|
|
163240
163240
|
}
|
|
163241
163241
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
163242
|
-
export declare enum
|
|
163242
|
+
export declare enum MercuryAskStatusEnum {
|
|
163243
163243
|
Accepted = "ACCEPTED",
|
|
163244
163244
|
Canceled = "CANCELED",
|
|
163245
163245
|
Deferred = "DEFERRED",
|
|
@@ -163256,13 +163256,13 @@ export type MercuryAskStatusUpdate = {
|
|
|
163256
163256
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
163257
163257
|
description?: Maybe<Scalars['String']['output']>;
|
|
163258
163258
|
id: Scalars['ID']['output'];
|
|
163259
|
+
newAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163259
163260
|
newProposedBy?: Maybe<User>;
|
|
163260
163261
|
newProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163261
|
-
newStatus?: Maybe<MercuryAskStatus>;
|
|
163262
163262
|
newTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163263
|
+
oldAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163263
163264
|
oldProposedBy?: Maybe<User>;
|
|
163264
163265
|
oldProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163265
|
-
oldStatus?: Maybe<MercuryAskStatus>;
|
|
163266
163266
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163267
163267
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163268
163268
|
updatedBy?: Maybe<User>;
|
|
@@ -163285,8 +163285,8 @@ export type MercuryAskStatusUpdateEdge = {
|
|
|
163285
163285
|
};
|
|
163286
163286
|
export type MercuryAskStatusUpdateResult = MercuryAskStatusUpdate | QueryError;
|
|
163287
163287
|
export type MercuryAskStatusUpdateStatusInput = {
|
|
163288
|
+
askStatus: MercuryAskStatusEnum;
|
|
163288
163289
|
id: Scalars['ID']['input'];
|
|
163289
|
-
status: MercuryAskStatus;
|
|
163290
163290
|
};
|
|
163291
163291
|
export type MercuryAskStatusUpdateTargetDateInput = {
|
|
163292
163292
|
id: Scalars['ID']['input'];
|
|
@@ -163309,7 +163309,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
163309
163309
|
export type MercuryAskTransition = {
|
|
163310
163310
|
__typename?: 'MercuryAskTransition';
|
|
163311
163311
|
askId: Scalars['ID']['output'];
|
|
163312
|
-
|
|
163312
|
+
askStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163313
163313
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
163314
163314
|
};
|
|
163315
163315
|
export type MercuryAskUpdatedField = {
|
|
@@ -164156,6 +164156,7 @@ export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
|
164156
164156
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
164157
164157
|
};
|
|
164158
164158
|
export type MercuryCreateAskInput = {
|
|
164159
|
+
askStatus: MercuryAskStatusEnum;
|
|
164159
164160
|
cloudId: Scalars['ID']['input'];
|
|
164160
164161
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164161
164162
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164165,7 +164166,6 @@ export type MercuryCreateAskInput = {
|
|
|
164165
164166
|
priority: MercuryAskPriority;
|
|
164166
164167
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164167
164168
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164168
|
-
status: MercuryAskStatus;
|
|
164169
164169
|
submitterId: Scalars['ID']['input'];
|
|
164170
164170
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164171
164171
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164173,12 +164173,13 @@ export type MercuryCreateAskInput = {
|
|
|
164173
164173
|
};
|
|
164174
164174
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
164175
164175
|
askId: Scalars['ID']['input'];
|
|
164176
|
+
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
164176
164177
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164177
164178
|
proposedDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164178
|
-
status?: InputMaybe<MercuryAskStatus>;
|
|
164179
164179
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164180
164180
|
};
|
|
164181
164181
|
export type MercuryCreateAsksAskInput = {
|
|
164182
|
+
askStatus: MercuryAskStatusEnum;
|
|
164182
164183
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164183
164184
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
164184
164185
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164188,7 +164189,6 @@ export type MercuryCreateAsksAskInput = {
|
|
|
164188
164189
|
priority: MercuryAskPriority;
|
|
164189
164190
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164190
164191
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164191
|
-
status: MercuryAskStatus;
|
|
164192
164192
|
submitterId: Scalars['ID']['input'];
|
|
164193
164193
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164194
164194
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167817,6 +167817,17 @@ export type MercuryOrganizationMembershipEdge = {
|
|
|
167817
167817
|
cursor: Scalars['String']['output'];
|
|
167818
167818
|
node?: Maybe<MercuryOrganizationMembership>;
|
|
167819
167819
|
};
|
|
167820
|
+
export type MercuryOrganizationMembershipValidationError = {
|
|
167821
|
+
__typename?: 'MercuryOrganizationMembershipValidationError';
|
|
167822
|
+
errorCode: Scalars['String']['output'];
|
|
167823
|
+
field: Scalars['String']['output'];
|
|
167824
|
+
message: Scalars['String']['output'];
|
|
167825
|
+
};
|
|
167826
|
+
export type MercuryOrganizationMembershipValidationFailure = {
|
|
167827
|
+
__typename?: 'MercuryOrganizationMembershipValidationFailure';
|
|
167828
|
+
errors: Array<MercuryOrganizationMembershipValidationError>;
|
|
167829
|
+
index: Scalars['Int']['output'];
|
|
167830
|
+
};
|
|
167820
167831
|
export declare enum MercuryOrganizationPermission {
|
|
167821
167832
|
Archive = "ARCHIVE",
|
|
167822
167833
|
CreateFocusAreaSponsor = "CREATE_FOCUS_AREA_SPONSOR",
|
|
@@ -168347,6 +168358,7 @@ export type MercuryOrganizationsQueryApi = {
|
|
|
168347
168358
|
organizationsSearch?: Maybe<MercuryOrganizationConnection>;
|
|
168348
168359
|
planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
|
|
168349
168360
|
searchOrganizationActivityHistory?: Maybe<MercuryOrganizationActivityHistoryConnection>;
|
|
168361
|
+
validateAddOrganizationMemberships?: Maybe<MercuryValidateAddOrganizationMembershipsPayload>;
|
|
168350
168362
|
};
|
|
168351
168363
|
export type MercuryOrganizationsQueryApiAiOrganizationListSummaryArgs = {
|
|
168352
168364
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -168450,6 +168462,9 @@ export type MercuryOrganizationsQueryApiSearchOrganizationActivityHistoryArgs =
|
|
|
168450
168462
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
168451
168463
|
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationActivitySort>>>;
|
|
168452
168464
|
};
|
|
168465
|
+
export type MercuryOrganizationsQueryApiValidateAddOrganizationMembershipsArgs = {
|
|
168466
|
+
input: MercuryAddOrganizationMembershipsInput;
|
|
168467
|
+
};
|
|
168453
168468
|
export type MercuryOriginalProjectStatus = {
|
|
168454
168469
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
168455
168470
|
};
|
|
@@ -171638,6 +171653,15 @@ export type MercuryUserNotificationSettings = {
|
|
|
171638
171653
|
__typename?: 'MercuryUserNotificationSettings';
|
|
171639
171654
|
preferences?: Maybe<Array<MercuryNotificationPreference>>;
|
|
171640
171655
|
};
|
|
171656
|
+
export type MercuryValidateAddOrganizationMembershipsPayload = Payload & {
|
|
171657
|
+
__typename?: 'MercuryValidateAddOrganizationMembershipsPayload';
|
|
171658
|
+
errors?: Maybe<Array<MutationError>>;
|
|
171659
|
+
failures: Array<MercuryOrganizationMembershipValidationFailure>;
|
|
171660
|
+
invalidCount: Scalars['Int']['output'];
|
|
171661
|
+
submittedCount: Scalars['Int']['output'];
|
|
171662
|
+
success: Scalars['Boolean']['output'];
|
|
171663
|
+
validCount: Scalars['Int']['output'];
|
|
171664
|
+
};
|
|
171641
171665
|
export type MercuryValidateFocusAreasForRankingInput = {
|
|
171642
171666
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171643
171667
|
focusAreaIds: Array<Scalars['ID']['input']>;
|