@forge/cli-shared 8.9.0-next.13 → 8.9.0-next.13-experimental-003d118
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
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.9.0-next.13-experimental-003d118
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5efbe5a: Added new watch flag to show services command
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 49bbec0: Display local port by default when tunneling
|
|
12
|
+
- 6ab8f99: Re-order dependency between sidecar container and app container so the sidecar is ready for app container bootstrap code
|
|
13
|
+
- ef033a5: support container identity when tunneling
|
|
14
|
+
- 118f8af: switch `contexts` to `compatibility` for Forge create operation
|
|
15
|
+
- aaf8a03: forge tunnel with containers: delete auto generated docker compose files upon failing to startup
|
|
16
|
+
- Updated dependencies [0a3f5d5]
|
|
17
|
+
- Updated dependencies [9a6d346]
|
|
18
|
+
- Updated dependencies [260eb24]
|
|
19
|
+
- Updated dependencies [3228cf0]
|
|
20
|
+
- Updated dependencies [8962080]
|
|
21
|
+
- Updated dependencies [f0a5a03]
|
|
22
|
+
- Updated dependencies [d00ef59]
|
|
23
|
+
- Updated dependencies [78efec7]
|
|
24
|
+
- @forge/manifest@11.0.0-next.7-experimental-003d118
|
|
25
|
+
|
|
3
26
|
## 8.9.0-next.13
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -83145,6 +83145,19 @@ export declare type JiraUpdateCustomBackgroundPayload = Payload & {
|
|
|
83145
83145
|
errors?: Maybe<Array<MutationError>>;
|
|
83146
83146
|
success: Scalars['Boolean']['output'];
|
|
83147
83147
|
};
|
|
83148
|
+
export declare type JiraUpdateCustomFieldInput = {
|
|
83149
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
83150
|
+
fieldId: Scalars['String']['input'];
|
|
83151
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
83152
|
+
name: Scalars['String']['input'];
|
|
83153
|
+
searcherKey?: InputMaybe<Scalars['String']['input']>;
|
|
83154
|
+
};
|
|
83155
|
+
export declare type JiraUpdateCustomFieldPayload = Payload & {
|
|
83156
|
+
__typename?: 'JiraUpdateCustomFieldPayload';
|
|
83157
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83158
|
+
field?: Maybe<JiraIssueFieldConfig>;
|
|
83159
|
+
success: Scalars['Boolean']['output'];
|
|
83160
|
+
};
|
|
83148
83161
|
export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
83149
83162
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
83150
83163
|
editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
|
|
@@ -94464,6 +94477,7 @@ export declare type Mutation = {
|
|
|
94464
94477
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
94465
94478
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
94466
94479
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
94480
|
+
agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
94467
94481
|
agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
|
|
94468
94482
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
94469
94483
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
@@ -94940,6 +94954,7 @@ export declare type Mutation = {
|
|
|
94940
94954
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
94941
94955
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
94942
94956
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
94957
|
+
jira_updateCustomField?: Maybe<JiraUpdateCustomFieldPayload>;
|
|
94943
94958
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
94944
94959
|
jira_updateFieldToFieldSchemeAssociations?: Maybe<JiraFieldToFieldSchemeAssociationsPayload>;
|
|
94945
94960
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
@@ -95328,6 +95343,12 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
95328
95343
|
cloudId: Scalars['String']['input'];
|
|
95329
95344
|
input: AgentStudioCreateAgentInput;
|
|
95330
95345
|
};
|
|
95346
|
+
export declare type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
95347
|
+
cloudId: Scalars['String']['input'];
|
|
95348
|
+
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
95349
|
+
productType: AgentStudioProductType;
|
|
95350
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
95351
|
+
};
|
|
95331
95352
|
export declare type MutationAgentStudio_CreateBatchEvaluationJobArgs = {
|
|
95332
95353
|
cloudId: Scalars['String']['input'];
|
|
95333
95354
|
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
@@ -96988,6 +97009,10 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
|
96988
97009
|
export declare type MutationJira_UnarchiveIssueArgs = {
|
|
96989
97010
|
input: JiraIssueUnarchiveInput;
|
|
96990
97011
|
};
|
|
97012
|
+
export declare type MutationJira_UpdateCustomFieldArgs = {
|
|
97013
|
+
cloudId: Scalars['ID']['input'];
|
|
97014
|
+
input: JiraUpdateCustomFieldInput;
|
|
97015
|
+
};
|
|
96991
97016
|
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
96992
97017
|
cloudId: Scalars['ID']['input'];
|
|
96993
97018
|
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
@@ -100806,6 +100831,7 @@ export declare type Query = {
|
|
|
100806
100831
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
100807
100832
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
100808
100833
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
100834
|
+
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
100809
100835
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
100810
100836
|
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
|
|
100811
100837
|
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
|
|
@@ -100817,7 +100843,6 @@ export declare type Query = {
|
|
|
100817
100843
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
100818
100844
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
100819
100845
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
100820
|
-
agentStudio_getAgentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
100821
100846
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
100822
100847
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
100823
100848
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -101216,6 +101241,7 @@ export declare type Query = {
|
|
|
101216
101241
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
101217
101242
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
101218
101243
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
101244
|
+
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
101219
101245
|
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
101220
101246
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
101221
101247
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
@@ -101827,6 +101853,9 @@ export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
101827
101853
|
cloudId: Scalars['String']['input'];
|
|
101828
101854
|
id: Scalars['ID']['input'];
|
|
101829
101855
|
};
|
|
101856
|
+
export declare type QueryAgentStudio_AgentsByIdsArgs = {
|
|
101857
|
+
ids: Array<Scalars['ID']['input']>;
|
|
101858
|
+
};
|
|
101830
101859
|
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
101831
101860
|
cloudId: Scalars['String']['input'];
|
|
101832
101861
|
jobId: Scalars['ID']['input'];
|
|
@@ -101901,9 +101930,6 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
101901
101930
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
101902
101931
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
101903
101932
|
};
|
|
101904
|
-
export declare type QueryAgentStudio_GetAgentsByIdsArgs = {
|
|
101905
|
-
ids: Array<Scalars['ID']['input']>;
|
|
101906
|
-
};
|
|
101907
101933
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
101908
101934
|
cloudId: Scalars['String']['input'];
|
|
101909
101935
|
externalReference: Scalars['String']['input'];
|
|
@@ -103730,6 +103756,9 @@ export declare type QueryGoals_ByIdArgs = {
|
|
|
103730
103756
|
export declare type QueryGoals_ByIdsArgs = {
|
|
103731
103757
|
goalIds: Array<Scalars['ID']['input']>;
|
|
103732
103758
|
};
|
|
103759
|
+
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
103760
|
+
goalTypeId: Scalars['ID']['input'];
|
|
103761
|
+
};
|
|
103733
103762
|
export declare type QueryGoals_MetricSearchArgs = {
|
|
103734
103763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103735
103764
|
containerId: Scalars['ID']['input'];
|