@forge/cli-shared 3.17.0-next.10 → 3.17.0-next.11

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,14 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.17.0-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 593cb3ea: cater for workspace based products
8
+ - Updated dependencies [c07722bd]
9
+ - Updated dependencies [ef2ad94e]
10
+ - @forge/manifest@4.17.1-next.6
11
+
3
12
  ## 3.17.0-next.10
4
13
 
5
14
  ### Patch Changes
@@ -609,7 +609,8 @@ export declare enum ApiGroup {
609
609
  CloudAdmin = "CLOUD_ADMIN",
610
610
  CustomerService = "CUSTOMER_SERVICE",
611
611
  SurfacePlatform = "SURFACE_PLATFORM",
612
- AppRecommendations = "APP_RECOMMENDATIONS"
612
+ AppRecommendations = "APP_RECOMMENDATIONS",
613
+ FeatureReleaseQuery = "FEATURE_RELEASE_QUERY"
613
614
  }
614
615
  export type App = {
615
616
  __typename?: 'App';
@@ -2781,6 +2782,7 @@ export type CompassCatalogMutationApi = {
2781
2782
  updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
2782
2783
  deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
2783
2784
  createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
2785
+ updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
2784
2786
  createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
2785
2787
  deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
2786
2788
  createWebhook?: Maybe<CompassCreateWebhookPayload>;
@@ -2952,6 +2954,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
2952
2954
  export type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
2953
2955
  input: CreateCompassComponentFromTemplateInput;
2954
2956
  };
2957
+ export type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
2958
+ input: UpdateCompassUserDefinedParametersInput;
2959
+ };
2955
2960
  export type CompassCatalogMutationApiCreateStarredComponentArgs = {
2956
2961
  input: CreateCompassStarredComponentInput;
2957
2962
  };
@@ -3868,6 +3873,14 @@ export type CompassFlagEventProperties = {
3868
3873
  id: Scalars['ID'];
3869
3874
  status?: Maybe<Scalars['String']>;
3870
3875
  };
