@forge/cli-shared 4.2.0-next.0 → 4.2.0-next.1

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 4.2.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6f17340]
8
+ - @forge/manifest@7.2.2-next.0
9
+
3
10
  ## 4.2.0-next.0
4
11
 
5
12
  ### Minor Changes
@@ -9713,7 +9713,9 @@ export declare type DevOps = {
9713
9713
  providers?: Maybe<DevOpsProviders>;
9714
9714
  providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
9715
9715
  providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
9716
+ summarisedBuildsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedBuilds>>>;
9716
9717
  summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
9718
+ summarisedDeploymentsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
9717
9719
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
9718
9720
  toolchain?: Maybe<Toolchain>;
9719
9721
  };
@@ -9743,9 +9745,15 @@ export declare type DevOpsProvidersByIdsArgs = {
9743
9745
  providerIds?: InputMaybe<Array<Scalars['String']['input']>>;
9744
9746
  providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
9745
9747
  };
9748
+ export declare type DevOpsSummarisedBuildsByAgsIssuesArgs = {
9749
+ ids: Array<Scalars['ID']['input']>;
9750
+ };
9746
9751
  export declare type DevOpsSummarisedDeploymentsArgs = {
9747
9752
  ids: Array<Scalars['ID']['input']>;
9748
9753
  };
9754
+ export declare type DevOpsSummarisedDeploymentsByAgsIssuesArgs = {
9755
+ ids: Array<Scalars['ID']['input']>;
9756
+ };
9749
9757
  export declare type DevOpsSummarisedEntitiesArgs = {
9750
9758
  ids: Array<Scalars['ID']['input']>;
9751
9759
  };
