@forge/cli-shared 9.5.1-next.4 → 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 CHANGED
@@ -1,5 +1,17 @@
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
+
9
+ ## 9.5.1-next.5
10
+
11
+ ### Patch Changes
12
+
13
+ - c7d6a28: Added additional --json to various commands
14
+
3
15
  ## 9.5.1-next.4
4
16
 
5
17
  ### Patch Changes
@@ -6259,6 +6259,24 @@ export type AgentAiSummary = {
6259
6259
  adf?: Maybe<Scalars['String']['output']>;
6260
6260
  text?: Maybe<Scalars['String']['output']>;
6261
6261
  };
6262
+ export type AgentConversationChannel = {
6263
+ __typename?: 'AgentConversationChannel';
6264
+ createdAt?: Maybe<Scalars['Long']['output']>;
6265
+ id?: Maybe<Scalars['ID']['output']>;
6266
+ interactionChannel?: Maybe<Scalars['String']['output']>;
6267
+ interactionChannelAri?: Maybe<Scalars['String']['output']>;
6268
+ isPinned?: Maybe<Scalars['Boolean']['output']>;
6269
+ isPlanning?: Maybe<Scalars['Boolean']['output']>;
6270
+ lastAgentMessageId?: Maybe<Scalars['String']['output']>;
6271
+ lastAgentMessageStatus?: Maybe<Scalars['String']['output']>;
6272
+ lastMessage?: Maybe<Scalars['String']['output']>;
6273
+ lastMessageTimestamp?: Maybe<Scalars['Long']['output']>;
6274
+ lastMessageType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
6275
+ name?: Maybe<Scalars['String']['output']>;
6276
+ pinnedAt?: Maybe<Scalars['Long']['output']>;
6277
+ readStatus?: Maybe<Scalars['Boolean']['output']>;
6278
+ status?: Maybe<Scalars['String']['output']>;
6279
+ };
6262
6280
  export type AgentSession = AgentSessionNode & {
6263
6281
  __typename?: 'AgentSession';
6264
6282
  _type?: Maybe<Scalars['String']['output']>;
@@ -6267,6 +6285,7 @@ export type AgentSession = AgentSessionNode & {
6267
6285
  agentAri?: Maybe<Scalars['ID']['output']>;
6268
6286
  associatedEntities?: Maybe<Array<Maybe<AgentSessionLinkedEntity>>>;
6269
6287
  author?: Maybe<User>;
6288
+ conversationChannel?: Maybe<AgentConversationChannel>;
6270
6289
  convoAiAgentId?: Maybe<Scalars['String']['output']>;
6271
6290
  expireTime?: Maybe<Scalars['DateTime']['output']>;
6272
6291
  id?: Maybe<Scalars['ID']['output']>;
@@ -6277,6 +6296,9 @@ export type AgentSession = AgentSessionNode & {
6277
6296
  studioAgent?: Maybe<AgentStudioAgent>;
6278
6297
  version?: Maybe<Scalars['Long']['output']>;
6279
6298
  };
6299
+ export type AgentSessionConversationChannelArgs = {
6300
+ workspaceAri: Scalars['String']['input'];
6301
+ };
6280
6302
  export type AgentSessionAssociation = AgentSessionAssociationNode & {
6281
6303
  __typename?: 'AgentSessionAssociation';
6282
6304
  _type?: Maybe<Scalars['String']['output']>;
@@ -6697,6 +6719,7 @@ export type AgentStudioAssistantConversation = {
6697
6719
  __typename?: 'AgentStudioAssistantConversation';
6698
6720
  agentVersionNumber?: Maybe<Scalars['Int']['output']>;
6699
6721
  hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
6722
+ hasConfigurationError?: Maybe<Scalars['Boolean']['output']>;
6700
6723
  hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
6701
6724
  id?: Maybe<Scalars['ID']['output']>;
6702
6725
  interactionChannel?: Maybe<Scalars['String']['output']>;
@@ -6772,6 +6795,9 @@ export type AgentStudioAuthReadinessResult = {
6772
6795
  thirdPartyApps: Array<AgentStudioThirdPartyApp>;
6773
6796
  thirdPartyConnections?: Maybe<Array<AgentStudioThirdPartyConnection>>;
6774
6797
  };
6798
+ export type AgentStudioAuthReadinessResultFirstPartyAppsArgs = {
6799
+ includeGrantedApps?: InputMaybe<Scalars['Boolean']['input']>;
6800
+ };
6775
6801
  export type AgentStudioAuthoringTeamInput = {
6776
6802
  authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
6777
6803
  };
@@ -9053,6 +9079,7 @@ export type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
9053
9079
  after?: InputMaybe<Scalars['String']['input']>;
9054
9080
  first?: InputMaybe<Scalars['Int']['input']>;
9055
9081
  kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
9082
+ statuses?: InputMaybe<Array<AgentWorkspaceRoutingHistoryStatus>>;
9056
9083
  };
9057
9084
  export type AgentWorkspaceProjectSkill = {
9058
9085
  __typename?: 'AgentWorkspaceProjectSkill';
@@ -9226,6 +9253,7 @@ export type AgentWorkspaceRoutingHistoryEvent = {
9226
9253
  kind: AgentWorkspaceRoutingHistoryEventKind;
9227
9254
  message: Scalars['String']['output'];
9228
9255
  occurredAt: Scalars['DateTime']['output'];
9256
+ status?: Maybe<AgentWorkspaceRoutingHistoryStatus>;
9229
9257
  trigger?: Maybe<Scalars['String']['output']>;
9230
9258
  };
9231
9259
  export type AgentWorkspaceRoutingHistoryEventConnection = {
@@ -9250,6 +9278,12 @@ export type AgentWorkspaceRoutingHistoryPageInfo = {
9250
9278
  hasPreviousPage: Scalars['Boolean']['output'];
9251
9279
  startCursor?: Maybe<Scalars['String']['output']>;
9252
9280
  };
9281
+ export declare enum AgentWorkspaceRoutingHistoryStatus {
9282
+ AssignedAndRouted = "ASSIGNED_AND_ROUTED",
9283
+ AssignedTeamMember = "ASSIGNED_TEAM_MEMBER",
9284
+ RoutedTeam = "ROUTED_TEAM",
9285
+ Skipped = "SKIPPED"
9286
+ }
9253
9287
  export type AgentWorkspaceRoutingHistoryTeamEntity = AgentWorkspaceRoutingHistoryEntity & {
9254
9288
  __typename?: 'AgentWorkspaceRoutingHistoryTeamEntity';
9255
9289
  fallbackText: Scalars['String']['output'];
@@ -12828,6 +12862,7 @@ export type ArtifactCreateInput = {
12828
12862
  access?: InputMaybe<ArtifactAccess>;
12829
12863
  contentId: Scalars['ID']['input'];
12830
12864
  contextId: Scalars['ID']['input'];
12865
+ description?: InputMaybe<Scalars['String']['input']>;
12831
12866
  name: Scalars['String']['input'];
12832
12867
  type: Scalars['String']['input'];
12833
12868
  };
@@ -46071,6 +46106,14 @@ export type CustomerServiceUpdateRequestParticipantInput = {
46071
46106
  addedParticipants: Array<Scalars['String']['input']>;
46072
46107
  deletedParticipants: Array<Scalars['ID']['input']>;
46073
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
+ };
46074
46117
  export type CustomerServiceUpdatedCustomerAccount = {
46075
46118
  __typename?: 'CustomerServiceUpdatedCustomerAccount';
46076
46119
  displayName: Scalars['String']['output'];
@@ -46099,6 +46142,14 @@ export type CustomerServiceWorkItemAiSummaryResponse = {
46099
46142
  meta?: Maybe<CustomerServiceWorkItemAiSummaryMeta>;
46100
46143
  summary?: Maybe<CustomerServiceWorkItemAiSummary>;
46101
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;
46102
46153
  export type CustomerUser = LocalizationContext & User & {
46103
46154
  __typename?: 'CustomerUser';
46104
46155
  accountId: Scalars['ID']['output'];
@@ -58114,6 +58165,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
58114
58165
  export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
58115
58166
  __typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
58116
58167
  authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
58168
+ customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
58117
58169
  description?: Maybe<Scalars['String']['output']>;
58118
58170
  displayName: Scalars['String']['output'];
58119
58171
  documentationUrl?: Maybe<Scalars['String']['output']>;
@@ -58131,6 +58183,34 @@ export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
58131
58183
  clientSecret?: InputMaybe<Scalars['String']['input']>;
58132
58184
  values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
58133
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
+ };
58134
58214
  export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
58135
58215
  key: Scalars['String']['input'];
58136
58216
  value: Scalars['String']['input'];
@@ -58303,6 +58383,7 @@ export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateEdge = {
58303
58383
  export type GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode = {
58304
58384
  __typename?: 'GraphIntegrationMcpAdminManagementSurfaceMcpServerTemplateNode';
58305
58385
  authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
58386
+ customOauthProperties: Array<GraphIntegrationMcpAdminManagementCustomOauthProperties>;
58306
58387
  description?: Maybe<Scalars['String']['output']>;
58307
58388
  displayName: Scalars['String']['output'];
58308
58389
  displayTools: Array<GraphIntegrationMcpAdminManagementSurfaceMcpServerToolNode>;
@@ -182099,6 +182180,7 @@ export type Mutation = {
182099
182180
  csm_updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
182100
182181
  csm_updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
182101
182182
  csm_updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
182183
+ csm_updateWorkItemSupportSite?: Maybe<CustomerServiceUpdateWorkItemSupportSitePayload>;
182102
182184
  csm_upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
182103
182185
  csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
182104
182186
  csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
@@ -185891,6 +185973,11 @@ export type MutationCsm_UpdateTemplateFormArgs = {
185891
185973
  input: CustomerServiceTemplateFormUpdateInput;
185892
185974
  templateFormId: Scalars['ID']['input'];
185893
185975
  };
185976
+ export type MutationCsm_UpdateWorkItemSupportSiteArgs = {
185977
+ cloudId: Scalars['ID']['input'];
185978
+ helpCenterId?: InputMaybe<Scalars['ID']['input']>;
185979
+ workItemKey: Scalars['String']['input'];
185980
+ };
185894
185981
  export type MutationCsm_UpsertBrandingArgs = {
185895
185982
  cloudId: Scalars['ID']['input'];
185896
185983
  helpCenterId: Scalars['ID']['input'];
@@ -194497,6 +194584,7 @@ export type Query = {
194497
194584
  csm_templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
194498
194585
  csm_templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
194499
194586
  csm_workItemAiSummary?: Maybe<CustomerServiceWorkItemAiSummaryQueryResult>;
194587
+ csm_workItemSupportSite?: Maybe<CustomerServiceWorkItemSupportSiteQueryResult>;
194500
194588
  currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
194501
194589
  customer360_customer?: Maybe<Customer360Customer>;
194502
194590
  customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
@@ -201609,6 +201697,10 @@ export type QueryCsm_TemplateFormsArgs = {
201609
201697
  export type QueryCsm_WorkItemAiSummaryArgs = {
201610
201698
  workItemId: Scalars['ID']['input'];
201611
201699
  };
201700
+ export type QueryCsm_WorkItemSupportSiteArgs = {
201701
+ cloudId: Scalars['ID']['input'];
201702
+ workItemKey: Scalars['String']['input'];
201703
+ };
201612
201704
  export type QueryCustomer360_CustomerArgs = {
201613
201705
  domain: Scalars['String']['input'];
201614
201706
  };