@forge/cli-shared 3.6.1 → 3.6.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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.6.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 1eca527: Type-safe argument and option handling
8
+
3
9
  ## 3.6.1
4
10
 
5
11
  ### Patch Changes
@@ -797,6 +797,7 @@ export declare type AppRecContext = {
797
797
  };
798
798
  export declare type AppRecDismissRecommendationInput = {
799
799
  appId: Scalars['ID'];
800
+ context?: Maybe<AppRecContext>;
800
801
  };
801
802
  export declare type AppRecDismissRecommendationPayload = Payload & {
802
803
  __typename?: 'AppRecDismissRecommendationPayload';
@@ -4903,8 +4904,8 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
4903
4904
  featureRolloutDates?: Maybe<Array<Scalars['String']>>;
4904
4905
  releaseNoteFlags?: Maybe<Array<Scalars['String']>>;
4905
4906
  productFeatureFlags?: Maybe<Scalars['JSON']>;
4906
- featureFlagEnvironment?: Maybe<Scalars['JSON']>;
4907
- featureFlagProject?: Maybe<Scalars['JSON']>;
4907
+ featureFlagEnvironment?: Maybe<Scalars['String']>;
4908
+ featureFlagProject?: Maybe<Scalars['String']>;
4908
4909
  releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
4909
4910
  updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
4910
4911
  };
@@ -7370,16 +7371,12 @@ export declare type Extension = {
7370
7371
  export declare type ExtensionContext = {
7371
7372
  __typename?: 'ExtensionContext';
7372
7373
  id: Scalars['ID'];
7373
- extensions: Array<Extension>;
7374
7374
  extensionsByType: Array<Extension>;
7375
7375
  installationsSummary?: Maybe<Array<InstallationSummary>>;
7376
7376
  appAuditLogs: AppAuditConnection;
7377
7377
  userConsentByAaid?: Maybe<Array<UserConsent>>;
7378
7378
  installations?: Maybe<AppInstallationConnection>;
7379
7379
  };
7380
- export declare type ExtensionContextExtensionsArgs = {
7381
- filter?: Maybe<Array<ExtensionContextsFilter>>;
7382
- };
7383
7380
  export declare type ExtensionContextExtensionsByTypeArgs = {
7384
7381
  type: Scalars['String'];
7385
7382
  principalType?: Maybe<PrincipalType>;
@@ -7400,7 +7397,7 @@ export declare type ExtensionContextInstallationsArgs = {
7400
7397
  };
7401
7398
  export declare type ExtensionContextsFilter = {
7402
7399
  type: ExtensionContextsFilterType;
7403
- value: Scalars['String'];
7400
+ value: Array<Scalars['String']>;
7404
7401
  };
7405
7402
  export declare enum ExtensionContextsFilterType {
7406
7403
  Container = "CONTAINER",
@@ -11041,6 +11038,7 @@ export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
11041
11038
  export declare type JiraJqlBuilderFieldsArgs = {
11042
11039
  jqlContext?: Maybe<Scalars['String']>;
11043
11040
  searchString?: Maybe<Scalars['String']>;
11041
+ excludeFields?: Maybe<Array<Scalars['String']>>;
11044
11042
  forClause?: Maybe<JiraJqlClauseType>;
11045
11043
  first?: Maybe<Scalars['Int']>;
11046
11044
  after?: Maybe<Scalars['String']>;
@@ -19063,8 +19061,8 @@ export declare type QueryReleaseNotesArgs = {
19063
19061
  filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
19064
19062
  filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
19065
19063
  productFeatureFlags?: Maybe<Scalars['JSON']>;
19066
- featureFlagEnvironment?: Maybe<Scalars['JSON']>;
19067
- featureFlagProject?: Maybe<Scalars['JSON']>;
19064
+ featureFlagEnvironment?: Maybe<Scalars['String']>;
19065
+ featureFlagProject?: Maybe<Scalars['String']>;
19068
19066
  publishedOnly?: Maybe<Scalars['Boolean']>;
19069
19067
  orderBy?: Maybe<Scalars['String']>;
19070
19068
  };
@@ -23500,6 +23498,20 @@ export declare type VirtualAgentFlowEditor = Node & {
23500
23498
  group?: Maybe<Scalars['String']>;
23501
23499
  jsonRepresentation?: Maybe<Scalars['String']>;
23502
23500
  };
23501
+ export declare type VirtualAgentFlowEditorAction = {
23502
+ actionType: Scalars['String'];
23503
+ payload: Scalars['JSON'];
23504
+ };
23505
+ export declare type VirtualAgentFlowEditorActionInput = {
23506
+ jsonRepresentation: Scalars['String'];
23507
+ actions: Array<VirtualAgentFlowEditorAction>;
23508
+ };
23509
+ export declare type VirtualAgentFlowEditorActionPayload = Payload & {
23510
+ __typename?: 'VirtualAgentFlowEditorActionPayload';
23511
+ success: Scalars['Boolean'];
23512
+ errors?: Maybe<Array<MutationError>>;
23513
+ jsonRepresentation?: Maybe<Scalars['String']>;
23514
+ };
23503
23515
  export declare type VirtualAgentFlowEditorEdge = {
23504
23516
  __typename?: 'VirtualAgentFlowEditorEdge';
23505
23517
  cursor: Scalars['String'];
@@ -23603,6 +23615,7 @@ export declare type VirtualAgentMutationApi = {
23603
23615
  updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
23604
23616
  deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
23605
23617
  updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
23618
+ handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
23606
23619
  };
23607
23620
  export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
23608
23621
  input: VirtualAgentUpdateConfigurationInput;
@@ -23626,6 +23639,10 @@ export declare type VirtualAgentMutationApiUpdateFlowEditorFlowArgs = {
23626
23639
  virtualAgentFlowEditorId: Scalars['ID'];
23627
23640
  input: VirtualAgentFlowEditorInput;
23628
23641
  };
23642
+ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
23643
+ virtualAgentFlowEditorId: Scalars['ID'];
23644
+ input: VirtualAgentFlowEditorActionInput;
23645
+ };
23629
23646
  export declare type VirtualAgentQueryApi = {
23630
23647
  __typename?: 'VirtualAgentQueryApi';
23631
23648
  virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;