@@ -10845,6 +10853,7 @@ export declare type DevOpsSummarisedBuilds = {
10845
10853
  __typename?: 'DevOpsSummarisedBuilds';
10846
10854
  buildStates?: Maybe<Array<Maybe<DevOpsSummarisedBuildState>>>;
10847
10855
  count?: Maybe<Scalars['Int']['output']>;
10856
+ id: Scalars['ID']['output'];
10848
10857
  lastUpdated?: Maybe<Scalars['DateTime']['output']>;
10849
10858
  mostRelevantCount?: Maybe<Scalars['Int']['output']>;
10850
10859
  singleClickUrl?: Maybe<Scalars['URL']['output']>;
@@ -10856,6 +10865,7 @@ export declare type DevOpsSummarisedDeployments = {
10856
10865
  deploymentEnvironment?: Maybe<DevOpsEnvironment>;
10857
10866
  deploymentState?: Maybe<DeploymentState>;
10858
10867
  entityId: Scalars['ID']['output'];
10868
+ id: Scalars['ID']['output'];
10859
10869
  lastUpdated?: Maybe<Scalars['DateTime']['output']>;
10860
10870
  mostRelevantCount?: Maybe<Scalars['Int']['output']>;
10861
10871
  mostRelevantLastUpdated?: Maybe<Scalars['DateTime']['output']>;
@@ -40608,8 +40618,7 @@ export declare type JsmChatChannelRequestTypeMapping = {
40608
40618
  channelUrl?: Maybe<Scalars['String']['output']>;
40609
40619
  isPrivate?: Maybe<Scalars['Boolean']['output']>;
40610
40620
  projectId?: Maybe<Scalars['String']['output']>;
40611
- requestTypeId?: Maybe<Scalars['String']['output']>;
40612
- requestTypeName?: Maybe<Scalars['String']['output']>;
40621
+ requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
40613
40622
  settings?: Maybe<JsmChatChannelSettings>;
40614
40623
  };
40615
40624
  export declare type JsmChatChannelSettings = {
@@ -40623,12 +40632,11 @@ export declare enum JsmChatChannelType {
40623
40632
  Request = "REQUEST"
40624
40633
  }
40625
40634
  export declare type JsmChatCreateChannelInput = {
40626
- aaid: Scalars['String']['input'];
40627
40635
  channelName: Scalars['String']['input'];
40628
40636
  channelType: JsmChatChannelType;
40629
- isVirtualAgent?: InputMaybe<Scalars['Boolean']['input']>;
40637
+ isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
40630
40638
  isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
40631
- requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
40639
+ requestTypeIds: Array<Scalars['String']['input']>;
40632
40640
  };
40633
40641
  export declare type JsmChatCreateChannelOutput = {
40634
40642
  __typename?: 'JsmChatCreateChannelOutput';
@@ -40728,10 +40736,16 @@ export declare type JsmChatQueryInitializeConfigArgs = {
40728
40736
  export declare type JsmChatQueryInitializeNativeConfigArgs = {
40729
40737
  jiraProjectAri: Scalars['ID']['input'];
40730
40738
  };
40739
+ export declare type JsmChatRequestTypesMappedResponse = {
40740
+ __typename?: 'JsmChatRequestTypesMappedResponse';
40741
+ requestTypeId?: Maybe<Scalars['String']['output']>;
40742
+ requestTypeName?: Maybe<Scalars['String']['output']>;
40743
+ };
40731
40744
  export declare type JsmChatSlackConfig = {
40732
40745
  __typename?: 'JsmChatSlackConfig';
40733
40746
  botUserId?: Maybe<Scalars['String']['output']>;
40734
40747
  channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
40748
+ projectKey?: Maybe<Scalars['String']['output']>;
40735
40749
  projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
40736
40750
  siteId: Scalars['ID']['output'];
40737
40751
  slackTeamDomain?: Maybe<Scalars['String']['output']>;
@@ -47476,6 +47490,7 @@ export declare enum ShepherdAlertStatus {
47476
47490
  }
47477
47491
  export declare type ShepherdAlertSupportingData = {
47478
47492
  __typename?: 'ShepherdAlertSupportingData';
47493
+ bitbucketDetectionHighlight?: Maybe<ShepherdBitbucketDetectionHighlight>;
47479
47494
  customDetectionHighlight?: Maybe<ShepherdCustomDetectionHighlight>;
47480
47495
  highlight: ShepherdHighlight;
47481
47496
  marketplaceAppHighlight?: Maybe<ShepherdMarketplaceAppHighlight>;
@@ -47587,12 +47602,27 @@ export declare type ShepherdAuditLogContext = {
47587
47602
  attributes: Array<ShepherdAuditLogAttribute>;
47588
47603
  id: Scalars['String']['output'];
47589
47604
  };
47605
+ export declare type ShepherdBitbucketDetectionHighlight = {
47606
+ __typename?: 'ShepherdBitbucketDetectionHighlight';
47607
+ repository?: Maybe<ShepherdBitbucketRepositoryInfo>;
47608
+ workspace?: Maybe<ShepherdBitbucketWorkspaceInfo>;
47609
+ };
47610
+ export declare type ShepherdBitbucketRepositoryInfo = {
47611
+ __typename?: 'ShepherdBitbucketRepositoryInfo';
47612
+ name: Scalars['String']['output'];
47613
+ url: Scalars['URL']['output'];
47614
+ };
47590
47615
  export declare type ShepherdBitbucketWorkspace = {
47591
47616
  __typename?: 'ShepherdBitbucketWorkspace';
47592
47617
  ari: Scalars['ID']['output'];
47593
47618
  slug?: Maybe<Scalars['String']['output']>;
47594
47619
  url?: Maybe<Scalars['String']['output']>;
47595
47620
  };
47621
+ export declare type ShepherdBitbucketWorkspaceInfo = {
47622
+ __typename?: 'ShepherdBitbucketWorkspaceInfo';
47623
+ name: Scalars['String']['output'];
47624
+ url: Scalars['URL']['output'];
47625
+ };
47596
47626
  export declare type ShepherdCategorizedAlertMetadata = {
47597
47627
  __typename?: 'ShepherdCategorizedAlertMetadata';
47598
47628
  category: Scalars['String']['output'];
@@ -51447,8 +51477,8 @@ export declare type UnifiedMutation = {
51447
51477
  __typename?: 'UnifiedMutation';
51448
51478
  createLinkedAccount: UnifiedLinkedCreateAccountUnion;
51449
51479
  createParentAccount: UnifiedCreateAccountUnion;
51450
- createUnifiedProfile: UnifiedCreateProfileUnion;
51451
51480
  createUnifiedSystem: UnifiedSystemCreateAccountUnion;
51481
+ updateUnifiedProfile: UnifiedCreateProfileUnion;
51452
51482
  };
51453
51483
  export declare type UnifiedMutationCreateLinkedAccountArgs = {
51454
51484
  input: UnifiedLinkedAccountInput;
@@ -51456,12 +51486,12 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
51456
51486
  export declare type UnifiedMutationCreateParentAccountArgs = {
51457
51487
  input: UnifiedParentAccountInput;
51458
51488
  };
51459
- export declare type UnifiedMutationCreateUnifiedProfileArgs = {
51460
- input: UnifiedProfileInput;
51461
- };
51462
51489
  export declare type UnifiedMutationCreateUnifiedSystemArgs = {
51463
51490
  input: UnifiedSystemInput;
51464
51491
  };
51492
+ export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
51493
+ input: UnifiedProfileInput;
51494
+ };
51465
51495
  export declare type UnifiedParentAccount = {
51466
51496
  __typename?: 'UnifiedParentAccount';
51467
51497
  parentAccountEmailId?: Maybe<Scalars['String']['output']>;
@@ -51480,11 +51510,14 @@ export declare type UnifiedProfile = {
51480
51510
  location?: Maybe<Scalars['String']['output']>;
51481
51511
  parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51482
51512
  photoUrl?: Maybe<Scalars['String']['output']>;
51513
+ products?: Maybe<Scalars['String']['output']>;
51483
51514
  publicName?: Maybe<Scalars['String']['output']>;
51484
51515
  role?: Maybe<Scalars['String']['output']>;
51485
- unifiedProfleInternalId: Scalars['ID']['output'];
51486
- unifiedProfleUsername?: Maybe<Scalars['String']['output']>;
51516
+ unifiedProfileInternalId?: Maybe<Scalars['ID']['output']>;
51517
+ unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
51487
51518
  websiteUrl?: Maybe<Scalars['String']['output']>;
51519
+ xUrl?: Maybe<Scalars['String']['output']>;
51520
+ youtubeUrl?: Maybe<Scalars['String']['output']>;
51488
51521
  };
51489
51522
  export declare type UnifiedProfileInput = {
51490
51523
  bio?: InputMaybe<Scalars['String']['input']>;
@@ -51495,11 +51528,15 @@ export declare type UnifiedProfileInput = {
51495
51528
  location?: InputMaybe<Scalars['String']['input']>;
51496
51529
  parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
51497
51530
  photoUrl?: InputMaybe<Scalars['String']['input']>;
51531
+ products?: InputMaybe<Scalars['String']['input']>;
51498
51532
  publicName?: InputMaybe<Scalars['String']['input']>;
51499
51533
  role?: InputMaybe<Scalars['String']['input']>;
51500
- unifiedProfleUsername?: InputMaybe<Scalars['String']['input']>;
51534
+ unifiedProfileInternalId?: InputMaybe<Scalars['String']['input']>;
51535
+ unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
51501
51536
  updatedAt?: InputMaybe<Scalars['String']['input']>;
51502
51537
  websiteUrl?: InputMaybe<Scalars['String']['input']>;
51538
+ xUrl?: InputMaybe<Scalars['String']['input']>;
51539
+ youtubeUrl?: InputMaybe<Scalars['String']['input']>;
51503
51540
  };
51504
51541
  export declare type UnifiedQuery = {
51505
51542
  __typename?: 'UnifiedQuery';
@@ -51514,13 +51551,15 @@ export declare type UnifiedQueryForumSnapshotArgs = {
51514
51551
  aaid: Scalars['String']['input'];
51515
51552
  };
51516
51553
  export declare type UnifiedQueryLearningCertificationArgs = {
51517
- aaid: Scalars['String']['input'];
51554
+ aaid?: InputMaybe<Scalars['String']['input']>;
51555
+ unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
51518
51556
  };
51519
51557
  export declare type UnifiedQueryUnifiedAccountArgs = {
51520
51558
  aaid: Scalars['String']['input'];
51521
51559
  };
51522
51560
  export declare type UnifiedQueryUnifiedProfileArgs = {
51523
- aaid: Scalars['String']['input'];
51561
+ aaid?: InputMaybe<Scalars['String']['input']>;
51562
+ unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
51524
51563
  };
51525
51564
  export declare type UnifiedQueryAccountSuccess = {
51526
51565
  __typename?: 'UnifiedQueryAccountSuccess';
@@ -51554,8 +51593,9 @@ export declare type UnifiedSystemCreateAccountSuccess = {
51554
51593
  export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
51555
51594
  export declare type UnifiedSystemInput = {
51556
51595
  aaid: Scalars['String']['input'];
51596
+ name?: InputMaybe<Scalars['String']['input']>;
51557
51597
  parentAccountEmailId: Scalars['String']['input'];
51558
- unifiedProfileUsername: Scalars['String']['input'];
51598
+ unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
51559
51599
  };
51560
51600
  export declare type UnifiedUserCertificateDataRes = {
51561
51601
  __typename?: 'UnifiedUserCertificateDataRes';
@@ -52199,7 +52239,6 @@ export declare type VirtualAgentConfiguration = Node & {
52199
52239
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
52200
52240
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
52201
52241
  isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
52202
- isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
52203
52242
  respondToQueries: Scalars['Boolean']['output'];
52204
52243
  standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
52205
52244
  virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
@@ -52488,7 +52527,6 @@ export declare type VirtualAgentMutationApi = {
52488
52527
  updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
52489
52528
  updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
52490
52529
  updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
52491
- updateJsmPortalConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
52492
52530
  updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
52493
52531
  };
52494
52532
  export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
@@ -52526,10 +52564,6 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
52526
52564
  input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
52527
52565
  virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
52528
52566
  };
52529
- export declare type VirtualAgentMutationApiUpdateJsmPortalConfigurationArgs = {
52530
- input: VirtualAgentUpdateJsmPortalSettingsInput;
52531
- virtualAgentConfigurationId: Scalars['ID']['input'];
52532
- };
52533
52567
  export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
52534
52568
  input: VirtualAgentUpdateConfigurationInput;
52535
52569
  virtualAgentConfigurationId: Scalars['ID']['input'];
@@ -52634,15 +52668,6 @@ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Pay
52634
52668
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
52635
52669
  success: Scalars['Boolean']['output'];
52636
52670
  };
52637
- export declare type VirtualAgentUpdateJsmPortalSettingsInput = {
52638
- isEnabledOnJsmPortal: Scalars['Boolean']['input'];
52639
- };
52640
- export declare type VirtualAgentUpdateJsmPortalSettingsPayload = Payload & {
52641
- __typename?: 'VirtualAgentUpdateJsmPortalSettingsPayload';
52642
- errors?: Maybe<Array<MutationError>>;
52643
- success: Scalars['Boolean']['output'];
52644
- virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
52645
- };
52646
52671
  export declare type VirtualAgentUpdatedQuestionInput = {
52647
52672
  id: Scalars['ID']['input'];
52648
52673
  question: Scalars['String']['input'];