@forge/cli-shared 9.3.0-next.14-experimental-5f9d93a → 9.3.0-next.16
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 +7 -24
- package/out/graphql/graphql-types.d.ts +40 -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 +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.3.0-next.
|
|
3
|
+
## 9.3.0-next.16
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
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
|
|
7
|
+
- 905d8c5: Design changes, hint to module add and a spinner when loading
|
|
12
8
|
|
|
13
|
-
|
|
9
|
+
## 9.3.0-next.15
|
|
14
10
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
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
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 52e074e: Global App integration + Trigger / Action modules
|
|
31
14
|
|
|
32
15
|
## 9.3.0-next.14
|
|
33
16
|
|
|
@@ -2504,6 +2504,15 @@ export declare enum AvpFilterOperator {
|
|
|
2504
2504
|
And = "AND",
|
|
2505
2505
|
Or = "OR"
|
|
2506
2506
|
}
|
|
2507
|
+
export type AvpForgeExtensionContextInput = {
|
|
2508
|
+
dashboardId: Scalars['ID']['input'];
|
|
2509
|
+
widgetId?: InputMaybe<Scalars['ID']['input']>;
|
|
2510
|
+
};
|
|
2511
|
+
export type AvpForgeExtensionDataInput = {
|
|
2512
|
+
context: AvpForgeExtensionContextInput;
|
|
2513
|
+
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
2514
|
+
type: Scalars['String']['input'];
|
|
2515
|
+
};
|
|
2507
2516
|
export type AvpGadgetMigrationStatus = {
|
|
2508
2517
|
__typename?: 'AVPGadgetMigrationStatus';
|
|
2509
2518
|
gadgetId: Scalars['ID']['output'];
|
|
@@ -2952,6 +2961,22 @@ export declare enum AvpSearchPermissionType {
|
|
|
2952
2961
|
Read = "READ",
|
|
2953
2962
|
Write = "WRITE"
|
|
2954
2963
|
}
|
|
2964
|
+
export type AvpSignForgeContextTokenInput = {
|
|
2965
|
+
appVersion: Scalars['String']['input'];
|
|
2966
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
2967
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2968
|
+
extensionData: AvpForgeExtensionDataInput;
|
|
2969
|
+
extensionId: Scalars['ID']['input'];
|
|
2970
|
+
moduleKey: Scalars['String']['input'];
|
|
2971
|
+
};
|
|
2972
|
+
export type AvpSignForgeContextTokenPayload = Payload & {
|
|
2973
|
+
__typename?: 'AVPSignForgeContextTokenPayload';
|
|
2974
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2975
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
2976
|
+
extensionId?: Maybe<Scalars['ID']['output']>;
|
|
2977
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
2978
|
+
success: Scalars['Boolean']['output'];
|
|
2979
|
+
};
|
|
2955
2980
|
export type AvpStarDashboardInput = {
|
|
2956
2981
|
dashboardAri: Scalars['ID']['input'];
|
|
2957
2982
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -162908,7 +162933,6 @@ export type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
|
162908
162933
|
export type MercuryAsk = Node & {
|
|
162909
162934
|
__typename?: 'MercuryAsk';
|
|
162910
162935
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
162911
|
-
askStatus: MercuryAskStatusEnum;
|
|
162912
162936
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
162913
162937
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
162914
162938
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -162933,6 +162957,7 @@ export type MercuryAsk = Node & {
|
|
|
162933
162957
|
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
162934
162958
|
receivingTeam?: Maybe<TeamV2>;
|
|
162935
162959
|
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
162960
|
+
status: MercuryAskStatus;
|
|
162936
162961
|
submitter?: Maybe<User>;
|
|
162937
162962
|
submitterId: Scalars['ID']['output'];
|
|
162938
162963
|
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
@@ -163113,8 +163138,8 @@ export type MercuryAskActivityUpdatedProposedDate = MercuryAskActivityUpdatedVal
|
|
|
163113
163138
|
export type MercuryAskActivityUpdatedStatus = MercuryAskActivityUpdatedValue & {
|
|
163114
163139
|
__typename?: 'MercuryAskActivityUpdatedStatus';
|
|
163115
163140
|
attribute: MercuryAskActivityAttribute;
|
|
163116
|
-
newValue?: Maybe<
|
|
163117
|
-
oldValue?: Maybe<
|
|
163141
|
+
newValue?: Maybe<MercuryAskStatus>;
|
|
163142
|
+
oldValue?: Maybe<MercuryAskStatus>;
|
|
163118
163143
|
};
|
|
163119
163144
|
export type MercuryAskActivityUpdatedString = MercuryAskActivityUpdatedValue & {
|
|
163120
163145
|
__typename?: 'MercuryAskActivityUpdatedString';
|
|
@@ -163239,7 +163264,7 @@ export declare enum MercuryAskPriority {
|
|
|
163239
163264
|
Medium = "MEDIUM"
|
|
163240
163265
|
}
|
|
163241
163266
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
163242
|
-
export declare enum
|
|
163267
|
+
export declare enum MercuryAskStatus {
|
|
163243
163268
|
Accepted = "ACCEPTED",
|
|
163244
163269
|
Canceled = "CANCELED",
|
|
163245
163270
|
Deferred = "DEFERRED",
|
|
@@ -163256,13 +163281,13 @@ export type MercuryAskStatusUpdate = {
|
|
|
163256
163281
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
163257
163282
|
description?: Maybe<Scalars['String']['output']>;
|
|
163258
163283
|
id: Scalars['ID']['output'];
|
|
163259
|
-
newAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163260
163284
|
newProposedBy?: Maybe<User>;
|
|
163261
163285
|
newProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163286
|
+
newStatus?: Maybe<MercuryAskStatus>;
|
|
163262
163287
|
newTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163263
|
-
oldAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163264
163288
|
oldProposedBy?: Maybe<User>;
|
|
163265
163289
|
oldProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163290
|
+
oldStatus?: Maybe<MercuryAskStatus>;
|
|
163266
163291
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163267
163292
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163268
163293
|
updatedBy?: Maybe<User>;
|
|
@@ -163285,8 +163310,8 @@ export type MercuryAskStatusUpdateEdge = {
|
|
|
163285
163310
|
};
|
|
163286
163311
|
export type MercuryAskStatusUpdateResult = MercuryAskStatusUpdate | QueryError;
|
|
163287
163312
|
export type MercuryAskStatusUpdateStatusInput = {
|
|
163288
|
-
askStatus: MercuryAskStatusEnum;
|
|
163289
163313
|
id: Scalars['ID']['input'];
|
|
163314
|
+
status: MercuryAskStatus;
|
|
163290
163315
|
};
|
|
163291
163316
|
export type MercuryAskStatusUpdateTargetDateInput = {
|
|
163292
163317
|
id: Scalars['ID']['input'];
|
|
@@ -163309,7 +163334,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
163309
163334
|
export type MercuryAskTransition = {
|
|
163310
163335
|
__typename?: 'MercuryAskTransition';
|
|
163311
163336
|
askId: Scalars['ID']['output'];
|
|
163312
|
-
|
|
163337
|
+
status?: Maybe<MercuryAskStatus>;
|
|
163313
163338
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
163314
163339
|
};
|
|
163315
163340
|
export type MercuryAskUpdatedField = {
|
|
@@ -164156,7 +164181,6 @@ export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
|
164156
164181
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
164157
164182
|
};
|
|
164158
164183
|
export type MercuryCreateAskInput = {
|
|
164159
|
-
askStatus: MercuryAskStatusEnum;
|
|
164160
164184
|
cloudId: Scalars['ID']['input'];
|
|
164161
164185
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164162
164186
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164166,6 +164190,7 @@ export type MercuryCreateAskInput = {
|
|
|
164166
164190
|
priority: MercuryAskPriority;
|
|
164167
164191
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164168
164192
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164193
|
+
status: MercuryAskStatus;
|
|
164169
164194
|
submitterId: Scalars['ID']['input'];
|
|
164170
164195
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164171
164196
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164173,13 +164198,12 @@ export type MercuryCreateAskInput = {
|
|
|
164173
164198
|
};
|
|
164174
164199
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
164175
164200
|
askId: Scalars['ID']['input'];
|
|
164176
|
-
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
164177
164201
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164178
164202
|
proposedDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164203
|
+
status?: InputMaybe<MercuryAskStatus>;
|
|
164179
164204
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164180
164205
|
};
|
|
164181
164206
|
export type MercuryCreateAsksAskInput = {
|
|
164182
|
-
askStatus: MercuryAskStatusEnum;
|
|
164183
164207
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164184
164208
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
164185
164209
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164189,6 +164213,7 @@ export type MercuryCreateAsksAskInput = {
|
|
|
164189
164213
|
priority: MercuryAskPriority;
|
|
164190
164214
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164191
164215
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164216
|
+
status: MercuryAskStatus;
|
|
164192
164217
|
submitterId: Scalars['ID']['input'];
|
|
164193
164218
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164194
164219
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -172457,6 +172482,7 @@ export type Mutation = {
|
|
|
172457
172482
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
172458
172483
|
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
172459
172484
|
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
172485
|
+
avp_signForgeContextToken?: Maybe<AvpSignForgeContextTokenPayload>;
|
|
172460
172486
|
avp_starDashboard?: Maybe<AvpStarDashboardPayload>;
|
|
172461
172487
|
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
172462
172488
|
avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
|
|
@@ -175009,6 +175035,9 @@ export type MutationAvp_RemoveDashboardElementArgs = {
|
|
|
175009
175035
|
export type MutationAvp_RemoveDashboardRowArgs = {
|
|
175010
175036
|
input: AvpRemoveDashboardRowInput;
|
|
175011
175037
|
};
|
|
175038
|
+
export type MutationAvp_SignForgeContextTokenArgs = {
|
|
175039
|
+
input: AvpSignForgeContextTokenInput;
|
|
175040
|
+
};
|
|
175012
175041
|
export type MutationAvp_StarDashboardArgs = {
|
|
175013
175042
|
input: AvpStarDashboardInput;
|
|
175014
175043
|
};
|