@forge/cli-shared 9.5.1-next.5 → 9.6.0-next.6
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 +70 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +71 -52
- package/out/ui/command-line-ui.d.ts +9 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +100 -6
- package/out/ui/text.d.ts +6 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -1
- package/out/ui/ui.d.ts +2 -1
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.6.0-next.6
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 406407c: Added secret key support for authorised web-triggers, plus non-expiring keys via `--noKeyExpiry` on `forge webtrigger create` and `secretKeyConfig.noExpiry` in `@forge/api`
|
|
8
|
+
|
|
3
9
|
## 9.5.1-next.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -6719,6 +6719,7 @@ export type AgentStudioAssistantConversation = {
|
|
|
6719
6719
|
__typename?: 'AgentStudioAssistantConversation';
|
|
6720
6720
|
agentVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
6721
6721
|
hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
|
|
6722
|
+
hasConfigurationError?: Maybe<Scalars['Boolean']['output']>;
|
|
6722
6723
|
hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
|
|
6723
6724
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6724
6725
|
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
@@ -6794,6 +6795,9 @@ export type AgentStudioAuthReadinessResult = {
|
|
|
6794
6795
|
thirdPartyApps: Array<AgentStudioThirdPartyApp>;
|
|
6795
6796
|
thirdPartyConnections?: Maybe<Array<AgentStudioThirdPartyConnection>>;
|
|
6796
6797
|
};
|
|
6798
|
+
export type AgentStudioAuthReadinessResultFirstPartyAppsArgs = {
|
|
6799
|
+
includeGrantedApps?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6800
|
+
};
|
|
6797
6801
|
export type AgentStudioAuthoringTeamInput = {
|
|
6798
6802
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
6799
6803
|
};
|
|
@@ -9075,6 +9079,7 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
|
|
|
9075
9079
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9076
9080
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9077
9081
|
kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
|
|
9082
|
+
statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
|
|
9078
9083
|
};
|
|
9079
9084
|
export type AgentWorkspaceProjectSkill = {
|
|
9080
9085
|
__typename?: 'AgentWorkspaceProjectSkill';
|
|
@@ -9248,6 +9253,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
|
|
|
9248
9253
|
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
9249
9254
|
message: Scalars['String']['output'];
|
|
9250
9255
|
occurredAt: Scalars['DateTime']['output'];
|
|
9256
|
+
status?: Maybe<AgentWorkspaceRoutingHistoryStatus>;
|
|
9251
9257
|
trigger?: Maybe<Scalars['String']['output']>;
|
|
9252
9258
|
};
|
|
9253
9259
|
export type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
@@ -9272,6 +9278,12 @@ export type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
|
9272
9278
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
9273
9279
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
9274
9280
|
};
|
|
9281
|
+
export declare enum AgentWorkspaceRoutingHistoryStatus {
|
|
9282
|
+
AssignedAndRouted = "ASSIGNED_AND_ROUTED",
|
|
9283
|
+
AssignedTeamMember = "ASSIGNED_TEAM_MEMBER",
|
|
9284
|
+
RoutedTeam = "ROUTED_TEAM",
|
|
9285
|
+
Skipped = "SKIPPED"
|
|
9286
|
+
}
|
|
9275
9287
|
export type AgentWorkspaceRoutingHistoryTeamEntity = AgentWorkspaceRoutingHistoryEntity & {
|
|
9276
9288
|
__typename?: 'AgentWorkspaceRoutingHistoryTeamEntity';
|
|
9277
9289
|
fallbackText: Scalars['String']['output'];
|
|
@@ -12850,6 +12862,7 @@ export type ArtifactCreateInput = {
|
|
|
12850
12862
|
access?: InputMaybe<ArtifactAccess>;
|
|
12851
12863
|
contentId: Scalars['ID']['input'];
|
|
12852
12864
|
contextId: Scalars['ID']['input'];
|
|
12865
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
12853
12866
|
name: Scalars['String']['input'];
|
|
12854
12867
|
type: Scalars['String']['input'];
|
|
12855
12868
|
};
|
|
@@ -46093,6 +46106,14 @@ export type CustomerServiceUpdateRequestParticipantInput = {
|
|
|
46093
46106
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
46094
46107
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
46095
46108
|
};
|
|
46109
|
+
export type CustomerServiceUpdateWorkItemSupportSitePayload = Payload & {
|
|
46110
|
+
__typename?: 'CustomerServiceUpdateWorkItemSupportSitePayload';
|
|
46111
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46112
|
+
formAttached: Scalars['Boolean']['output'];
|
|
46113
|
+
id: Scalars['ID']['output'];
|
|
46114
|
+
success: Scalars['Boolean']['output'];
|
|
46115
|
+
workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSite>;
|
|
46116
|
+
};
|
|
46096
46117
|
export type CustomerServiceUpdatedCustomerAccount = {
|
|
46097
46118
|
__typename?: 'CustomerServiceUpdatedCustomerAccount';
|
|
46098
46119
|
displayName: Scalars['String']['output'];
|
|
@@ -46121,6 +46142,14 @@ export type CustomerServiceWorkItemAiSummaryResponse = {
|
|
|
46121
46142
|
meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
|
|
46122
46143
|
summary?: Maybe<CustomerServiceWorkItemAiSummary>;
|
|
46123
46144
|
};
|
|
46145
|
+
export type CustomerServiceWorkItemSupportSite = {
|
|
46146
|
+
__typename?: 'CustomerServiceWorkItemSupportSite';
|
|
46147
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
46148
|
+
helpCenterId?: Maybe<Scalars['ID']['output']>;
|
|
46149
|
+
id: Scalars['ID']['output'];
|
|
46150
|
+
workItemKey: Scalars['String']['output'];
|
|
46151
|
+
};
|
|
46152
|
+
export type CustomerServiceWorkItemSupportSiteQueryResult = CustomerServiceWorkItemSupportSite | QueryError;
|
|
46124
46153
|
export type CustomerUser = LocalizationContext & User & {
|
|
46125
46154
|
__typename?: 'CustomerUser';
|
|
46126
46155
|
accountId: Scalars['ID']['output'];
|
|
@@ -58136,6 +58165,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
|
|
|
58136
58165
|
export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
58137
58166
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
|
|
58138
58167
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58168
|
+
customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
|
|
58139
58169
|
description?: Maybe<Scalars['String']['output']>;
|
|
58140
58170
|
displayName: Scalars['String']['output'];
|
|
58141
58171
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -58153,6 +58183,34 @@ export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
|
|
|
58153
58183
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
58154
58184
|
values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
58155
58185
|
};
|
|
58186
|
+
export type GraphIntegrationMcpAdminManagementCustomOauthInputField = {
|
|
58187
|
+
__typename?: 'GraphIntegrationMcpAdminManagementCustomOauthInputField';
|
|
58188
|
+
inputPrefix?: Maybe<Scalars['String']['output']>;
|
|
58189
|
+
inputSuffix?: Maybe<Scalars['String']['output']>;
|
|
58190
|
+
inputType: GraphIntegrationMcpAdminManagementCustomOauthInputType;
|
|
58191
|
+
key: Scalars['String']['output'];
|
|
58192
|
+
label: Scalars['String']['output'];
|
|
58193
|
+
options?: Maybe<Array<GraphIntegrationMcpAdminManagementExtraInputOption>>;
|
|
58194
|
+
required: Scalars['Boolean']['output'];
|
|
58195
|
+
target: GraphIntegrationMcpAdminManagementCustomOauthInputTarget;
|
|
58196
|
+
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
58197
|
+
};
|
|
58198
|
+
export declare enum GraphIntegrationMcpAdminManagementCustomOauthInputTarget {
|
|
58199
|
+
ClientId = "CLIENT_ID",
|
|
58200
|
+
ClientSecret = "CLIENT_SECRET",
|
|
58201
|
+
Value = "VALUE"
|
|
58202
|
+
}
|
|
58203
|
+
export declare enum GraphIntegrationMcpAdminManagementCustomOauthInputType {
|
|
58204
|
+
Secret = "SECRET",
|
|
58205
|
+
Select = "SELECT",
|
|
58206
|
+
Text = "TEXT"
|
|
58207
|
+
}
|
|
58208
|
+
export type GraphIntegrationMcpAdminManagementCustomOauthProperties = {
|
|
58209
|
+
__typename?: 'GraphIntegrationMcpAdminManagementCustomOauthProperties';
|
|
58210
|
+
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58211
|
+
platformInputs: Array<GraphIntegrationMcpAdminManagementCustomOauthInputField>;
|
|
58212
|
+
templateInputs: Array<GraphIntegrationMcpAdminManagementCustomOauthInputField>;
|
|
58213
|
+
};
|
|
58156
58214
|
export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
58157
58215
|
key: Scalars['String']['input'];
|
|
58158
58216
|
value: Scalars['String']['input'];
|
|
@@ -58325,6 +58383,7 @@ export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateEdge = {
|
|
|
58325
58383
|
export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode = {
|
|
58326
58384
|
__typename?: 'GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode';
|
|
58327
58385
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58386
|
+
customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
|
|
58328
58387
|
description?: Maybe<Scalars['String']['output']>;
|
|
58329
58388
|
displayName: Scalars['String']['output'];
|
|
58330
58389
|
displayTools: Array<GraphIntegrationMcpAdminManagementSurfaceMcpServerToolNode>;
|
|
@@ -182121,6 +182180,7 @@ export type Mutation = {
|
|
|
182121
182180
|
csm_updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
182122
182181
|
csm_updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
|
|
182123
182182
|
csm_updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
182183
|
+
csm_updateWorkItemSupportSite?: Maybe<CustomerServiceUpdateWorkItemSupportSitePayload>;
|
|
182124
182184
|
csm_upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
182125
182185
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
182126
182186
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -185913,6 +185973,11 @@ export type MutationCsm_UpdateTemplateFormArgs = {
|
|
|
185913
185973
|
input: CustomerServiceTemplateFormUpdateInput;
|
|
185914
185974
|
templateFormId: Scalars['ID']['input'];
|
|
185915
185975
|
};
|
|
185976
|
+
export type MutationCsm_UpdateWorkItemSupportSiteArgs = {
|
|
185977
|
+
cloudId: Scalars['ID']['input'];
|
|
185978
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
185979
|
+
workItemKey: Scalars['String']['input'];
|
|
185980
|
+
};
|
|
185916
185981
|
export type MutationCsm_UpsertBrandingArgs = {
|
|
185917
185982
|
cloudId: Scalars['ID']['input'];
|
|
185918
185983
|
helpCenterId: Scalars['ID']['input'];
|
|
@@ -194519,6 +194584,7 @@ export type Query = {
|
|
|
194519
194584
|
csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
194520
194585
|
csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
194521
194586
|
csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
|
|
194587
|
+
csm_workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSiteQueryResult>;
|
|
194522
194588
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
194523
194589
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
194524
194590
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -201631,6 +201697,10 @@ export type QueryCsm_TemplateFormsArgs = {
|
|
|
201631
201697
|
export type QueryCsm_WorkItemAiSummaryArgs = {
|
|
201632
201698
|
workItemId: Scalars['ID']['input'];
|
|
201633
201699
|
};
|
|
201700
|
+
export type QueryCsm_WorkItemSupportSiteArgs = {
|
|
201701
|
+
cloudId: Scalars['ID']['input'];
|
|
201702
|
+
workItemKey: Scalars['String']['input'];
|
|
201703
|
+
};
|
|
201634
201704
|
export type QueryCustomer360_CustomerArgs = {
|
|
201635
201705
|
domain: Scalars['String']['input'];
|
|
201636
201706
|
};
|