@forge/cli-shared 8.5.0-next.8 → 8.5.0
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.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 924b093: Allow installation of previous major versions
|
|
8
|
+
- be30715: Add integration tests for developer space flow, comment T&C flow
|
|
9
|
+
- a209a3d: integrate with rovo dev cli
|
|
10
|
+
- 2a0dadd: Remove Node18 runtime
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- b262081: Minor bug fix with handling containers image list pagination command
|
|
15
|
+
- 725a653: Don't collect metadata from symlinked external dependencies
|
|
16
|
+
- a0e621c: Error handling, renaming few error messages in developer space flow
|
|
17
|
+
- 7b15cc4: Hide TypeScript bundler behind an EAP
|
|
18
|
+
- bda7c8d: Send 'app packaged' analytics event
|
|
19
|
+
- Updated dependencies [7e13ccd]
|
|
20
|
+
- Updated dependencies [acb3247]
|
|
21
|
+
- Updated dependencies [17dfed4]
|
|
22
|
+
- Updated dependencies [2a0dadd]
|
|
23
|
+
- Updated dependencies [d3b9bde]
|
|
24
|
+
- @forge/manifest@10.4.0
|
|
25
|
+
|
|
3
26
|
## 8.5.0-next.8
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -2066,6 +2066,7 @@ export declare type AgentStudioAgentPermissions = {
|
|
|
2066
2066
|
};
|
|
2067
2067
|
export declare type AgentStudioAgentQueryInput = {
|
|
2068
2068
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2069
|
+
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2069
2070
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2070
2071
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2071
2072
|
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -2725,6 +2726,7 @@ export declare enum ApiGroup {
|
|
|
2725
2726
|
DevopsToolchain = "DEVOPS_TOOLCHAIN",
|
|
2726
2727
|
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY",
|
|
2727
2728
|
Forge = "FORGE",
|
|
2729
|
+
Goals = "GOALS",
|
|
2728
2730
|
GuardDetect = "GUARD_DETECT",
|
|
2729
2731
|
Help = "HELP",
|
|
2730
2732
|
Identity = "IDENTITY",
|
|
@@ -2732,6 +2734,7 @@ export declare enum ApiGroup {
|
|
|
2732
2734
|
Jira = "JIRA",
|
|
2733
2735
|
Papi = "PAPI",
|
|
2734
2736
|
Polaris = "POLARIS",
|
|
2737
|
+
Projects = "PROJECTS",
|
|
2735
2738
|
ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
|
|
2736
2739
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
2737
2740
|
Teams = "TEAMS",
|
|
@@ -4656,8 +4659,10 @@ export declare type AssetsDmObjectsListDataColumn = {
|
|
|
4656
4659
|
__typename?: 'AssetsDMObjectsListDataColumn';
|
|
4657
4660
|
columnName: Scalars['String']['output'];
|
|
4658
4661
|
columnType: AssetsDmObjectsListColumnType;
|
|
4659
|
-
|
|
4662
|
+
isAttribute: Scalars['Boolean']['output'];
|
|
4663
|
+
isDataSource: Scalars['Boolean']['output'];
|
|
4660
4664
|
isPrimary: Scalars['Boolean']['output'];
|
|
4665
|
+
rawColumnType: AssetsDmObjectsListRawColumnType;
|
|
4661
4666
|
};
|
|
4662
4667
|
export declare type AssetsDmObjectsListDataRow = {
|
|
4663
4668
|
__typename?: 'AssetsDMObjectsListDataRow';
|
|
@@ -4836,6 +4841,24 @@ export declare type AssetsDmSavedSearch = {
|
|
|
4836
4841
|
resultCount: Scalars['Int']['output'];
|
|
4837
4842
|
savedSearchId: Scalars['ID']['output'];
|
|
4838
4843
|
};
|
|
4844
|
+
export declare type AssetsDmSavedSearchInput = {
|
|
4845
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
4846
|
+
};
|
|
4847
|
+
export declare type AssetsDmSavedSearchesCreateArgs = {
|
|
4848
|
+
cloudId: Scalars['ID']['input'];
|
|
4849
|
+
isExportToAsset?: Scalars['Boolean']['input'];
|
|
4850
|
+
isPublic?: Scalars['Boolean']['input'];
|
|
4851
|
+
name: Scalars['String']['input'];
|
|
4852
|
+
objectId: Scalars['ID']['input'];
|
|
4853
|
+
searchInput: AssetsDmSavedSearchInput;
|
|
4854
|
+
workspaceId: Scalars['ID']['input'];
|
|
4855
|
+
};
|
|
4856
|
+
export declare type AssetsDmSavedSearchesCreateResponse = {
|
|
4857
|
+
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
4858
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4859
|
+
message: Scalars['String']['output'];
|
|
4860
|
+
returnValue: Scalars['String']['output'];
|
|
4861
|
+
};
|
|
4839
4862
|
export declare type AssetsDmSavedSearchesDeleteArgs = {
|
|
4840
4863
|
cloudId: Scalars['ID']['input'];
|
|
4841
4864
|
savedSearchId: Scalars['ID']['input'];
|
|
@@ -21153,6 +21176,7 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
21153
21176
|
export declare type CsmAiByodContent = {
|
|
21154
21177
|
__typename?: 'CsmAiByodContent';
|
|
21155
21178
|
datasourceId: Scalars['String']['output'];
|
|
21179
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
21156
21180
|
workspaceName: Scalars['String']['output'];
|
|
21157
21181
|
workspaceUrl: Scalars['String']['output'];
|
|
21158
21182
|
};
|
|
@@ -30354,7 +30378,8 @@ export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
|
30354
30378
|
Deleting = "DELETING",
|
|
30355
30379
|
Provisioning = "PROVISIONING",
|
|
30356
30380
|
Registered = "REGISTERED",
|
|
30357
|
-
Suspended = "SUSPENDED"
|
|
30381
|
+
Suspended = "SUSPENDED",
|
|
30382
|
+
ToolConfigurationPending = "TOOL_CONFIGURATION_PENDING"
|
|
30358
30383
|
}
|
|
30359
30384
|
export declare enum GraphIntegrationMcpAdminManagementMcpServerType {
|
|
30360
30385
|
Http = "HTTP",
|
|
@@ -81092,6 +81117,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
81092
81117
|
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
81093
81118
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
81094
81119
|
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
81120
|
+
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
81095
81121
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
81096
81122
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
81097
81123
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
@@ -81163,6 +81189,12 @@ export declare type KnowledgeDiscoveryQueryApiPopularSearchQueryArgs = {
|
|
|
81163
81189
|
cloudId: Scalars['String']['input'];
|
|
81164
81190
|
searchQuery: Scalars['String']['input'];
|
|
81165
81191
|
};
|
|
81192
|
+
export declare type KnowledgeDiscoveryQueryApiQuerySuggestionsArgs = {
|
|
81193
|
+
cloudId: Scalars['String']['input'];
|
|
81194
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
81195
|
+
query: Scalars['String']['input'];
|
|
81196
|
+
searchHistory: Array<Scalars['String']['input']>;
|
|
81197
|
+
};
|
|
81166
81198
|
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
81167
81199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81168
81200
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -81206,6 +81238,11 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
|
81206
81238
|
cloudId: Scalars['String']['input'];
|
|
81207
81239
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
81208
81240
|
};
|
|
81241
|
+
export declare type KnowledgeDiscoveryQuerySuggestions = {
|
|
81242
|
+
__typename?: 'KnowledgeDiscoveryQuerySuggestions';
|
|
81243
|
+
suggestions: Array<Scalars['String']['output']>;
|
|
81244
|
+
};
|
|
81245
|
+
export declare type KnowledgeDiscoveryQuerySuggestionsResult = KnowledgeDiscoveryQuerySuggestions | QueryError;
|
|
81209
81246
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
81210
81247
|
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
81211
81248
|
action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
|
|
@@ -87749,6 +87786,7 @@ export declare type Mutation = {
|
|
|
87749
87786
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
87750
87787
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
87751
87788
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
87789
|
+
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
87752
87790
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
87753
87791
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
87754
87792
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
@@ -88517,6 +88555,9 @@ export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
|
88517
88555
|
input: AssetsDmObjectTagCreateInput;
|
|
88518
88556
|
workspaceId: Scalars['ID']['input'];
|
|
88519
88557
|
};
|
|
88558
|
+
export declare type MutationAssetsDm_CreateSavedSearchArgs = {
|
|
88559
|
+
args: AssetsDmSavedSearchesCreateArgs;
|
|
88560
|
+
};
|
|
88520
88561
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
88521
88562
|
cloudId: Scalars['ID']['input'];
|
|
88522
88563
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93489,6 +93530,7 @@ export declare type Query = {
|
|
|
93489
93530
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
93490
93531
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
93491
93532
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
93533
|
+
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
93492
93534
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
93493
93535
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
93494
93536
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
@@ -94740,6 +94782,10 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
94740
94782
|
cloudId: Scalars['ID']['input'];
|
|
94741
94783
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
94742
94784
|
};
|
|
94785
|
+
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
94786
|
+
cloudId: Scalars['ID']['input'];
|
|
94787
|
+
contentId: Scalars['ID']['input'];
|
|
94788
|
+
};
|
|
94743
94789
|
export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
94744
94790
|
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
94745
94791
|
objectType: KnowledgeGraphObjectType;
|
|
@@ -108600,6 +108646,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
108600
108646
|
node: TrelloCardUpdated;
|
|
108601
108647
|
};
|
|
108602
108648
|
export declare enum TrelloCardExternalSource {
|
|
108649
|
+
BrowserExtension = "BROWSER_EXTENSION",
|
|
108603
108650
|
Email = "EMAIL",
|
|
108604
108651
|
Loom = "LOOM",
|
|
108605
108652
|
Msteams = "MSTEAMS",
|
|
@@ -109696,7 +109743,6 @@ export declare type TrelloMutationApi = {
|
|
|
109696
109743
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
109697
109744
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
109698
109745
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
109699
|
-
updateApplicationBasicInformation?: Maybe<TrelloUpdateApplicationBasicInformationPayload>;
|
|
109700
109746
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
109701
109747
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
109702
109748
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
@@ -109787,9 +109833,6 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
109787
109833
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
109788
109834
|
input: TrelloUpdateAiRuleInput;
|
|
109789
109835
|
};
|
|
109790
|
-
export declare type TrelloMutationApiUpdateApplicationBasicInformationArgs = {
|
|
109791
|
-
input: TrelloUpdateApplicationBasicInformationInput;
|
|
109792
|
-
};
|
|
109793
109836
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
109794
109837
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
109795
109838
|
};
|
|
@@ -110452,6 +110495,7 @@ export declare type TrelloReaction = {
|
|
|
110452
110495
|
__typename?: 'TrelloReaction';
|
|
110453
110496
|
emoji?: Maybe<TrelloEmoji>;
|
|
110454
110497
|
member?: Maybe<TrelloMember>;
|
|
110498
|
+
objectId: Scalars['ID']['output'];
|
|
110455
110499
|
};
|
|
110456
110500
|
export declare type TrelloReactionLimits = {
|
|
110457
110501
|
__typename?: 'TrelloReactionLimits';
|
|
@@ -110692,21 +110736,6 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
110692
110736
|
errors?: Maybe<Array<MutationError>>;
|
|
110693
110737
|
success: Scalars['Boolean']['output'];
|
|
110694
110738
|
};
|
|
110695
|
-
export declare type TrelloUpdateApplicationBasicInformationInput = {
|
|
110696
|
-
author?: InputMaybe<Scalars['String']['input']>;
|
|
110697
|
-
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
110698
|
-
email?: InputMaybe<Scalars['String']['input']>;
|
|
110699
|
-
icon?: InputMaybe<Scalars['String']['input']>;
|
|
110700
|
-
id: Scalars['ID']['input'];
|
|
110701
|
-
iframeConnectorUrl?: InputMaybe<Scalars['String']['input']>;
|
|
110702
|
-
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
110703
|
-
};
|
|
110704
|
-
export declare type TrelloUpdateApplicationBasicInformationPayload = Payload & {
|
|
110705
|
-
__typename?: 'TrelloUpdateApplicationBasicInformationPayload';
|
|
110706
|
-
application?: Maybe<TrelloApplication>;
|
|
110707
|
-
errors?: Maybe<Array<MutationError>>;
|
|
110708
|
-
success: Scalars['Boolean']['output'];
|
|
110709
|
-
};
|
|
110710
110739
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
110711
110740
|
boardId: Scalars['ID']['input'];
|
|
110712
110741
|
value: Scalars['Boolean']['input'];
|