@forge/cli-shared 8.10.0-next.12-experimental-f76634b → 8.10.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 +6 -23
- package/out/graphql/graphql-types.d.ts +16 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +14 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.10.0-next.
|
|
3
|
+
## 8.10.0-next.14
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- 895128b: Added shard option to all show commands
|
|
9
|
-
- 84a6923: Added new webtrigger create subcommand
|
|
7
|
+
- bc5760d: Add delete subcommand to webtrigger
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
## 8.10.0-next.13
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
-
- 949f9df: improve docker compose startup failure error message
|
|
17
|
-
- 128d1f8: Error handling logic for install upgrade code
|
|
18
|
-
- 0e50442: Update Developer Terms link
|
|
19
|
-
- 0c4a82e:
|
|
20
|
-
- Updated dependencies [559c541]
|
|
21
|
-
- Updated dependencies [b5f0775]
|
|
22
|
-
- Updated dependencies [2f0c3c2]
|
|
23
|
-
- Updated dependencies [00eaa35]
|
|
24
|
-
- Updated dependencies [b9cefff]
|
|
25
|
-
- Updated dependencies [b5f0775]
|
|
26
|
-
- Updated dependencies [069288e]
|
|
27
|
-
- Updated dependencies [d317f2e]
|
|
28
|
-
- Updated dependencies [bf0e0f6]
|
|
29
|
-
- Updated dependencies [bb6e58a]
|
|
30
|
-
- @forge/manifest@11.1.0-next.6-experimental-f76634b
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- bdec87e: Add list subcommand to webtrigger
|
|
31
14
|
|
|
32
15
|
## 8.10.0-next.12
|
|
33
16
|
|
|
@@ -2995,6 +2995,12 @@ export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
|
2995
2995
|
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
2996
2996
|
success: Scalars['Boolean']['output'];
|
|
2997
2997
|
};
|
|
2998
|
+
export declare type AgentStudioDeleteWidgetPayload = Payload & {
|
|
2999
|
+
__typename?: 'AgentStudioDeleteWidgetPayload';
|
|
3000
|
+
deletedWidgetId?: Maybe<Scalars['ID']['output']>;
|
|
3001
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3002
|
+
success: Scalars['Boolean']['output'];
|
|
3003
|
+
};
|
|
2998
3004
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
2999
3005
|
__typename?: 'AgentStudioEmailChannel';
|
|
3000
3006
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -97037,6 +97043,7 @@ export declare type Mutation = {
|
|
|
97037
97043
|
agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
|
|
97038
97044
|
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
97039
97045
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
97046
|
+
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
|
|
97040
97047
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
97041
97048
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
97042
97049
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
@@ -97979,6 +97986,10 @@ export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
|
|
|
97979
97986
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
97980
97987
|
id: Scalars['ID']['input'];
|
|
97981
97988
|
};
|
|
97989
|
+
export declare type MutationAgentStudio_DeleteWidgetArgs = {
|
|
97990
|
+
cloudId: Scalars['String']['input'];
|
|
97991
|
+
widgetId: Scalars['ID']['input'];
|
|
97992
|
+
};
|
|
97982
97993
|
export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
97983
97994
|
id: Scalars['ID']['input'];
|
|
97984
97995
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
@@ -135599,6 +135610,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
135599
135610
|
id: Scalars['ID']['output'];
|
|
135600
135611
|
isArchived: Scalars['Boolean']['output'];
|
|
135601
135612
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
135613
|
+
jiraAlignItems?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection>;
|
|
135602
135614
|
key: Scalars['String']['output'];
|
|
135603
135615
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
135604
135616
|
metricTargets?: Maybe<TownsquareMetricTargetConnection>;
|
|
@@ -135643,6 +135655,10 @@ export declare type TownsquareGoalHighlightsArgs = {
|
|
|
135643
135655
|
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
135644
135656
|
type?: InputMaybe<TownsquareHighlightType>;
|
|
135645
135657
|
};
|
|
135658
|
+
export declare type TownsquareGoalJiraAlignItemsArgs = {
|
|
135659
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135661
|
+
};
|
|
135646
135662
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
135647
135663
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
135648
135664
|
first?: InputMaybe<Scalars['Int']['input']>;
|