@forge/cli-shared 9.3.0-next.14-experimental-5f9d93a → 9.3.0-next.15
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 +2 -25
- package/out/graphql/graphql-types.d.ts +29 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.3.0-next.
|
|
3
|
+
## 9.3.0-next.15
|
|
4
4
|
|
|
5
5
|
### Minor 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
|
|
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
|
|
7
|
+
- 52e074e: Global App integration + Trigger / Action modules
|
|
31
8
|
|
|
32
9
|
## 9.3.0-next.14
|
|
33
10
|
|
|
@@ -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'];
|
|
@@ -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
|
};
|