3876
+ export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & {
3877
+ __typename?: 'CompassFreeformUserDefinedParameter';
3878
+ id: Scalars['ID'];
3879
+ name: Scalars['String'];
3880
+ type: Scalars['String'];
3881
+ description?: Maybe<Scalars['String']>;
3882
+ defaultValue?: Maybe<Scalars['String']>;
3883
+ };
3871
3884
  export type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & CompassCustomFieldScorecardCriteria & {
3872
3885
  __typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
3873
3886
  id: Scalars['ID'];
@@ -4693,6 +4706,17 @@ export type CompassUpdateTeamCheckinPayload = Payload & {
4693
4706
  export type CompassUpdateTeamCheckinResponseRichText = {
4694
4707
  adf?: Maybe<Scalars['String']>;
4695
4708
  };
4709
+ export type CompassUserDefinedParameter = {
4710
+ id: Scalars['ID'];
4711
+ name: Scalars['String'];
4712
+ type: Scalars['String'];
4713
+ description?: Maybe<Scalars['String']>;
4714
+ };
4715
+ export type CompassUserDefinedParameters = {
4716
+ __typename?: 'CompassUserDefinedParameters';
4717
+ componentId: Scalars['ID'];
4718
+ parameters?: Maybe<Array<CompassUserDefinedParameter>>;
4719
+ };
4696
4720
  export type CompassViewerSubscription = {
4697
4721
  __typename?: 'CompassViewerSubscription';
4698
4722
  subscribed: Scalars['Boolean'];
@@ -6242,6 +6266,11 @@ export type CreateCompassFieldInput = {
6242
6266
  definition: Scalars['ID'];
6243
6267
  value: CompassFieldValueInput;
6244
6268
  };
6269
+ export type CreateCompassFreeformUserDefinedParameterInput = {
6270
+ name: Scalars['String'];
6271
+ description?: Maybe<Scalars['String']>;
6272
+ defaultValue?: Maybe<Scalars['String']>;
6273
+ };
6245
6274
  export type CreateCompassHasDescriptionScorecardCriteriaInput = {
6246
6275
  weight: Scalars['Int'];
6247
6276
  };
@@ -6323,6 +6352,9 @@ export type CreateCompassStarredComponentPayload = Payload & {
6323
6352
  success: Scalars['Boolean'];
6324
6353
  errors?: Maybe<Array<MutationError>>;
6325
6354
  };
6355
+ export type CreateCompassUserDefinedParameterInput = {
6356
+ freeformField?: Maybe<CreateCompassFreeformUserDefinedParameterInput>;
6357
+ };
6326
6358
  export type CreateCustomFilterInput = {
6327
6359
  boardId: Scalars['ID'];
6328
6360
  name: Scalars['String'];
@@ -8908,6 +8940,69 @@ export type ExternalAuthProvider = {
8908
8940
  displayName: Scalars['String'];
8909
8941
  url: Scalars['URL'];
8910
8942
  };
8943
+ export type FeatureRelease = {
8944
+ __typename?: 'FeatureRelease';
8945
+ latestTransition: FeatureReleaseFeatureFlagTransition;
8946
+ transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
8947
+ transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
8948
+ transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
8949
+ };
8950
+ export type FeatureReleaseLatestTransitionArgs = {
8951
+ cloudId: Scalars['ID'];
8952
+ featureFlagId: Scalars['ID'];
8953
+ };
8954
+ export type FeatureReleaseTransitionsByCloudIdArgs = {
8955
+ after?: Maybe<Scalars['String']>;
8956
+ cloudId: Scalars['ID'];
8957
+ filter?: Maybe<FeatureReleaseFeatureFlagFilter>;
8958
+ first?: Maybe<Scalars['Int']>;
8959
+ timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
8960
+ };
8961
+ export type FeatureReleaseTransitionsByFeatureFlagIdArgs = {
8962
+ after?: Maybe<Scalars['String']>;
8963
+ featureFlagId: Scalars['ID'];
8964
+ filter?: Maybe<FeatureReleaseCloudIdFilter>;
8965
+ first?: Maybe<Scalars['Int']>;
8966
+ timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
8967
+ };
8968
+ export type FeatureReleaseTransitionsByMonthArgs = {
8969
+ after?: Maybe<Scalars['String']>;
8970
+ cloudIdFilter?: Maybe<FeatureReleaseCloudIdFilter>;
8971
+ featureFlagFilter?: Maybe<FeatureReleaseFeatureFlagFilter>;
8972
+ first?: Maybe<Scalars['Int']>;
8973
+ month: Scalars['String'];
8974
+ timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
8975
+ };
8976
+ export type FeatureReleaseCloudIdFilter = {
8977
+ cloudIds: Array<Maybe<Scalars['String']>>;
8978
+ };
8979
+ export type FeatureReleaseFeatureFlagFilter = {
8980
+ featureFlagIds: Array<Maybe<Scalars['String']>>;
8981
+ };
8982
+ export type FeatureReleaseFeatureFlagTransition = {
8983
+ __typename?: 'FeatureReleaseFeatureFlagTransition';
8984
+ evaluationResult: Scalars['String'];
8985
+ featureFlagKey: Scalars['String'];
8986
+ month: Scalars['String'];
8987
+ reason: Scalars['String'];
8988
+ tenantId: Scalars['String'];
8989
+ tenantType: Scalars['String'];
8990
+ timestamp: Scalars['Int'];
8991
+ };
8992
+ export type FeatureReleaseFeatureFlagTransitionConnection = {
8993
+ __typename?: 'FeatureReleaseFeatureFlagTransitionConnection';
8994
+ edges: Array<Maybe<FeatureReleaseFeatureFlagTransitionEdge>>;
8995
+ pageInfo: PageInfo;
8996
+ };
8997
+ export type FeatureReleaseFeatureFlagTransitionEdge = {
8998
+ __typename?: 'FeatureReleaseFeatureFlagTransitionEdge';
8999
+ cursor: Scalars['String'];
9000
+ node?: Maybe<FeatureReleaseFeatureFlagTransition>;
9001
+ };
9002
+ export type FeatureReleaseTimeRangeInput = {
9003
+ endEpoch?: Maybe<Scalars['Int']>;
9004
+ startEpoch?: Maybe<Scalars['Int']>;
9005
+ };
8911
9006
  export type FilterQuery = {
8912
9007
  __typename?: 'FilterQuery';
8913
9008
  sanitisedJql: Scalars['String'];
@@ -10595,6 +10690,179 @@ export type InCompleteCardsDestination = {
10595
10690
  sprintName?: Maybe<Scalars['String']>;
10596
10691
  destination?: Maybe<SoftwareCardsDestinationEnum>;
10597
10692
  };
10693
+ export type InfluentsNotificationAction = {
10694
+ __typename?: 'InfluentsNotificationAction';
10695
+ title: Scalars['String'];
10696
+ url?: Maybe<Scalars['String']>;
10697
+ appearance: InfluentsNotificationAppearance;
10698
+ };
10699
+ export type InfluentsNotificationActor = {
10700
+ __typename?: 'InfluentsNotificationActor';
10701
+ displayName?: Maybe<Scalars['String']>;
10702
+ ari?: Maybe<Scalars['String']>;
10703
+ avatarURL?: Maybe<Scalars['String']>;
10704
+ };
10705
+ export type InfluentsNotificationAnalyticsAttribute = {
10706
+ __typename?: 'InfluentsNotificationAnalyticsAttribute';
10707
+ key?: Maybe<Scalars['String']>;
10708
+ value?: Maybe<Scalars['String']>;
10709
+ };
10710
+ export declare enum InfluentsNotificationAppearance {
10711
+ Default = "DEFAULT",
10712
+ Primary = "PRIMARY",
10713
+ Link = "LINK",
10714
+ Subtle = "SUBTLE",
10715
+ Warning = "WARNING",
10716
+ Danger = "DANGER"
10717
+ }
10718
+ export type InfluentsNotificationBodyItem = {
10719
+ __typename?: 'InfluentsNotificationBodyItem';
10720
+ type?: Maybe<Scalars['String']>;
10721
+ appearance?: Maybe<Scalars['String']>;
10722
+ document?: Maybe<InfluentsNotificationDocument>;
10723
+ author?: Maybe<InfluentsNotificationActor>;
10724
+ };
10725
+ export declare enum InfluentsNotificationCategory {
10726
+ Direct = "direct",
10727
+ Watching = "watching"
10728
+ }
10729
+ export type InfluentsNotificationContent = {
10730
+ __typename?: 'InfluentsNotificationContent';
10731
+ type: Scalars['String'];
10732
+ message: Scalars['String'];
10733
+ url?: Maybe<Scalars['String']>;
10734
+ actor: InfluentsNotificationActor;
10735
+ entity?: Maybe<InfluentsNotificationEntity>;
10736
+ path?: Maybe<Array<InfluentsNotificationPath>>;
10737
+ actions?: Maybe<Array<InfluentsNotificationAction>>;
10738
+ bodyItems?: Maybe<Array<InfluentsNotificationBodyItem>>;
10739
+ templateVariables?: Maybe<Array<InfluentsNotificationTemplateVariable>>;
10740
+ };
10741
+ export type InfluentsNotificationDocument = {
10742
+ __typename?: 'InfluentsNotificationDocument';
10743
+ format?: Maybe<Scalars['String']>;
10744
+ data?: Maybe<Scalars['String']>;
10745
+ };
10746
+ export type InfluentsNotificationEntity = {
10747
+ __typename?: 'InfluentsNotificationEntity';
10748
+ title?: Maybe<Scalars['String']>;
10749
+ iconUrl?: Maybe<Scalars['String']>;
10750
+ url?: Maybe<Scalars['String']>;
10751
+ };
10752
+ export type InfluentsNotificationFeedFilter = {
10753
+ workspaceId?: Maybe<Scalars['String']>;
10754
+ categoryFilter?: Maybe<InfluentsNotificationCategory>;
10755
+ readStateFilter?: Maybe<InfluentsNotificationReadState>;
10756
+ productFilter?: Maybe<Scalars['String']>;
10757
+ groupId?: Maybe<Scalars['String']>;
10758
+ };
10759
+ export type InfluentsNotificationGroupedConnection = {
10760
+ __typename?: 'InfluentsNotificationGroupedConnection';
10761
+ nodes: Array<InfluentsNotificationGroupedItem>;
10762
+ pageInfo: InfluentsNotificationPageInfo;
10763
+ };
10764
+ export type InfluentsNotificationGroupedItem = {
10765
+ __typename?: 'InfluentsNotificationGroupedItem';
10766
+ groupId: Scalars['ID'];
10767
+ groupSize: Scalars['Int'];
10768
+ headNotification: InfluentsNotificationItem;
10769
+ childItems?: Maybe<Array<InfluentsNotificationItem>>;
10770
+ };
10771
+ export type InfluentsNotificationGroupedItemChildItemsArgs = {
10772
+ first?: Maybe<Scalars['Int']>;
10773
+ after?: Maybe<Scalars['String']>;
10774
+ };
10775
+ export type InfluentsNotificationItem = {
10776
+ __typename?: 'InfluentsNotificationItem';
10777
+ notificationId: Scalars['ID'];
10778
+ timestamp: Scalars['DateTime'];
10779
+ content: InfluentsNotificationContent;
10780
+ readState: InfluentsNotificationReadState;
10781
+ category: InfluentsNotificationCategory;
10782
+ workspaceId?: Maybe<Scalars['String']>;
10783
+ analyticsAttributes?: Maybe<Array<InfluentsNotificationAnalyticsAttribute>>;
10784
+ };
10785
+ export type InfluentsNotificationMutation = {
10786
+ __typename?: 'InfluentsNotificationMutation';
10787
+ markNotificationsAsRead?: Maybe<Scalars['String']>;
10788
+ markNotificationsAsUnread?: Maybe<Scalars['String']>;
10789
+ markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
10790
+ markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
10791
+ markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
10792
+ markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
10793
+ archiveNotifications?: Maybe<Scalars['String']>;
10794
+ };
10795
+ export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
10796
+ category?: Maybe<InfluentsNotificationCategory>;
10797
+ product?: Maybe<Scalars['String']>;
10798
+ workspaceId?: Maybe<Scalars['String']>;
10799
+ beforeInclusive?: Maybe<Scalars['String']>;
10800
+ beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
10801
+ };
10802
+ export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
10803
+ category?: Maybe<InfluentsNotificationCategory>;
10804
+ product?: Maybe<Scalars['String']>;
10805
+ workspaceId?: Maybe<Scalars['String']>;
10806
+ beforeInclusive?: Maybe<Scalars['String']>;
10807
+ beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
10808
+ };
10809
+ export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
10810
+ category?: Maybe<InfluentsNotificationCategory>;
10811
+ groupId?: Maybe<Scalars['String']>;
10812
+ beforeInclusive?: Maybe<Scalars['String']>;
10813
+ };
10814
+ export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
10815
+ category?: Maybe<InfluentsNotificationCategory>;
10816
+ groupId?: Maybe<Scalars['String']>;
10817
+ beforeInclusive?: Maybe<Scalars['String']>;
10818
+ };
10819
+ export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
10820
+ ids: Array<Scalars['String']>;
10821
+ };
10822
+ export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
10823
+ ids: Array<Scalars['String']>;
10824
+ };
10825
+ export type InfluentsNotificationMutationArchiveNotificationsArgs = {
10826
+ ids: Array<Scalars['String']>;
10827
+ };
10828
+ export type InfluentsNotificationPageInfo = {
10829
+ __typename?: 'InfluentsNotificationPageInfo';
10830
+ hasNextPage: Scalars['Boolean'];
10831
+ hasPreviousPage: Scalars['Boolean'];
10832
+ startCursor?: Maybe<Scalars['String']>;
10833
+ endCursor?: Maybe<Scalars['String']>;
10834
+ };
10835
+ export type InfluentsNotificationPath = {
10836
+ __typename?: 'InfluentsNotificationPath';
10837
+ title?: Maybe<Scalars['String']>;
10838
+ url?: Maybe<Scalars['String']>;
10839
+ iconUrl?: Maybe<Scalars['String']>;
10840
+ };
10841
+ export type InfluentsNotificationQuery = {
10842
+ __typename?: 'InfluentsNotificationQuery';
10843
+ notificationFeed: InfluentsNotificationGroupedConnection;
10844
+ unseenNotificationCount: Scalars['Int'];
10845
+ };
10846
+ export type InfluentsNotificationQueryNotificationFeedArgs = {
10847
+ feedFilter?: Maybe<InfluentsNotificationFeedFilter>;
10848
+ first?: Maybe<Scalars['Int']>;
10849
+ after?: Maybe<Scalars['String']>;
10850
+ };
10851
+ export type InfluentsNotificationQueryUnseenNotificationCountArgs = {
10852
+ workspaceId?: Maybe<Scalars['String']>;
10853
+ product?: Maybe<Scalars['String']>;
10854
+ };
10855
+ export declare enum InfluentsNotificationReadState {
10856
+ Unread = "unread",
10857
+ Read = "read"
10858
+ }
10859
+ export type InfluentsNotificationTemplateVariable = {
10860
+ __typename?: 'InfluentsNotificationTemplateVariable';
10861
+ name: Scalars['String'];
10862
+ type: Scalars['String'];
10863
+ id: Scalars['ID'];
10864
+ fallback: Scalars['String'];
10865
+ };
10598
10866
  export type InlineCardCreateConfig = {
10599
10867
  __typename?: 'InlineCardCreateConfig';
10600
10868
  enabled: Scalars['Boolean'];
@@ -10951,6 +11219,7 @@ export declare enum IssueDevOpsPullRequestStatus {
10951
11219
  Open = "OPEN",
10952
11220
  Merged = "MERGED",
10953
11221
  Declined = "DECLINED",
11222
+ Draft = "DRAFT",
10954
11223
  Unknown = "UNKNOWN"
10955
11224
  }
10956
11225
  export type IssueDevOpsRemoteLink = {
@@ -15477,6 +15746,7 @@ export type JiraProject = Node & {
15477
15746
  devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
15478
15747
  devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
15479
15748
  linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
15749
+ totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
15480
15750
  linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
15481
15751
  linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
15482
15752
  repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -19833,6 +20103,7 @@ export type Mutation = {
19833
20103
  createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
19834
20104
  updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
19835
20105
  updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
20106
+ updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
19836
20107
  updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
19837
20108
  deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
19838
20109
  updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
@@ -19884,6 +20155,7 @@ export type Mutation = {
19884
20155
  watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
19885
20156
  unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
19886
20157
  compass?: Maybe<CompassCatalogMutationApi>;
20158
+ notifications?: Maybe<InfluentsNotificationMutation>;
19887
20159
  customerService?: Maybe<CustomerServiceMutationApi>;
19888
20160
  shepherd?: Maybe<ShepherdMutation>;
19889
20161
  helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
@@ -20083,6 +20355,9 @@ export type MutationUpdatePolarisCalculatedFieldArgs = {
20083
20355
  export type MutationUpdatePolarisFieldDescriptionArgs = {
20084
20356
  input: UpdatePolarisFieldDescriptionInput;
20085
20357
  };
20358
+ export type MutationUpdatePolarisFieldArgs = {
20359
+ input: UpdatePolarisFieldInput;
20360
+ };
20086
20361
  export type MutationUpdatePolarisFieldEmojiArgs = {
20087
20362
  input: UpdatePolarisFieldEmojiInput;
20088
20363
  };
@@ -20549,12 +20824,18 @@ export type NlpFollowUpResponse = {
20549
20824
  __typename?: 'NlpFollowUpResponse';
20550
20825
  followUps?: Maybe<Array<Scalars['String']>>;
20551
20826
  };
20827
+ export type NlpFollowUpResult = {
20828
+ __typename?: 'NlpFollowUpResult';
20829
+ followUp?: Maybe<Scalars['String']>;
20830
+ followUpAnswers?: Maybe<Array<NlpSearchResult>>;
20831
+ };
20552
20832
  export type NlpSearchResponse = {
20553
20833
  __typename?: 'NlpSearchResponse';
20554
20834
  nlpResults?: Maybe<Array<NlpSearchResult>>;
20555
20835
  uniqueSources?: Maybe<Array<NlpSource>>;
20556
20836
  errorState?: Maybe<NlpErrorState>;
20557
20837
  disclaimer?: Maybe<NlpDisclaimer>;
20838
+ nlpFollowResults?: Maybe<Array<NlpFollowUpResult>>;
20558
20839
  };
20559
20840
  export type NlpSearchResult = {
20560
20841
  __typename?: 'NlpSearchResult';
@@ -22330,6 +22611,7 @@ export type Query = {
22330
22611
  productListings: Array<ProductListingResult>;
22331
22612
  marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
22332
22613
  compass?: Maybe<CompassCatalogQueryApi>;
22614
+ notifications?: Maybe<InfluentsNotificationQuery>;
22333
22615
  extensionsEcho?: Maybe<Scalars['String']>;
22334
22616
  extensionContexts?: Maybe<Array<ExtensionContext>>;
22335
22617
  extensionContext?: Maybe<ExtensionContext>;
@@ -22337,6 +22619,7 @@ export type Query = {
22337
22619
  echo?: Maybe<Scalars['String']>;
22338
22620
  diagnostics?: Maybe<Scalars['JSON']>;
22339
22621
  node?: Maybe<Node>;
22622
+ featureRelease?: Maybe<FeatureRelease>;
22340
22623
  customerService?: Maybe<CustomerServiceQueryApi>;
22341
22624
  activities?: Maybe<Activities>;
22342
22625
  activity?: Maybe<Activity>;
@@ -22772,6 +23055,7 @@ export type QueryNlpSearchArgs = {
22772
23055
  query?: Maybe<Scalars['String']>;
22773
23056
  locations: Array<Scalars['String']>;
22774
23057
  locale?: Maybe<Scalars['String']>;
23058
+ followups_enabled?: Maybe<Scalars['Boolean']>;
22775
23059
  };
22776
23060
  export type QueryNlpFollowUpArgs = {
22777
23061
  query?: Maybe<Scalars['String']>;
@@ -27481,6 +27765,16 @@ export type UpdateCompassScorecardPayload = Payload & {
27481
27765
  errors?: Maybe<Array<MutationError>>;
27482
27766
  scorecardDetails?: Maybe<CompassScorecard>;
27483
27767
  };
27768
+ export type UpdateCompassUserDefinedParametersInput = {
27769
+ componentId: Scalars['ID'];
27770
+ createParameters?: Maybe<Array<CreateCompassUserDefinedParameterInput>>;
27771
+ };
27772
+ export type UpdateCompassUserDefinedParametersPayload = Payload & {
27773
+ __typename?: 'UpdateCompassUserDefinedParametersPayload';
27774
+ success: Scalars['Boolean'];
27775
+ errors?: Maybe<Array<MutationError>>;
27776
+ userParameterDetails?: Maybe<CompassUserDefinedParameters>;
27777
+ };
27484
27778
  export type UpdateCustomFilterInput = {
27485
27779
  boardId: Scalars['ID'];
27486
27780
  id: Scalars['ID'];
@@ -27662,6 +27956,12 @@ export type UpdatePolarisFieldEmojiPayload = Payload & {
27662
27956
  errors?: Maybe<Array<MutationError>>;
27663
27957
  node?: Maybe<PolarisIdeaField>;
27664
27958
  };
27959
+ export type UpdatePolarisFieldInput = {
27960
+ field: Scalars['ID'];
27961
+ ideaType: Scalars['ID'];
27962
+ name: Scalars['String'];
27963
+ description: Scalars['String'];
27964
+ };
27665
27965
  export type UpdatePolarisFieldOptionWeightInput = {
27666
27966
  project: Scalars['ID'];
27667
27967
  field: Scalars['ID'];
@@ -27673,6 +27973,12 @@ export type UpdatePolarisFieldOptionWeightPayload = Payload & {
27673
27973
  success: Scalars['Boolean'];
27674
27974
  errors?: Maybe<Array<MutationError>>;
27675
27975
  };
27976
+ export type UpdatePolarisFieldPayload = Payload & {
27977
+ __typename?: 'UpdatePolarisFieldPayload';
27978
+ success: Scalars['Boolean'];
27979
+ errors?: Maybe<Array<MutationError>>;
27980
+ node?: Maybe<PolarisIdeaField>;
27981
+ };
27676
27982
  export type UpdatePolarisIdeaInput = {
27677
27983
  archived?: Maybe<Scalars['Boolean']>;
27678
27984
  lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;