@forge/cli-shared 7.0.0-next.6-experimental-1b788f1 → 7.0.0-next.7
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,27 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 7.0.0-next.
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- 27f557d: Improve forge tunnel debugFunctionHandlers error handling
|
|
8
|
-
- 3b2ffa9: updated the type of appVersion
|
|
9
|
-
- 3b2ffa9: update appVersion type in logs command
|
|
10
|
-
|
|
11
|
-
### Minor Changes
|
|
12
|
-
|
|
13
|
-
- 30d2f61: Add forge container tunnel MVP
|
|
3
|
+
## 7.0.0-next.7
|
|
14
4
|
|
|
15
5
|
### Patch Changes
|
|
16
6
|
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
- 3af315d: Use .cjs extension for the single wrapper
|
|
20
|
-
- 7c02425: Unhide forge build commands
|
|
21
|
-
- Updated dependencies [35165ba]
|
|
22
|
-
- Updated dependencies [fe7e7e9]
|
|
23
|
-
- Updated dependencies [b25d06e]
|
|
24
|
-
- @forge/manifest@9.4.0-next.2-experimental-1b788f1
|
|
7
|
+
- Updated dependencies [01be5cc]
|
|
8
|
+
- @forge/manifest@9.4.0-next.3
|
|
25
9
|
|
|
26
10
|
## 7.0.0-next.6
|
|
27
11
|
|
|
@@ -1070,6 +1070,12 @@ export declare type AgentStudioUpdateCustomActionInput = {
|
|
|
1070
1070
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1071
1071
|
name: Scalars['String']['input'];
|
|
1072
1072
|
};
|
|
1073
|
+
export declare type AgentStudioUpdateCustomActionMappingsPayload = Payload & {
|
|
1074
|
+
__typename?: 'AgentStudioUpdateCustomActionMappingsPayload';
|
|
1075
|
+
customActionList?: Maybe<Array<AgentStudioCustomAction>>;
|
|
1076
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1077
|
+
success: Scalars['Boolean']['output'];
|
|
1078
|
+
};
|
|
1073
1079
|
export declare type AgentStudioUpdateCustomActionPayload = Payload & {
|
|
1074
1080
|
__typename?: 'AgentStudioUpdateCustomActionPayload';
|
|
1075
1081
|
customAction?: Maybe<AgentStudioCustomAction>;
|
|
@@ -6386,6 +6392,7 @@ export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
|
6386
6392
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6387
6393
|
cursor: Scalars['String']['output'];
|
|
6388
6394
|
node?: Maybe<CompassScorecard>;
|
|
6395
|
+
score?: Maybe<CompassScorecardScoreResult>;
|
|
6389
6396
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
6390
6397
|
};
|
|
6391
6398
|
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
@@ -57777,8 +57784,14 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
|
57777
57784
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
57778
57785
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
57779
57786
|
id: Scalars['ID']['output'];
|
|
57787
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
57780
57788
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
57781
57789
|
};
|
|
57790
|
+
export declare type JiraBoardViewStatusColumnMapping = {
|
|
57791
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
57792
|
+
name: Scalars['String']['input'];
|
|
57793
|
+
statusIds: Array<Scalars['ID']['input']>;
|
|
57794
|
+
};
|
|
57782
57795
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
57783
57796
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
57784
57797
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -63573,6 +63586,17 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
63573
63586
|
Absolute = "ABSOLUTE",
|
|
63574
63587
|
Relative = "RELATIVE"
|
|
63575
63588
|
}
|
|
63589
|
+
export declare enum JiraIssueViewUserPreferenceLayoutType {
|
|
63590
|
+
Custom = "CUSTOM",
|
|
63591
|
+
Discussion = "DISCUSSION",
|
|
63592
|
+
Standard = "STANDARD",
|
|
63593
|
+
Wide = "WIDE"
|
|
63594
|
+
}
|
|
63595
|
+
export declare type JiraIssueViewUserPreferredLayout = {
|
|
63596
|
+
__typename?: 'JiraIssueViewUserPreferredLayout';
|
|
63597
|
+
layoutId?: Maybe<Scalars['String']['output']>;
|
|
63598
|
+
layoutType?: Maybe<JiraIssueViewUserPreferenceLayoutType>;
|
|
63599
|
+
};
|
|
63576
63600
|
export declare type JiraIssueWithScenario = {
|
|
63577
63601
|
__typename?: 'JiraIssueWithScenario';
|
|
63578
63602
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63715,6 +63739,7 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
63715
63739
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
63716
63740
|
export declare type JiraJourneyProjectSettings = {
|
|
63717
63741
|
__typename?: 'JiraJourneyProjectSettings';
|
|
63742
|
+
isJourneyEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63718
63743
|
isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63719
63744
|
};
|
|
63720
63745
|
export declare type JiraJourneySettings = {
|
|
@@ -71307,6 +71332,17 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
71307
71332
|
success: Scalars['Boolean']['output'];
|
|
71308
71333
|
view?: Maybe<JiraBoardView>;
|
|
71309
71334
|
};
|
|
71335
|
+
export declare type JiraSetBoardViewStatusColumnMappingInput = {
|
|
71336
|
+
columns: Array<JiraBoardViewStatusColumnMapping>;
|
|
71337
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
71338
|
+
viewId: Scalars['ID']['input'];
|
|
71339
|
+
};
|
|
71340
|
+
export declare type JiraSetBoardViewStatusColumnMappingPayload = Payload & {
|
|
71341
|
+
__typename?: 'JiraSetBoardViewStatusColumnMappingPayload';
|
|
71342
|
+
boardView?: Maybe<JiraBoardView>;
|
|
71343
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71344
|
+
success: Scalars['Boolean']['output'];
|
|
71345
|
+
};
|
|
71310
71346
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
71311
71347
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
71312
71348
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -73327,6 +73363,7 @@ export declare type JiraUserPreferences = {
|
|
|
73327
73363
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
73328
73364
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
73329
73365
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
73366
|
+
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
73330
73367
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
73331
73368
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
73332
73369
|
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
@@ -81941,6 +81978,7 @@ export declare type Mutation = {
|
|
|
81941
81978
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
81942
81979
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
81943
81980
|
agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
|
|
81981
|
+
agentStudio_updateCustomActionMappingsForContainer?: Maybe<AgentStudioUpdateCustomActionMappingsPayload>;
|
|
81944
81982
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
81945
81983
|
appStorage?: Maybe<AppStorageMutation>;
|
|
81946
81984
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -82325,6 +82363,7 @@ export declare type Mutation = {
|
|
|
82325
82363
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
82326
82364
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
82327
82365
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
82366
|
+
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
82328
82367
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
82329
82368
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
82330
82369
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
@@ -82459,6 +82498,7 @@ export declare type Mutation = {
|
|
|
82459
82498
|
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
82460
82499
|
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
82461
82500
|
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82501
|
+
spf_updateDependencyRequester?: Maybe<SpfUpdateDependencyPayload>;
|
|
82462
82502
|
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82463
82503
|
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
82464
82504
|
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
@@ -82607,6 +82647,11 @@ export declare type MutationAgentStudio_UpdateCustomActionArgs = {
|
|
|
82607
82647
|
id: Scalars['ID']['input'];
|
|
82608
82648
|
input: AgentStudioUpdateCustomActionInput;
|
|
82609
82649
|
};
|
|
82650
|
+
export declare type MutationAgentStudio_UpdateCustomActionMappingsForContainerArgs = {
|
|
82651
|
+
cloudId: Scalars['String']['input'];
|
|
82652
|
+
containerId: Scalars['String']['input'];
|
|
82653
|
+
customActionIds: Array<Scalars['ID']['input']>;
|
|
82654
|
+
};
|
|
82610
82655
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
82611
82656
|
input: ApplyPolarisProjectTemplateInput;
|
|
82612
82657
|
};
|
|
@@ -83831,6 +83876,9 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
|
83831
83876
|
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
83832
83877
|
input: JiraSetBoardViewGroupByInput;
|
|
83833
83878
|
};
|
|
83879
|
+
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
83880
|
+
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
83881
|
+
};
|
|
83834
83882
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
83835
83883
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
83836
83884
|
};
|
|
@@ -84224,6 +84272,9 @@ export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
|
84224
84272
|
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
84225
84273
|
input: SpfUpdateDependencyReceivingTeamInput;
|
|
84226
84274
|
};
|
|
84275
|
+
export declare type MutationSpf_UpdateDependencyRequesterArgs = {
|
|
84276
|
+
input: SpfUpdateDependencyRequesterInput;
|
|
84277
|
+
};
|
|
84227
84278
|
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
84228
84279
|
input: SpfUpdateDependencyRequestingTeamInput;
|
|
84229
84280
|
};
|
|
@@ -87924,7 +87975,7 @@ export declare type Query = {
|
|
|
87924
87975
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
87925
87976
|
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
87926
87977
|
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
87927
|
-
spf_dependency?: Maybe<
|
|
87978
|
+
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
87928
87979
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
87929
87980
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
87930
87981
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -91000,13 +91051,23 @@ export declare type RadarConnector = {
|
|
|
91000
91051
|
connectorId: Scalars['ID']['output'];
|
|
91001
91052
|
connectorName?: Maybe<Scalars['String']['output']>;
|
|
91002
91053
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
91054
|
+
hasData?: Maybe<Scalars['Boolean']['output']>;
|
|
91003
91055
|
id: Scalars['ID']['output'];
|
|
91004
91056
|
isEnabled: Scalars['Boolean']['output'];
|
|
91005
91057
|
isHealthy?: Maybe<Scalars['Boolean']['output']>;
|
|
91058
|
+
type?: Maybe<RadarConnectorType>;
|
|
91006
91059
|
};
|
|
91060
|
+
export declare enum RadarConnectorType {
|
|
91061
|
+
Csv = "CSV",
|
|
91062
|
+
Workday = "WORKDAY"
|
|
91063
|
+
}
|
|
91007
91064
|
export declare type RadarConnectorsInput = {
|
|
91008
91065
|
connectorId: Scalars['ID']['input'];
|
|
91066
|
+
connectorName?: InputMaybe<Scalars['String']['input']>;
|
|
91067
|
+
connectorType?: InputMaybe<Scalars['String']['input']>;
|
|
91068
|
+
hasData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91009
91069
|
isEnabled: Scalars['Boolean']['input'];
|
|
91070
|
+
type?: InputMaybe<RadarConnectorType>;
|
|
91010
91071
|
};
|
|
91011
91072
|
export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
91012
91073
|
__typename?: 'RadarCustomFieldDefinition';
|
|
@@ -96791,8 +96852,9 @@ export declare type SpfCommentConnection = {
|
|
|
96791
96852
|
export declare type SpfCommentEdge = {
|
|
96792
96853
|
__typename?: 'SpfCommentEdge';
|
|
96793
96854
|
cursor: Scalars['String']['output'];
|
|
96794
|
-
node?: Maybe<
|
|
96855
|
+
node?: Maybe<SpfCommentResult>;
|
|
96795
96856
|
};
|
|
96857
|
+
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
96796
96858
|
export declare type SpfCreateCommentInput = {
|
|
96797
96859
|
data: Scalars['String']['input'];
|
|
96798
96860
|
dependencyId: Scalars['ID']['input'];
|
|
@@ -96878,8 +96940,9 @@ export declare type SpfDependencyConnection = {
|
|
|
96878
96940
|
export declare type SpfDependencyEdge = {
|
|
96879
96941
|
__typename?: 'SpfDependencyEdge';
|
|
96880
96942
|
cursor: Scalars['String']['output'];
|
|
96881
|
-
node?: Maybe<
|
|
96943
|
+
node?: Maybe<SpfDependencyResult>;
|
|
96882
96944
|
};
|
|
96945
|
+
export declare type SpfDependencyResult = QueryError | SpfDependency;
|
|
96883
96946
|
export declare enum SpfDependencyStatus {
|
|
96884
96947
|
Accepted = "ACCEPTED",
|
|
96885
96948
|
Canceled = "CANCELED",
|
|
@@ -96914,8 +96977,9 @@ export declare type SpfRelatedContentConnection = {
|
|
|
96914
96977
|
export declare type SpfRelatedContentEdge = {
|
|
96915
96978
|
__typename?: 'SpfRelatedContentEdge';
|
|
96916
96979
|
cursor: Scalars['String']['output'];
|
|
96917
|
-
node?: Maybe<
|
|
96980
|
+
node?: Maybe<SpfRelatedContentResult>;
|
|
96918
96981
|
};
|
|
96982
|
+
export declare type SpfRelatedContentResult = QueryError | SpfRelatedContent;
|
|
96919
96983
|
export declare type SpfTargetDate = {
|
|
96920
96984
|
__typename?: 'SpfTargetDate';
|
|
96921
96985
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -96974,6 +97038,10 @@ export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
|
96974
97038
|
id: Scalars['ID']['input'];
|
|
96975
97039
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96976
97040
|
};
|
|
97041
|
+
export declare type SpfUpdateDependencyRequesterInput = {
|
|
97042
|
+
id: Scalars['ID']['input'];
|
|
97043
|
+
requesterId: Scalars['String']['input'];
|
|
97044
|
+
};
|
|
96977
97045
|
export declare type SpfUpdateDependencyRequestingTeamInput = {
|
|
96978
97046
|
id: Scalars['ID']['input'];
|
|
96979
97047
|
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|