@forge/cli-shared 3.10.1-next.0 → 3.10.2-next.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,22 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.10.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [44c6dad]
8
+ - @forge/util@1.2.3-next.0
9
+ - @forge/manifest@4.9.2-next.0
10
+
11
+ ## 3.10.1
12
+
13
+ ### Patch Changes
14
+
15
+ - e8d41b0: Bumping dependencies via Renovate:
16
+
17
+ - ignore-walk
18
+ - @types/ignore-walk
19
+
3
20
  ## 3.10.1-next.0
4
21
 
5
22
  ### Patch Changes
@@ -2435,6 +2435,12 @@ export declare type CompassComponentResult = CompassComponent | QueryError;
2435
2435
  export declare type CompassComponentScorecardScoreQuery = {
2436
2436
  scorecardId: Scalars['ID'];
2437
2437
  };
2438
+ export declare type CompassComponentStats = {
2439
+ __typename?: 'CompassComponentStats';
2440
+ passing: Scalars['Int'];
2441
+ needsWork: Scalars['Int'];
2442
+ failing: Scalars['Int'];
2443
+ };
2438
2444
  export declare type CompassComponentTier = {
2439
2445
  __typename?: 'CompassComponentTier';
2440
2446
  value?: Maybe<Scalars['String']>;
@@ -3507,6 +3513,7 @@ export declare type CompassScorecard = Node & {
3507
3513
  importance: CompassScorecardImportance;
3508
3514
  scorecardScore?: Maybe<CompassScorecardScore>;
3509
3515
  appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
3516
+ appliedToComponentStats?: Maybe<CompassScorecardComponentStatsQueryResult>;
3510
3517
  componentLabels?: Maybe<Array<CompassComponentLabel>>;
3511
3518
  componentTiers?: Maybe<Array<CompassComponentTier>>;
3512
3519
  changeMetadata: CompassChangeMetadata;
@@ -3541,6 +3548,12 @@ export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScor
3541
3548
  export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
3542
3549
  lt: Scalars['Int'];
3543
3550
  };
3551
+ export declare type CompassScorecardComponentStats = {
3552
+ __typename?: 'CompassScorecardComponentStats';
3553
+ componentStats?: Maybe<CompassComponentStats>;
3554
+ totalCount: Scalars['Int'];
3555
+ };
3556
+ export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
3544
3557
  export declare type CompassScorecardConnection = {
3545
3558
  __typename?: 'CompassScorecardConnection';
3546
3559
  edges?: Maybe<Array<CompassScorecardEdge>>;
@@ -5359,8 +5372,6 @@ export declare type CreateCompassScorecardInput = {
5359
5372
  name: Scalars['String'];
5360
5373
  description?: Maybe<Scalars['String']>;
5361
5374
  ownerId?: Maybe<Scalars['ID']>;
5362
- componentType?: Maybe<CompassComponentType>;
5363
- componentTypeId?: Maybe<Scalars['ID']>;
5364
5375
  componentTypeIds?: Maybe<Array<Scalars['ID']>>;
5365
5376
  importance: CompassScorecardImportance;
5366
5377
  criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
@@ -16741,6 +16752,7 @@ export declare type Mutation = {
16741
16752
  userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
16742
16753
  createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
16743
16754
  deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
16755
+ createThirdPartyContainer?: Maybe<ThirdPartyCreateContainerPayload>;
16744
16756
  watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
16745
16757
  unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
16746
16758
  compass?: Maybe<CompassCatalogMutationApi>;
@@ -17099,6 +17111,9 @@ export declare type MutationCreateWebTriggerUrlArgs = {
17099
17111
  export declare type MutationDeleteWebTriggerUrlArgs = {
17100
17112
  id: Scalars['ID'];
17101
17113
  };
17114
+ export declare type MutationCreateThirdPartyContainerArgs = {
17115
+ input: ThirdPartyCreateContainerInput;
17116
+ };
17102
17117
  export declare type MutationWatchMarketplaceAppArgs = {
17103
17118
  id: Scalars['ID'];
17104
17119
  };
@@ -18837,6 +18852,7 @@ export declare type PolarisView = {
18837
18852
  id: Scalars['ID'];
18838
18853
  xid?: Maybe<Scalars['Int']>;
18839
18854
  uuid: Scalars['ID'];
18855
+ createdAt?: Maybe<Scalars['String']>;
18840
18856
  name: Scalars['String'];
18841
18857
  emoji?: Maybe<Scalars['String']>;
18842
18858
  description?: Maybe<Scalars['JSON']>;
@@ -22480,6 +22496,19 @@ export declare type TestingActivityItem = Node & {
22480
22496
  __typename?: 'TestingActivityItem';
22481
22497
  id: Scalars['ID'];
22482
22498
  };
22499
+ export declare type ThirdPartyCreateContainerInput = {
22500
+ cloudId: Scalars['ID'];
22501
+ providerId?: Maybe<Scalars['ID']>;
22502
+ workspaceId?: Maybe<Scalars['ID']>;
22503
+ name: Scalars['String'];
22504
+ type?: Maybe<Scalars['String']>;
22505
+ };
22506
+ export declare type ThirdPartyCreateContainerPayload = Payload & {
22507
+ __typename?: 'ThirdPartyCreateContainerPayload';
22508
+ success: Scalars['Boolean'];
22509
+ errors?: Maybe<Array<MutationError>>;
22510
+ createdContainer?: Maybe<ThirdPartyEntity>;
22511
+ };
22483
22512
  export declare type ThirdPartyDetails = {
22484
22513
  __typename?: 'ThirdPartyDetails';
22485
22514
  name: Scalars['String'];
@@ -22487,6 +22516,7 @@ export declare type ThirdPartyDetails = {
22487
22516
  purpose: Scalars['String'];
22488
22517
  thirdPartyCountries: Array<Maybe<Scalars['String']>>;
22489
22518
  };
22519
+ export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
22490
22520
  export declare type ThirdPartyInformation = {
22491
22521
  __typename?: 'ThirdPartyInformation';
22492
22522
  isEndUserDataShared: Scalars['Boolean'];
@@ -23145,8 +23175,6 @@ export declare type UpdateCompassScorecardInput = {
23145
23175
  name?: Maybe<Scalars['String']>;
23146
23176
  description?: Maybe<Scalars['String']>;
23147
23177
  ownerId?: Maybe<Scalars['ID']>;
23148
- componentType?: Maybe<CompassComponentType>;
23149
- componentTypeId?: Maybe<Scalars['ID']>;
23150
23178
  componentTypeIds?: Maybe<Array<Scalars['ID']>>;
23151
23179
  importance?: Maybe<CompassScorecardImportance>;
23152
23180
  componentLabelNames?: Maybe<Array<Scalars['String']>>;
@@ -23637,6 +23665,16 @@ export declare type VirtualAgentConfigurationFlowEditorFlowArgs = {
23637
23665
  flowRevisionId: Scalars['String'];
23638
23666
  };
23639
23667
  export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
23668
+ export declare type VirtualAgentCreateChatChannelInput = {
23669
+ isTriageChannel: Scalars['Boolean'];
23670
+ isVirtualAgentTestChannel: Scalars['Boolean'];
23671
+ };
23672
+ export declare type VirtualAgentCreateChatChannelPayload = Payload & {
23673
+ __typename?: 'VirtualAgentCreateChatChannelPayload';
23674
+ success: Scalars['Boolean'];
23675
+ errors?: Maybe<Array<MutationError>>;
23676
+ channel?: Maybe<VirtualAgentSlackChannel>;
23677
+ };
23640
23678
  export declare type VirtualAgentCreateConfigurationInput = {
23641
23679
  respondToQueries?: Maybe<Scalars['Boolean']>;
23642
23680
  };
@@ -23797,6 +23835,8 @@ export declare type VirtualAgentMutationApi = {
23797
23835
  deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
23798
23836
  updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
23799
23837
  handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
23838
+ createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
23839
+ updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
23800
23840
  };
23801
23841
  export declare type VirtualAgentMutationApiCreateVirtualAgentConfigurationArgs = {
23802
23842
  jiraProjectId: Scalars['ID'];
@@ -23829,6 +23869,14 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
23829
23869
  virtualAgentFlowEditorId: Scalars['ID'];
23830
23870
  input: VirtualAgentFlowEditorActionInput;
23831
23871
  };
23872
+ export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
23873
+ virtualAgentConfigurationId: Scalars['ID'];
23874
+ input: VirtualAgentCreateChatChannelInput;
23875
+ };
23876
+ export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
23877
+ virtualAgentConfigurationId: Scalars['ID'];
23878
+ input: VirtualAgentUpdateChatChannelInput;
23879
+ };
23832
23880
  export declare type VirtualAgentProperties = {
23833
23881
  __typename?: 'VirtualAgentProperties';
23834
23882
  defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
@@ -23840,6 +23888,7 @@ export declare type VirtualAgentQueryApi = {
23840
23888
  __typename?: 'VirtualAgentQueryApi';
23841
23889
  virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
23842
23890
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
23891
+ validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
23843
23892
  };
23844
23893
  export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
23845
23894
  jiraProjectId: Scalars['ID'];
@@ -23849,6 +23898,10 @@ export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
23849
23898
  after?: Maybe<Scalars['String']>;
23850
23899
  filter: VirtualAgentIntentRuleProjectionsFilter;
23851
23900
  };
23901
+ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
23902
+ jiraProjectId: Scalars['ID'];
23903
+ requestTypeId: Scalars['String'];
23904
+ };
23852
23905
  export declare type VirtualAgentQueryError = {
23853
23906
  __typename?: 'VirtualAgentQueryError';
23854
23907
  id: Scalars['ID'];
@@ -23856,6 +23909,12 @@ export declare type VirtualAgentQueryError = {
23856
23909
  message?: Maybe<Scalars['String']>;
23857
23910
  extensions?: Maybe<Array<QueryErrorExtension>>;
23858
23911
  };
23912
+ export declare type VirtualAgentRequestTypeConnectionStatus = {
23913
+ __typename?: 'VirtualAgentRequestTypeConnectionStatus';
23914
+ connectionStatus?: Maybe<Scalars['String']>;
23915
+ hasUnsupportedFields?: Maybe<Scalars['Boolean']>;
23916
+ hasRequiredFields?: Maybe<Scalars['Boolean']>;
23917
+ };
23859
23918
  export declare type VirtualAgentSlackChannel = {
23860
23919
  __typename?: 'VirtualAgentSlackChannel';
23861
23920
  id?: Maybe<Scalars['String']>;
@@ -23877,6 +23936,16 @@ export declare type VirtualAgentStatisticsProjection = {
23877
23936
  globalStatistics?: Maybe<VirtualAgentGlobalStatisticsProjection>;
23878
23937
  statisticsPercentageChange?: Maybe<VirtualAgentStatisticsPercentageChangeProjection>;
23879
23938
  };
23939
+ export declare type VirtualAgentUpdateChatChannelInput = {
23940
+ halpChannelId: Scalars['String'];
23941
+ isVirtualAgentChannel: Scalars['Boolean'];
23942
+ };
23943
+ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
23944
+ __typename?: 'VirtualAgentUpdateChatChannelPayload';
23945
+ success: Scalars['Boolean'];
23946
+ errors?: Maybe<Array<MutationError>>;
23947
+ channel?: Maybe<VirtualAgentSlackChannel>;
23948
+ };
23880
23949
  export declare type VirtualAgentUpdateConfigurationInput = {
23881
23950
  respondToQueries?: Maybe<Scalars['Boolean']>;
23882
23951
  properties?: Maybe<VirtualAgentPropertiesInput>;