@forge/cli-shared 8.3.0-next.2 → 8.3.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 +16 -0
- package/out/graphql/graphql-types.d.ts +124 -12
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +21 -17
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 10ac877: Support devspace in forge create command flow
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 10c0bc6: Add egress support for custom URL schemes. Allow custom custom URL schemes as autoconvert patterns.
|
|
12
|
+
- 568c31b: Add support for developer space in forge register command
|
|
13
|
+
- f181a03: Added sensitive token filtering
|
|
14
|
+
- Updated dependencies [10c0bc6]
|
|
15
|
+
- Updated dependencies [6447811]
|
|
16
|
+
- Updated dependencies [2f446cf]
|
|
17
|
+
- @forge/manifest@10.2.1
|
|
18
|
+
|
|
3
19
|
## 8.3.0-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -1460,8 +1460,8 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
1460
1460
|
creator?: Maybe<User>;
|
|
1461
1461
|
creatorId: Scalars['ID']['output'];
|
|
1462
1462
|
id: Scalars['ID']['output'];
|
|
1463
|
-
instructions
|
|
1464
|
-
invocationDescription
|
|
1463
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1464
|
+
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
1465
1465
|
isActive: Scalars['Boolean']['output'];
|
|
1466
1466
|
isDefault: Scalars['Boolean']['output'];
|
|
1467
1467
|
isValid: AgentStudioScenarioValidation;
|
|
@@ -1517,10 +1517,10 @@ export declare enum AgentStudioCreateAgentPermissionMode {
|
|
|
1517
1517
|
export declare type AgentStudioCreateScenarioInput = {
|
|
1518
1518
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1519
1519
|
containerId: Scalars['ID']['input'];
|
|
1520
|
-
instructions
|
|
1521
|
-
invocationDescription
|
|
1522
|
-
isActive
|
|
1523
|
-
isDefault
|
|
1520
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
1521
|
+
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1522
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1523
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1524
1524
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1525
1525
|
name: Scalars['String']['input'];
|
|
1526
1526
|
};
|
|
@@ -1621,8 +1621,8 @@ export declare type AgentStudioScenario = {
|
|
|
1621
1621
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
1622
1622
|
creatorId: Scalars['ID']['output'];
|
|
1623
1623
|
id: Scalars['ID']['output'];
|
|
1624
|
-
instructions
|
|
1625
|
-
invocationDescription
|
|
1624
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1625
|
+
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
1626
1626
|
isActive: Scalars['Boolean']['output'];
|
|
1627
1627
|
isDefault: Scalars['Boolean']['output'];
|
|
1628
1628
|
isValid: AgentStudioScenarioValidation;
|
|
@@ -1630,6 +1630,28 @@ export declare type AgentStudioScenario = {
|
|
|
1630
1630
|
name: Scalars['String']['output'];
|
|
1631
1631
|
};
|
|
1632
1632
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
1633
|
+
export declare type AgentStudioScenarioValidateInput = {
|
|
1634
|
+
invocationDescription: Scalars['String']['input'];
|
|
1635
|
+
isActive: Scalars['Boolean']['input'];
|
|
1636
|
+
isDefault: Scalars['Boolean']['input'];
|
|
1637
|
+
isEdited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1638
|
+
name: Scalars['String']['input'];
|
|
1639
|
+
};
|
|
1640
|
+
export declare type AgentStudioScenarioValidateModeInput = {
|
|
1641
|
+
scenarios?: InputMaybe<Array<AgentStudioScenarioValidateInput>>;
|
|
1642
|
+
};
|
|
1643
|
+
export declare type AgentStudioScenarioValidateModeOutput = {
|
|
1644
|
+
__typename?: 'AgentStudioScenarioValidateModeOutput';
|
|
1645
|
+
scenarios?: Maybe<Array<AgentStudioScenarioValidateOutput>>;
|
|
1646
|
+
};
|
|
1647
|
+
export declare type AgentStudioScenarioValidateOutput = {
|
|
1648
|
+
__typename?: 'AgentStudioScenarioValidateOutput';
|
|
1649
|
+
invocationDescription: Scalars['String']['output'];
|
|
1650
|
+
isActive: Scalars['Boolean']['output'];
|
|
1651
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1652
|
+
isValid: AgentStudioScenarioValidation;
|
|
1653
|
+
name: Scalars['String']['output'];
|
|
1654
|
+
};
|
|
1633
1655
|
export declare type AgentStudioScenarioValidation = {
|
|
1634
1656
|
__typename?: 'AgentStudioScenarioValidation';
|
|
1635
1657
|
message?: Maybe<Array<Maybe<AgentStudioScenarioValidationError>>>;
|
|
@@ -1640,6 +1662,10 @@ export declare type AgentStudioScenarioValidationError = {
|
|
|
1640
1662
|
key: Scalars['String']['output'];
|
|
1641
1663
|
value: Scalars['String']['output'];
|
|
1642
1664
|
};
|
|
1665
|
+
export declare type AgentStudioScenarioValidationPayload = {
|
|
1666
|
+
__typename?: 'AgentStudioScenarioValidationPayload';
|
|
1667
|
+
isValid: AgentStudioScenarioValidation;
|
|
1668
|
+
};
|
|
1643
1669
|
export declare type AgentStudioScenariosEdge = {
|
|
1644
1670
|
__typename?: 'AgentStudioScenariosEdge';
|
|
1645
1671
|
cursor: Scalars['String']['output'];
|
|
@@ -6716,6 +6742,7 @@ export declare type ChannelPlatformTranscriptRequest = {
|
|
|
6716
6742
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
6717
6743
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
6718
6744
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
6745
|
+
startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
|
|
6719
6746
|
};
|
|
6720
6747
|
export declare type ChannelPlatformTranscriptResponse = {
|
|
6721
6748
|
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
@@ -17110,8 +17137,8 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17110
17137
|
page: Scalars['String']['output'];
|
|
17111
17138
|
user: Scalars['Int']['output'];
|
|
17112
17139
|
};
|
|
17113
|
-
export declare type
|
|
17114
|
-
__typename?: '
|
|
17140
|
+
export declare type CplsCapacityPlanningPeopleView = {
|
|
17141
|
+
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
17115
17142
|
id: Scalars['ID']['output'];
|
|
17116
17143
|
};
|
|
17117
17144
|
export declare type CreateAppContainerPayload = Payload & {
|
|
@@ -26829,6 +26856,52 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
26829
26856
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
26830
26857
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
26831
26858
|
};
|
|
26859
|
+
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
26860
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
26861
|
+
displayName: Scalars['String']['output'];
|
|
26862
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26863
|
+
id: Scalars['ID']['output'];
|
|
26864
|
+
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
26865
|
+
};
|
|
26866
|
+
export declare type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
26867
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
26868
|
+
edges?: Maybe<Array<GraphIntegrationDirectoryFilterDimensionEdge>>;
|
|
26869
|
+
pageInfo: PageInfo;
|
|
26870
|
+
};
|
|
26871
|
+
export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
26872
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimensionEdge';
|
|
26873
|
+
cursor: Scalars['String']['output'];
|
|
26874
|
+
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
26875
|
+
};
|
|
26876
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationMcpServer | GraphIntegrationMcpTool;
|
|
26877
|
+
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
26878
|
+
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
26879
|
+
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
26880
|
+
pageInfo: PageInfo;
|
|
26881
|
+
};
|
|
26882
|
+
export declare type GraphIntegrationDirectoryItemEdge = {
|
|
26883
|
+
__typename?: 'GraphIntegrationDirectoryItemEdge';
|
|
26884
|
+
cursor: Scalars['String']['output'];
|
|
26885
|
+
node?: Maybe<GraphIntegrationDirectoryItem>;
|
|
26886
|
+
};
|
|
26887
|
+
export declare enum GraphIntegrationDirectoryItemType {
|
|
26888
|
+
McpTool = "MCP_TOOL"
|
|
26889
|
+
}
|
|
26890
|
+
export declare type GraphIntegrationMcpServer = {
|
|
26891
|
+
__typename?: 'GraphIntegrationMcpServer';
|
|
26892
|
+
displayName: Scalars['String']['output'];
|
|
26893
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26894
|
+
id: Scalars['ID']['output'];
|
|
26895
|
+
};
|
|
26896
|
+
export declare type GraphIntegrationMcpTool = {
|
|
26897
|
+
__typename?: 'GraphIntegrationMcpTool';
|
|
26898
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26899
|
+
displayName: Scalars['String']['output'];
|
|
26900
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26901
|
+
id: Scalars['ID']['output'];
|
|
26902
|
+
mcpServer: GraphIntegrationMcpServer;
|
|
26903
|
+
name: Scalars['String']['output'];
|
|
26904
|
+
};
|
|
26832
26905
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
26833
26906
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
26834
26907
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -82095,6 +82168,7 @@ export declare type Mutation = {
|
|
|
82095
82168
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
82096
82169
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
82097
82170
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
82171
|
+
home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
|
|
82098
82172
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
82099
82173
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
82100
82174
|
installApp?: Maybe<AppInstallationResponse>;
|
|
@@ -83304,6 +83378,9 @@ export declare type MutationHelpObjectStoreArgs = {
|
|
|
83304
83378
|
export declare type MutationHome_AddTagsByIdArgs = {
|
|
83305
83379
|
input: TownsquareAddTagToEntityByIdInput;
|
|
83306
83380
|
};
|
|
83381
|
+
export declare type MutationHome_AddTagsByNameArgs = {
|
|
83382
|
+
input: TownsquareAddTagsByNameInput;
|
|
83383
|
+
};
|
|
83307
83384
|
export declare type MutationHome_RemoveTagsArgs = {
|
|
83308
83385
|
input: TownsquareRemoveTagsInput;
|
|
83309
83386
|
};
|
|
@@ -87019,6 +87096,8 @@ export declare type Query = {
|
|
|
87019
87096
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
87020
87097
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
87021
87098
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
87099
|
+
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
87100
|
+
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
87022
87101
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
87023
87102
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
87024
87103
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -87202,7 +87281,7 @@ export declare type Query = {
|
|
|
87202
87281
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
87203
87282
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87204
87283
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87205
|
-
|
|
87284
|
+
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
87206
87285
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87207
87286
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
87208
87287
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -87312,6 +87391,8 @@ export declare type Query = {
|
|
|
87312
87391
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87313
87392
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87314
87393
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87394
|
+
graphIntegration_dimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
87395
|
+
graphIntegration_items?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87315
87396
|
graphStore?: Maybe<GraphStore>;
|
|
87316
87397
|
group?: Maybe<Group>;
|
|
87317
87398
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87708,6 +87789,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
87708
87789
|
cloudId: Scalars['String']['input'];
|
|
87709
87790
|
input: AgentStudioSuggestConversationStartersInput;
|
|
87710
87791
|
};
|
|
87792
|
+
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
87793
|
+
cloudId: Scalars['String']['input'];
|
|
87794
|
+
containerId: Scalars['ID']['input'];
|
|
87795
|
+
id: Scalars['ID']['input'];
|
|
87796
|
+
};
|
|
87797
|
+
export declare type QueryAgentStudio_ValidateScenariosArgs = {
|
|
87798
|
+
cloudId: Scalars['String']['input'];
|
|
87799
|
+
input: AgentStudioScenarioValidateModeInput;
|
|
87800
|
+
};
|
|
87711
87801
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
87712
87802
|
projectAri: Scalars['ID']['input'];
|
|
87713
87803
|
};
|
|
@@ -88613,7 +88703,7 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
88613
88703
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
88614
88704
|
startTime: Scalars['String']['input'];
|
|
88615
88705
|
};
|
|
88616
|
-
export declare type
|
|
88706
|
+
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
88617
88707
|
id: Scalars['ID']['input'];
|
|
88618
88708
|
};
|
|
88619
88709
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
@@ -89025,6 +89115,18 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89025
89115
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89026
89116
|
responseType?: InputMaybe<ResponseType>;
|
|
89027
89117
|
};
|
|
89118
|
+
export declare type QueryGraphIntegration_DimensionsArgs = {
|
|
89119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89120
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89121
|
+
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89122
|
+
};
|
|
89123
|
+
export declare type QueryGraphIntegration_ItemsArgs = {
|
|
89124
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89125
|
+
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89126
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89127
|
+
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89128
|
+
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
89129
|
+
};
|
|
89028
89130
|
export declare type QueryGroupArgs = {
|
|
89029
89131
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
89030
89132
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98422,6 +98524,16 @@ export declare type TownsquareAddTagToEntityPayload = {
|
|
|
98422
98524
|
success: Scalars['Boolean']['output'];
|
|
98423
98525
|
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
98424
98526
|
};
|
|
98527
|
+
export declare type TownsquareAddTagsByNameInput = {
|
|
98528
|
+
nounId: Scalars['ID']['input'];
|
|
98529
|
+
tagNames: Array<Scalars['String']['input']>;
|
|
98530
|
+
};
|
|
98531
|
+
export declare type TownsquareAddTagsByNamePayload = {
|
|
98532
|
+
__typename?: 'TownsquareAddTagsByNamePayload';
|
|
98533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98534
|
+
success: Scalars['Boolean']['output'];
|
|
98535
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
98536
|
+
};
|
|
98425
98537
|
export declare type TownsquareArchiveGoalInput = {
|
|
98426
98538
|
id: Scalars['String']['input'];
|
|
98427
98539
|
};
|