@forge/cli-shared 8.10.0-next.13 → 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 -0
- package/out/graphql/graphql-types.d.ts +23 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +24 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +25 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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']>;
|
|
@@ -74838,6 +74844,13 @@ export declare type JiraJqlFunction = {
|
|
|
74838
74844
|
isList?: Maybe<Scalars['Boolean']['output']>;
|
|
74839
74845
|
value?: Maybe<Scalars['String']['output']>;
|
|
74840
74846
|
};
|
|
74847
|
+
export declare type JiraJqlFunctionFieldValue = JiraJqlFieldValue & {
|
|
74848
|
+
__typename?: 'JiraJqlFunctionFieldValue';
|
|
74849
|
+
displayName: Scalars['String']['output'];
|
|
74850
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
74851
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
74852
|
+
jqlTerm: Scalars['String']['output'];
|
|
74853
|
+
};
|
|
74841
74854
|
export declare type JiraJqlFunctionProcessingStatus = {
|
|
74842
74855
|
__typename?: 'JiraJqlFunctionProcessingStatus';
|
|
74843
74856
|
app?: Maybe<Scalars['String']['output']>;
|
|
@@ -97030,6 +97043,7 @@ export declare type Mutation = {
|
|
|
97030
97043
|
agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
|
|
97031
97044
|
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
97032
97045
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
97046
|
+
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
|
|
97033
97047
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
97034
97048
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
97035
97049
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
@@ -97972,6 +97986,10 @@ export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
|
|
|
97972
97986
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
97973
97987
|
id: Scalars['ID']['input'];
|
|
97974
97988
|
};
|
|
97989
|
+
export declare type MutationAgentStudio_DeleteWidgetArgs = {
|
|
97990
|
+
cloudId: Scalars['String']['input'];
|
|
97991
|
+
widgetId: Scalars['ID']['input'];
|
|
97992
|
+
};
|
|
97975
97993
|
export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
97976
97994
|
id: Scalars['ID']['input'];
|
|
97977
97995
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
@@ -135592,6 +135610,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
135592
135610
|
id: Scalars['ID']['output'];
|
|
135593
135611
|
isArchived: Scalars['Boolean']['output'];
|
|
135594
135612
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
135613
|
+
jiraAlignItems?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection>;
|
|
135595
135614
|
key: Scalars['String']['output'];
|
|
135596
135615
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
135597
135616
|
metricTargets?: Maybe<TownsquareMetricTargetConnection>;
|
|
@@ -135636,6 +135655,10 @@ export declare type TownsquareGoalHighlightsArgs = {
|
|
|
135636
135655
|
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
135637
135656
|
type?: InputMaybe<TownsquareHighlightType>;
|
|
135638
135657
|
};
|
|
135658
|
+
export declare type TownsquareGoalJiraAlignItemsArgs = {
|
|
135659
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135661
|
+
};
|
|
135639
135662
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
135640
135663
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
135641
135664
|
first?: InputMaybe<Scalars['Int']['input']>;
|