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

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,21 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.17.0-next.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [39964989]
8
+ - @forge/manifest@4.18.0-next.7
9
+
10
+ ## 3.17.0-next.11
11
+
12
+ ### Patch Changes
13
+
14
+ - 593cb3ea: cater for workspace based products
15
+ - Updated dependencies [c07722bd]
16
+ - Updated dependencies [ef2ad94e]
17
+ - @forge/manifest@4.17.1-next.6
18
+
3
19
  ## 3.17.0-next.10
4
20
 
5
21
  ### Patch Changes
@@ -323,6 +323,17 @@ export type AddCompassComponentLabelsPayload = Payload & {
323
323
  errors?: Maybe<Array<MutationError>>;
324
324
  componentDetails?: Maybe<CompassComponent>;
325
325
  };
326
+ export type AddMultipleAppContributorInput = {
327
+ appId: Scalars['ID'];
328
+ newContributorEmails: Array<Scalars['String']>;
329
+ role: AppContributorRole;
330
+ };
331
+ export type AddMultipleAppContributorResponsePayload = Payload & {
332
+ __typename?: 'AddMultipleAppContributorResponsePayload';
333
+ success: Scalars['Boolean'];
334
+ contributorsFailed: Array<Maybe<ContributorFailed>>;
335
+ errors?: Maybe<Array<MutationError>>;
336
+ };
326
337
  export type AddPolarisColumnInput = {
327
338
  before?: Maybe<Scalars['ID']>;
328
339
  field: Scalars['ID'];
@@ -609,7 +620,8 @@ export declare enum ApiGroup {
609
620
  CloudAdmin = "CLOUD_ADMIN",
610
621
  CustomerService = "CUSTOMER_SERVICE",
611
622
  SurfacePlatform = "SURFACE_PLATFORM",
612
- AppRecommendations = "APP_RECOMMENDATIONS"
623
+ AppRecommendations = "APP_RECOMMENDATIONS",
624
+ FeatureReleaseQuery = "FEATURE_RELEASE_QUERY"
613
625
  }
614
626
  export type App = {
615
627
  __typename?: 'App';
@@ -2781,6 +2793,7 @@ export type CompassCatalogMutationApi = {
2781
2793
  updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
2782
2794
  deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
2783
2795
  createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
2796
+ updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
2784
2797
  createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
2785
2798
  deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
2786
2799
  createWebhook?: Maybe<CompassCreateWebhookPayload>;
@@ -2952,6 +2965,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
2952
2965
  export type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
2953
2966
  input: CreateCompassComponentFromTemplateInput;
2954
2967
  };
2968
+ export type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
2969
+ input: UpdateCompassUserDefinedParametersInput;
2970
+ };
2955
2971
  export type CompassCatalogMutationApiCreateStarredComponentArgs = {
2956
2972
  input: CreateCompassStarredComponentInput;
2957
2973
  };
@@ -3868,6 +3884,14 @@ export type CompassFlagEventProperties = {
3868
3884
  id: Scalars['ID'];
3869
3885
  status?: Maybe<Scalars['String']>;
3870
3886
  };
3887
+ export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & {
3888
+ __typename?: 'CompassFreeformUserDefinedParameter';
3889
+ id: Scalars['ID'];
3890
+ name: Scalars['String'];
3891
+ type: Scalars['String'];
3892
+ description?: Maybe<Scalars['String']>;
3893
+ defaultValue?: Maybe<Scalars['String']>;
3894
+ };
3871
3895
  export type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & CompassCustomFieldScorecardCriteria & {
3872
3896
  __typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
3873
3897
  id: Scalars['ID'];
@@ -4693,6 +4717,17 @@ export type CompassUpdateTeamCheckinPayload = Payload & {
4693
4717
  export type CompassUpdateTeamCheckinResponseRichText = {
4694
4718
  adf?: Maybe<Scalars['String']>;
4695
4719
  };
4720
+ export type CompassUserDefinedParameter = {
4721
+ id: Scalars['ID'];
4722
+ name: Scalars['String'];
4723
+ type: Scalars['String'];
4724
+ description?: Maybe<Scalars['String']>;
4725
+ };
4726
+ export type CompassUserDefinedParameters = {
4727
+ __typename?: 'CompassUserDefinedParameters';
4728
+ componentId: Scalars['ID'];
4729
+ parameters?: Maybe<Array<CompassUserDefinedParameter>>;
4730
+ };
4696
4731
  export type CompassViewerSubscription = {
4697
4732
  __typename?: 'CompassViewerSubscription';
4698
4733
  subscribed: Scalars['Boolean'];
@@ -6093,6 +6128,11 @@ export type ContextEventObject = {
6093
6128
  type: Scalars['String'];
6094
6129
  attributes: Scalars['JSON'];
6095
6130
  };
6131
+ export type ContributorFailed = {
6132
+ __typename?: 'ContributorFailed';
6133
+ email: Scalars['String'];
6134
+ reason: Scalars['String'];
6135
+ };
6096
6136
  export type CopyPolarisInsightsContainerInput = {
6097
6137
  project: Scalars['ID'];
6098
6138
  container?: Maybe<Scalars['ID']>;
@@ -6242,6 +6282,11 @@ export type CreateCompassFieldInput = {
6242
6282
  definition: Scalars['ID'];
6243
6283
  value: CompassFieldValueInput;
6244
6284
  };
6285
+ export type CreateCompassFreeformUserDefinedParameterInput = {
6286
+ name: Scalars['String'];
6287
+ description?: Maybe<Scalars['String']>;
6288
+ defaultValue?: Maybe<Scalars['String']>;
6289
+ };
6245
6290
  export type CreateCompassHasDescriptionScorecardCriteriaInput = {
6246
6291
  weight: Scalars['Int'];
6247
6292
  };
@@ -6323,6 +6368,9 @@ export type CreateCompassStarredComponentPayload = Payload & {
6323
6368
  success: Scalars['Boolean'];
6324
6369
  errors?: Maybe<Array<MutationError>>;
6325
6370
  };
6371
+ export type CreateCompassUserDefinedParameterInput = {
6372
+ freeformField?: Maybe<CreateCompassFreeformUserDefinedParameterInput>;
6373
+ };
6326
6374
  export type CreateCustomFilterInput = {
6327
6375
  boardId: Scalars['ID'];
6328
6376
  name: Scalars['String'];
@@ -6781,7 +6829,9 @@ export declare enum CustomerServiceAttributeTypeName {
6781
6829
  Text = "TEXT",
6782
6830
  Email = "EMAIL",
6783
6831
  Url = "URL",
6832
+ Date = "DATE",
6784
6833
  Number = "NUMBER",
6834
+ Phone = "PHONE",
6785
6835
  Select = "SELECT",
6786
6836
  Multiselect = "MULTISELECT"
6787
6837
  }
@@ -8640,6 +8690,7 @@ export type EcosystemMutation = {
8640
8690
  __typename?: 'EcosystemMutation';
8641
8691
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
8642
8692
  addAppContributor?: Maybe<AddAppContributorResponsePayload>;
8693
+ addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
8643
8694
  removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
8644
8695
  updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
8645
8696
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
@@ -8654,6 +8705,9 @@ export type EcosystemMutationUpdateAppHostServiceScopesArgs = {
8654
8705
  export type EcosystemMutationAddAppContributorArgs = {
8655
8706
  input: AddAppContributorInput;
8656
8707
  };
8708
+ export type EcosystemMutationAddMultipleAppContributorArgs = {
8709
+ input: AddMultipleAppContributorInput;
8710
+ };
8657
8711
  export type EcosystemMutationRemoveAppContributorsArgs = {
8658
8712
  input: RemoveAppContributorsInput;
8659
8713
  };
@@ -8908,6 +8962,69 @@ export type ExternalAuthProvider = {
8908
8962
  displayName: Scalars['String'];
8909
8963
  url: Scalars['URL'];
8910
8964
  };
8965
+ export type FeatureRelease = {
8966
+ __typename?: 'FeatureRelease';
8967
+ latestTransition: FeatureReleaseFeatureFlagTransition;
8968
+ transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
8969
+ transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
8970
+ transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
8971
+ };
8972
+ export type FeatureReleaseLatestTransitionArgs = {
8973
+ cloudId: Scalars['ID'];
8974
+ featureFlagId: Scalars['ID'];
8975
+ };
8976
+ export type FeatureReleaseTransitionsByCloudIdArgs = {
8977
+ after?: Maybe<Scalars['String']>;
8978
+ cloudId: Scalars['ID'];
8979
+ filter?: Maybe<FeatureReleaseFeatureFlagFilter>;
8980
+ first?: Maybe<Scalars['Int']>;
8981
+ timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
8982
+ };
8983
+ export type FeatureReleaseTransitionsByFeatureFlagIdArgs = {
8984
+ after?: Maybe<Scalars['String']>;
8985
+ featureFlagId: Scalars['ID'];
8986
+ filter?: Maybe<FeatureReleaseCloudIdFilter>;
8987
+ first?: Maybe<Scalars['Int']>;
8988
+ timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
8989
+ };
8990
+ export type FeatureReleaseTransitionsByMonthArgs = {
8991
+ after?: Maybe<Scalars['String']>;
8992
+ cloudIdFilter?: Maybe<FeatureReleaseCloudIdFilter>;
8993
+ featureFlagFilter?: Maybe<FeatureReleaseFeatureFlagFilter>;
8994
+ first?: Maybe<Scalars['Int']>;
8995
+ month: Scalars['String'];
8996
+ timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
8997
+ };
8998
+ export type FeatureReleaseCloudIdFilter = {
8999
+ cloudIds: Array<Maybe<Scalars['String']>>;
9000
+ };
9001
+ export type FeatureReleaseFeatureFlagFilter = {
9002
+ featureFlagIds: Array<Maybe<Scalars['String']>>;
9003
+ };
9004
+ export type FeatureReleaseFeatureFlagTransition = {
9005
+ __typename?: 'FeatureReleaseFeatureFlagTransition';
9006
+ evaluationResult: Scalars['String'];
9007
+ featureFlagKey: Scalars['String'];
9008
+ month: Scalars['String'];
9009
+ reason: Scalars['String'];
9010
+ tenantId: Scalars['String'];
9011
+ tenantType: Scalars['String'];
9012
+ timestamp: Scalars['Int'];
9013
+ };
9014
+ export type FeatureReleaseFeatureFlagTransitionConnection = {
9015
+ __typename?: 'FeatureReleaseFeatureFlagTransitionConnection';
9016
+ edges: Array<Maybe<FeatureReleaseFeatureFlagTransitionEdge>>;
9017
+ pageInfo: PageInfo;
9018
+ };
9019
+ export type FeatureReleaseFeatureFlagTransitionEdge = {
9020
+ __typename?: 'FeatureReleaseFeatureFlagTransitionEdge';
9021
+ cursor: Scalars['String'];
9022
+ node?: Maybe<FeatureReleaseFeatureFlagTransition>;
9023
+ };
9024
+ export type FeatureReleaseTimeRangeInput = {
9025
+ endEpoch?: Maybe<Scalars['Int']>;
9026
+ startEpoch?: Maybe<Scalars['Int']>;
9027
+ };
8911
9028
  export type FilterQuery = {
8912
9029
  __typename?: 'FilterQuery';
8913
9030
  sanitisedJql: Scalars['String'];
@@ -10595,6 +10712,179 @@ export type InCompleteCardsDestination = {
10595
10712
  sprintName?: Maybe<Scalars['String']>;
10596
10713
  destination?: Maybe<SoftwareCardsDestinationEnum>;
10597
10714
  };
10715
+ export type InfluentsNotificationAction = {
10716
+ __typename?: 'InfluentsNotificationAction';
10717
+ title: Scalars['String'];
10718
+ url?: Maybe<Scalars['String']>;
10719
+ appearance: InfluentsNotificationAppearance;
10720
+ };
10721
+ export type InfluentsNotificationActor = {
10722
+ __typename?: 'InfluentsNotificationActor';
10723
+ displayName?: Maybe<Scalars['String']>;
10724
+ ari?: Maybe<Scalars['String']>;
10725
+ avatarURL?: Maybe<Scalars['String']>;
10726
+ };
10727
+ export type InfluentsNotificationAnalyticsAttribute = {
10728
+ __typename?: 'InfluentsNotificationAnalyticsAttribute';
10729
+ key?: Maybe<Scalars['String']>;
10730
+ value?: Maybe<Scalars['String']>;
10731
+ };
10732
+ export declare enum InfluentsNotificationAppearance {
10733
+ Default = "DEFAULT",
10734
+ Primary = "PRIMARY",
10735
+ Link = "LINK",
10736
+ Subtle = "SUBTLE",
10737
+ Warning = "WARNING",
10738
+ Danger = "DANGER"
10739
+ }
10740
+ export type InfluentsNotificationBodyItem = {
10741
+ __typename?: 'InfluentsNotificationBodyItem';
10742
+ type?: Maybe<Scalars['String']>;
10743
+ appearance?: Maybe<Scalars['String']>;
10744
+ document?: Maybe<InfluentsNotificationDocument>;
10745
+ author?: Maybe<InfluentsNotificationActor>;
10746
+ };
10747
+ export declare enum InfluentsNotificationCategory {
10748
+ Direct = "direct",
10749
+ Watching = "watching"
10750
+ }
10751
+ export type InfluentsNotificationContent = {
10752
+ __typename?: 'InfluentsNotificationContent';
10753
+ type: Scalars['String'];
10754
+ message: Scalars['String'];
10755
+ url?: Maybe<Scalars['String']>;
10756
+ actor: InfluentsNotificationActor;
10757
+ entity?: Maybe<InfluentsNotificationEntity>;
10758
+ path?: Maybe<Array<InfluentsNotificationPath>>;
10759
+ actions?: Maybe<Array<InfluentsNotificationAction>>;
10760
+ bodyItems?: Maybe<Array<InfluentsNotificationBodyItem>>;
10761
+ templateVariables?: Maybe<Array<InfluentsNotificationTemplateVariable>>;
10762
+ };
10763
+ export type InfluentsNotificationDocument = {
10764
+ __typename?: 'InfluentsNotificationDocument';
10765
+ format?: Maybe<Scalars['String']>;
10766
+ data?: Maybe<Scalars['String']>;
10767
+ };
10768
+ export type InfluentsNotificationEntity = {
10769
+ __typename?: 'InfluentsNotificationEntity';
10770
+ title?: Maybe<Scalars['String']>;
10771
+ iconUrl?: Maybe<Scalars['String']>;
10772
+ url?: Maybe<Scalars['String']>;
10773
+ };
10774
+ export type InfluentsNotificationFeedFilter = {
10775
+ workspaceId?: Maybe<Scalars['String']>;
10776
+ categoryFilter?: Maybe<InfluentsNotificationCategory>;
10777
+ readStateFilter?: Maybe<InfluentsNotificationReadState>;
10778
+ productFilter?: Maybe<Scalars['String']>;
10779
+ groupId?: Maybe<Scalars['String']>;
10780
+ };
10781
+ export type InfluentsNotificationGroupedConnection = {
10782
+ __typename?: 'InfluentsNotificationGroupedConnection';
10783
+ nodes: Array<InfluentsNotificationGroupedItem>;
10784
+ pageInfo: InfluentsNotificationPageInfo;
10785
+ };
10786
+ export type InfluentsNotificationGroupedItem = {
10787
+ __typename?: 'InfluentsNotificationGroupedItem';
10788
+ groupId: Scalars['ID'];
10789
+ groupSize: Scalars['Int'];
10790
+ headNotification: InfluentsNotificationItem;
10791
+ childItems?: Maybe<Array<InfluentsNotificationItem>>;
10792
+ };
10793
+ export type InfluentsNotificationGroupedItemChildItemsArgs = {
10794
+ first?: Maybe<Scalars['Int']>;
10795
+ after?: Maybe<Scalars['String']>;
10796
+ };
10797
+ export type InfluentsNotificationItem = {
10798
+ __typename?: 'InfluentsNotificationItem';
10799
+ notificationId: Scalars['ID'];
10800
+ timestamp: Scalars['DateTime'];
10801
+ content: InfluentsNotificationContent;
10802
+ readState: InfluentsNotificationReadState;
10803
+ category: InfluentsNotificationCategory;
10804
+ workspaceId?: Maybe<Scalars['String']>;
10805
+ analyticsAttributes?: Maybe<Array<InfluentsNotificationAnalyticsAttribute>>;
10806
+ };
10807
+ export type InfluentsNotificationMutation = {
10808
+ __typename?: 'InfluentsNotificationMutation';
10809
+ markNotificationsAsRead?: Maybe<Scalars['String']>;
10810
+ markNotificationsAsUnread?: Maybe<Scalars['String']>;
10811
+ markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
10812
+ markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
10813
+ markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
10814
+ markNotificationsByIdsAsUnread?: Maybe<Scalars['String']>;
10815
+ archiveNotifications?: Maybe<Scalars['String']>;
10816
+ };
10817
+ export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
10818
+ category?: Maybe<InfluentsNotificationCategory>;
10819
+ product?: Maybe<Scalars['String']>;
10820
+ workspaceId?: Maybe<Scalars['String']>;
10821
+ beforeInclusive?: Maybe<Scalars['String']>;
10822
+ beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
10823
+ };
10824
+ export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
10825
+ category?: Maybe<InfluentsNotificationCategory>;
10826
+ product?: Maybe<Scalars['String']>;
10827
+ workspaceId?: Maybe<Scalars['String']>;
10828
+ beforeInclusive?: Maybe<Scalars['String']>;
10829
+ beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
10830
+ };
10831
+ export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
10832
+ category?: Maybe<InfluentsNotificationCategory>;
10833
+ groupId?: Maybe<Scalars['String']>;
10834
+ beforeInclusive?: Maybe<Scalars['String']>;
10835
+ };
10836
+ export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
10837
+ category?: Maybe<InfluentsNotificationCategory>;
10838
+ groupId?: Maybe<Scalars['String']>;
10839
+ beforeInclusive?: Maybe<Scalars['String']>;
10840
+ };
10841
+ export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
10842
+ ids: Array<Scalars['String']>;
10843
+ };
10844
+ export type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
10845
+ ids: Array<Scalars['String']>;
10846
+ };
10847
+ export type InfluentsNotificationMutationArchiveNotificationsArgs = {
10848
+ ids: Array<Scalars['String']>;
10849
+ };
10850
+ export type InfluentsNotificationPageInfo = {
10851
+ __typename?: 'InfluentsNotificationPageInfo';
10852
+ hasNextPage: Scalars['Boolean'];
10853
+ hasPreviousPage: Scalars['Boolean'];
10854
+ startCursor?: Maybe<Scalars['String']>;
10855
+ endCursor?: Maybe<Scalars['String']>;
10856
+ };
10857
+ export type InfluentsNotificationPath = {
10858
+ __typename?: 'InfluentsNotificationPath';
10859
+ title?: Maybe<Scalars['String']>;
10860
+ url?: Maybe<Scalars['String']>;
10861
+ iconUrl?: Maybe<Scalars['String']>;
10862
+ };
10863
+ export type InfluentsNotificationQuery = {
10864
+ __typename?: 'InfluentsNotificationQuery';
10865
+ notificationFeed: InfluentsNotificationGroupedConnection;
10866
+ unseenNotificationCount: Scalars['Int'];
10867
+ };
10868
+ export type InfluentsNotificationQueryNotificationFeedArgs = {
10869
+ feedFilter?: Maybe<InfluentsNotificationFeedFilter>;
10870
+ first?: Maybe<Scalars['Int']>;
10871
+ after?: Maybe<Scalars['String']>;
10872
+ };
10873
+ export type InfluentsNotificationQueryUnseenNotificationCountArgs = {
10874
+ workspaceId?: Maybe<Scalars['String']>;
10875
+ product?: Maybe<Scalars['String']>;
10876
+ };
10877
+ export declare enum InfluentsNotificationReadState {
10878
+ Unread = "unread",
10879
+ Read = "read"
10880
+ }
10881
+ export type InfluentsNotificationTemplateVariable = {
10882
+ __typename?: 'InfluentsNotificationTemplateVariable';
10883
+ name: Scalars['String'];
10884
+ type: Scalars['String'];
10885
+ id: Scalars['ID'];
10886
+ fallback: Scalars['String'];
10887
+ };
10598
10888
  export type InlineCardCreateConfig = {
10599
10889
  __typename?: 'InlineCardCreateConfig';
10600
10890
  enabled: Scalars['Boolean'];
@@ -10951,6 +11241,7 @@ export declare enum IssueDevOpsPullRequestStatus {
10951
11241
  Open = "OPEN",
10952
11242
  Merged = "MERGED",
10953
11243
  Declined = "DECLINED",
11244
+ Draft = "DRAFT",
10954
11245
  Unknown = "UNKNOWN"
10955
11246
  }
10956
11247
  export type IssueDevOpsRemoteLink = {
@@ -15477,6 +15768,7 @@ export type JiraProject = Node & {
15477
15768
  devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
15478
15769
  devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
15479
15770
  linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
15771
+ totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
15480
15772
  linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
15481
15773
  linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
15482
15774
  repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -19833,6 +20125,7 @@ export type Mutation = {
19833
20125
  createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
19834
20126
  updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
19835
20127
  updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
20128
+ updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
19836
20129
  updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
19837
20130
  deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
19838
20131
  updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
@@ -19884,6 +20177,7 @@ export type Mutation = {
19884
20177
  watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
19885
20178
  unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
19886
20179
  compass?: Maybe<CompassCatalogMutationApi>;
20180
+ notifications?: Maybe<InfluentsNotificationMutation>;
19887
20181
  customerService?: Maybe<CustomerServiceMutationApi>;
19888
20182
  shepherd?: Maybe<ShepherdMutation>;
19889
20183
  helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
@@ -20083,6 +20377,9 @@ export type MutationUpdatePolarisCalculatedFieldArgs = {
20083
20377
  export type MutationUpdatePolarisFieldDescriptionArgs = {
20084
20378
  input: UpdatePolarisFieldDescriptionInput;
20085
20379
  };
20380
+ export type MutationUpdatePolarisFieldArgs = {
20381
+ input: UpdatePolarisFieldInput;
20382
+ };
20086
20383
  export type MutationUpdatePolarisFieldEmojiArgs = {
20087
20384
  input: UpdatePolarisFieldEmojiInput;
20088
20385
  };
@@ -20549,12 +20846,18 @@ export type NlpFollowUpResponse = {
20549
20846
  __typename?: 'NlpFollowUpResponse';
20550
20847
  followUps?: Maybe<Array<Scalars['String']>>;
20551
20848
  };
20849
+ export type NlpFollowUpResult = {
20850
+ __typename?: 'NlpFollowUpResult';
20851
+ followUp?: Maybe<Scalars['String']>;
20852
+ followUpAnswers?: Maybe<Array<NlpSearchResult>>;
20853
+ };
20552
20854
  export type NlpSearchResponse = {
20553
20855
  __typename?: 'NlpSearchResponse';
20554
20856
  nlpResults?: Maybe<Array<NlpSearchResult>>;
20555
20857
  uniqueSources?: Maybe<Array<NlpSource>>;
20556
20858
  errorState?: Maybe<NlpErrorState>;
20557
20859
  disclaimer?: Maybe<NlpDisclaimer>;
20860
+ nlpFollowResults?: Maybe<Array<NlpFollowUpResult>>;
20558
20861
  };
20559
20862
  export type NlpSearchResult = {
20560
20863
  __typename?: 'NlpSearchResult';
@@ -22330,6 +22633,7 @@ export type Query = {
22330
22633
  productListings: Array<ProductListingResult>;
22331
22634
  marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
22332
22635
  compass?: Maybe<CompassCatalogQueryApi>;
22636
+ notifications?: Maybe<InfluentsNotificationQuery>;
22333
22637
  extensionsEcho?: Maybe<Scalars['String']>;
22334
22638
  extensionContexts?: Maybe<Array<ExtensionContext>>;
22335
22639
  extensionContext?: Maybe<ExtensionContext>;
@@ -22337,6 +22641,7 @@ export type Query = {
22337
22641
  echo?: Maybe<Scalars['String']>;
22338
22642
  diagnostics?: Maybe<Scalars['JSON']>;
22339
22643
  node?: Maybe<Node>;
22644
+ featureRelease?: Maybe<FeatureRelease>;
22340
22645
  customerService?: Maybe<CustomerServiceQueryApi>;
22341
22646
  activities?: Maybe<Activities>;
22342
22647
  activity?: Maybe<Activity>;
@@ -22772,6 +23077,7 @@ export type QueryNlpSearchArgs = {
22772
23077
  query?: Maybe<Scalars['String']>;
22773
23078
  locations: Array<Scalars['String']>;
22774
23079
  locale?: Maybe<Scalars['String']>;
23080
+ followups_enabled?: Maybe<Scalars['Boolean']>;
22775
23081
  };
22776
23082
  export type QueryNlpFollowUpArgs = {
22777
23083
  query?: Maybe<Scalars['String']>;
@@ -27481,6 +27787,16 @@ export type UpdateCompassScorecardPayload = Payload & {
27481
27787
  errors?: Maybe<Array<MutationError>>;
27482
27788
  scorecardDetails?: Maybe<CompassScorecard>;
27483
27789
  };
27790
+ export type UpdateCompassUserDefinedParametersInput = {
27791
+ componentId: Scalars['ID'];
27792
+ createParameters?: Maybe<Array<CreateCompassUserDefinedParameterInput>>;
27793
+ };
27794
+ export type UpdateCompassUserDefinedParametersPayload = Payload & {
27795
+ __typename?: 'UpdateCompassUserDefinedParametersPayload';
27796
+ success: Scalars['Boolean'];
27797
+ errors?: Maybe<Array<MutationError>>;
27798
+ userParameterDetails?: Maybe<CompassUserDefinedParameters>;
27799
+ };
27484
27800
  export type UpdateCustomFilterInput = {
27485
27801
  boardId: Scalars['ID'];
27486
27802
  id: Scalars['ID'];
@@ -27662,6 +27978,12 @@ export type UpdatePolarisFieldEmojiPayload = Payload & {
27662
27978
  errors?: Maybe<Array<MutationError>>;
27663
27979
  node?: Maybe<PolarisIdeaField>;
27664
27980
  };
27981
+ export type UpdatePolarisFieldInput = {
27982
+ field: Scalars['ID'];
27983
+ ideaType: Scalars['ID'];
27984
+ name: Scalars['String'];
27985
+ description: Scalars['String'];
27986
+ };
27665
27987
  export type UpdatePolarisFieldOptionWeightInput = {
27666
27988
  project: Scalars['ID'];
27667
27989
  field: Scalars['ID'];
@@ -27673,6 +27995,12 @@ export type UpdatePolarisFieldOptionWeightPayload = Payload & {
27673
27995
  success: Scalars['Boolean'];
27674
27996
  errors?: Maybe<Array<MutationError>>;
27675
27997
  };
27998
+ export type UpdatePolarisFieldPayload = Payload & {
27999
+ __typename?: 'UpdatePolarisFieldPayload';
28000
+ success: Scalars['Boolean'];
28001
+ errors?: Maybe<Array<MutationError>>;
28002
+ node?: Maybe<PolarisIdeaField>;
28003
+ };
27676
28004
  export type UpdatePolarisIdeaInput = {
27677
28005
  archived?: Maybe<Scalars['Boolean']>;
27678
28006
  lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;