@forge/cli-shared 8.8.2-next.3 → 8.8.2-next.4

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
+ ## 8.8.2-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [78efec7]
8
+ - @forge/manifest@11.0.0-next.3
9
+
3
10
  ## 8.8.2-next.3
4
11
 
5
12
  ### Patch Changes
@@ -5617,6 +5617,7 @@ export declare type AssetsDmObjectDetail = {
5617
5617
  objectDataSources: Array<Scalars['JSON']['output']>;
5618
5618
  pkColumnName: Scalars['String']['output'];
5619
5619
  preferredAttributes: Array<Scalars['JSON']['output']>;
5620
+ unverifiedAttributes: Array<AssetsDmUnverifiedAttribute>;
5620
5621
  unverifiedAttributesCount: Scalars['Int']['output'];
5621
5622
  };
5622
5623
  export declare type AssetsDmObjectHistory = {
@@ -5977,6 +5978,12 @@ export declare type AssetsDmTransformedDataResponse = {
5977
5978
  filters: Array<AssetsDmTransformedDataFilter>;
5978
5979
  pagination: AssetsDmPaginationInfo;
5979
5980
  };
5981
+ export declare type AssetsDmUnverifiedAttribute = {
5982
+ __typename?: 'AssetsDMUnverifiedAttribute';
5983
+ issue: Scalars['String']['output'];
5984
+ preferredValue: Scalars['String']['output'];
5985
+ unverifiedValues: Scalars['String']['output'];
5986
+ };
5980
5987
  export declare type AssetsIcon = {
5981
5988
  __typename?: 'AssetsIcon';
5982
5989
  id?: Maybe<Scalars['String']['output']>;
@@ -9055,6 +9062,10 @@ export declare type ChangeOwnerWarning = {
9055
9062
  contentId?: Maybe<Scalars['Long']['output']>;
9056
9063
  message?: Maybe<Scalars['String']['output']>;
9057
9064
  };
9065
+ export declare type ChannelPlatformAgentStatusResponse = {
9066
+ __typename?: 'ChannelPlatformAgentStatusResponse';
9067
+ status?: Maybe<Scalars['String']['output']>;
9068
+ };
9058
9069
  export declare type ChannelPlatformAttendee = {
9059
9070
  __typename?: 'ChannelPlatformAttendee';
9060
9071
  attendeeId?: Maybe<Scalars['String']['output']>;
@@ -9123,6 +9134,7 @@ export declare type ChannelPlatformContact = {
9123
9134
  assigneeAaid?: Maybe<Scalars['String']['output']>;
9124
9135
  channel?: Maybe<ChannelPlatformChannelType>;
9125
9136
  contactId?: Maybe<Scalars['ID']['output']>;
9137
+ phoneContact?: Maybe<ChannelPlatformPhoneContact>;
9126
9138
  state?: Maybe<ChannelPlatformContactState>;
9127
9139
  };
9128
9140
  export declare enum ChannelPlatformContactState {
@@ -9198,6 +9210,10 @@ export declare enum ChannelPlatformParticipantRole {
9198
9210
  Supervisor = "SUPERVISOR",
9199
9211
  System = "SYSTEM"
9200
9212
  }
9213
+ export declare type ChannelPlatformPhoneContact = {
9214
+ __typename?: 'ChannelPlatformPhoneContact';
9215
+ address?: Maybe<Scalars['String']['output']>;
9216
+ };
9201
9217
  export declare type ChannelPlatformPluginActionRequest = {
9202
9218
  actionName?: InputMaybe<Scalars['String']['input']>;
9203
9219
  appId?: InputMaybe<Scalars['String']['input']>;
@@ -14933,7 +14949,8 @@ export declare type CompleteSprintResponse = MutationResponse & {
14933
14949
  };
14934
14950
  export declare enum ComplianceBoundary {
14935
14951
  Commercial = "COMMERCIAL",
14936
- FedrampModerate = "FEDRAMP_MODERATE"
14952
+ FedrampModerate = "FEDRAMP_MODERATE",
14953
+ IsolatedCloud = "ISOLATED_CLOUD"
14937
14954
  }
14938
14955
  export declare type ComponentApiUpload = {
14939
14956
  __typename?: 'ComponentApiUpload';
@@ -69706,6 +69723,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
69706
69723
  configurationUrl?: Maybe<Scalars['URL']['output']>;
69707
69724
  confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
69708
69725
  confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
69726
+ confluenceRemoteIssueLinksField?: Maybe<JiraConfluenceRemoteIssueLinksField>;
69709
69727
  connectActivityPanels?: Maybe<JiraIssueConnectActivityPanelConnection>;
69710
69728
  connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
69711
69729
  connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
@@ -85664,6 +85682,33 @@ export declare type KeyValueHierarchyMap = {
85664
85682
  key?: Maybe<Scalars['String']['output']>;
85665
85683
  value?: Maybe<Scalars['String']['output']>;
85666
85684
  };
85685
+ export declare type KnowledgeBaseAgentArticleSearchConnection = {
85686
+ __typename?: 'KnowledgeBaseAgentArticleSearchConnection';
85687
+ edges?: Maybe<Array<KnowledgeBaseArticleEdge>>;
85688
+ nodes?: Maybe<Array<KnowledgeBaseArticle>>;
85689
+ pageInfo: PageInfo;
85690
+ totalCount?: Maybe<Scalars['Int']['output']>;
85691
+ };
85692
+ export declare type KnowledgeBaseAgentArticleSearchInput = {
85693
+ cloudId: Scalars['ID']['input'];
85694
+ cursor?: InputMaybe<Scalars['String']['input']>;
85695
+ limit?: InputMaybe<Scalars['Int']['input']>;
85696
+ projectIdentifier: Scalars['String']['input'];
85697
+ searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
85698
+ searchQuery?: InputMaybe<Scalars['String']['input']>;
85699
+ sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
85700
+ sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
85701
+ };
85702
+ export declare type KnowledgeBaseAgentArticleSearchResponse = KnowledgeBaseAgentArticleSearchConnection | QueryError;
85703
+ export declare type KnowledgeBaseArticle = {
85704
+ __typename?: 'KnowledgeBaseArticle';
85705
+ id: Scalars['ID']['output'];
85706
+ metadata?: Maybe<KnowledgeBaseArticleMetadata>;
85707
+ source?: Maybe<KnowledgeBaseArticleSource>;
85708
+ sourceVisibility?: Maybe<Scalars['String']['output']>;
85709
+ title?: Maybe<Scalars['String']['output']>;
85710
+ url?: Maybe<KnowledgeBaseArticleUrl>;
85711
+ };
85667
85712
  export declare type KnowledgeBaseArticleCountError = {
85668
85713
  __typename?: 'KnowledgeBaseArticleCountError';
85669
85714
  container: Scalars['ID']['output'];
@@ -85676,6 +85721,17 @@ export declare type KnowledgeBaseArticleCountSource = {
85676
85721
  container: Scalars['ID']['output'];
85677
85722
  count: Scalars['Int']['output'];
85678
85723
  };
85724
+ export declare type KnowledgeBaseArticleEdge = {
85725
+ __typename?: 'KnowledgeBaseArticleEdge';
85726
+ cursor?: Maybe<Scalars['String']['output']>;
85727
+ node?: Maybe<KnowledgeBaseArticle>;
85728
+ };
85729
+ export declare type KnowledgeBaseArticleMetadata = {
85730
+ __typename?: 'KnowledgeBaseArticleMetadata';
85731
+ categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
85732
+ lastModified?: Maybe<Scalars['String']['output']>;
85733
+ viewCount?: Maybe<Scalars['Int']['output']>;
85734
+ };
85679
85735
  export declare type KnowledgeBaseArticleSearchInput = {
85680
85736
  articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
85681
85737
  cloudId: Scalars['ID']['input'];
@@ -85685,6 +85741,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
85685
85741
  searchQuery?: InputMaybe<Scalars['String']['input']>;
85686
85742
  sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
85687
85743
  sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
85744
+ sourceVisibility?: InputMaybe<Scalars['String']['input']>;
85688
85745
  };
85689
85746
  export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
85690
85747
  export declare enum KnowledgeBaseArticleSearchSortByKey {
@@ -85695,6 +85752,22 @@ export declare enum KnowledgeBaseArticleSearchSortOrder {
85695
85752
  Asc = "ASC",
85696
85753
  Desc = "DESC"
85697
85754
  }
85755
+ export declare type KnowledgeBaseArticleSource = {
85756
+ __typename?: 'KnowledgeBaseArticleSource';
85757
+ ari?: Maybe<Scalars['String']['output']>;
85758
+ name?: Maybe<Scalars['String']['output']>;
85759
+ sourceType?: Maybe<Scalars['String']['output']>;
85760
+ url?: Maybe<Scalars['String']['output']>;
85761
+ };
85762
+ export declare type KnowledgeBaseArticleUrl = {
85763
+ __typename?: 'KnowledgeBaseArticleUrl';
85764
+ view?: Maybe<Scalars['String']['output']>;
85765
+ };
85766
+ export declare type KnowledgeBaseCategoryDetail = {
85767
+ __typename?: 'KnowledgeBaseCategoryDetail';
85768
+ id?: Maybe<Scalars['String']['output']>;
85769
+ name?: Maybe<Scalars['String']['output']>;
85770
+ };
85698
85771
  export declare type KnowledgeBaseCrossSiteArticle = {
85699
85772
  __typename?: 'KnowledgeBaseCrossSiteArticle';
85700
85773
  friendlyLastModified?: Maybe<Scalars['String']['output']>;
@@ -85738,6 +85811,7 @@ export declare type KnowledgeBaseMutationApi = {
85738
85811
  export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
85739
85812
  container: Scalars['ID']['input'];
85740
85813
  sourceARI?: InputMaybe<Scalars['ID']['input']>;
85814
+ sourceVisibility?: InputMaybe<Scalars['String']['input']>;
85741
85815
  url?: InputMaybe<Scalars['String']['input']>;
85742
85816
  };
85743
85817
  export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
@@ -85753,8 +85827,14 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
85753
85827
  after?: InputMaybe<Scalars['String']['input']>;
85754
85828
  container: Scalars['ID']['input'];
85755
85829
  first?: InputMaybe<Scalars['Int']['input']>;
85830
+ sourceVisibility?: InputMaybe<Scalars['String']['input']>;
85756
85831
  };
85757
85832
  export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
85833
+ export declare type KnowledgeBaseSearchFiltersInput = {
85834
+ sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
85835
+ sourceVisibility?: InputMaybe<Array<KnowledgeBaseSourceVisibility>>;
85836
+ sources?: InputMaybe<Array<Scalars['String']['input']>>;
85837
+ };
85758
85838
  export declare type KnowledgeBaseSource = {
85759
85839
  __typename?: 'KnowledgeBaseSource';
85760
85840
  containerAri: Scalars['ID']['output'];
@@ -85763,6 +85843,7 @@ export declare type KnowledgeBaseSource = {
85763
85843
  name: Scalars['String']['output'];
85764
85844
  permissions?: Maybe<KnowledgeBaseSourcePermissions>;
85765
85845
  sourceType?: Maybe<Scalars['String']['output']>;
85846
+ sourceVisibility?: Maybe<Scalars['String']['output']>;
85766
85847
  url: Scalars['String']['output'];
85767
85848
  };
85768
85849
  export declare type KnowledgeBaseSourcePermissionsArgs = {
@@ -85774,6 +85855,10 @@ export declare type KnowledgeBaseSourceEdge = {
85774
85855
  node: KnowledgeBaseSource;
85775
85856
  };
85776
85857
  export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
85858
+ export declare enum KnowledgeBaseSourceVisibility {
85859
+ External = "EXTERNAL",
85860
+ Internal = "INTERNAL"
85861
+ }
85777
85862
  export declare type KnowledgeBaseSources = {
85778
85863
  __typename?: 'KnowledgeBaseSources';
85779
85864
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
@@ -91280,6 +91365,10 @@ export declare type MercuryFundsMutationApi = {
91280
91365
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
91281
91366
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
91282
91367
  deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
91368
+ updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
91369
+ updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
91370
+ updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
91371
+ updateInvestmentCategorySetName?: Maybe<MercuryUpdateInvestmentCategorySetPayload>;
91283
91372
  };
91284
91373
  export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
91285
91374
  input: MercuryCreateCostSubtypeInput;
@@ -91302,6 +91391,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
91302
91391
  export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
91303
91392
  input: MercuryDeleteInvestmentCategorySetInput;
91304
91393
  };
91394
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
91395
+ input: MercuryUpdateInvestmentCategoryDescriptionInput;
91396
+ };
91397
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryKeyArgs = {
91398
+ input: MercuryUpdateInvestmentCategoryKeyInput;
91399
+ };
91400
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
91401
+ input: MercuryUpdateInvestmentCategoryNameInput;
91402
+ };
91403
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs = {
91404
+ input: MercuryUpdateInvestmentCategorySetNameInput;
91405
+ };
91305
91406
  export declare type MercuryFundsQueryApi = {
91306
91407
  __typename?: 'MercuryFundsQueryApi';
91307
91408
  costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
@@ -93034,6 +93135,34 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
93034
93135
  targetDate?: InputMaybe<Scalars['String']['input']>;
93035
93136
  targetDateType?: InputMaybe<MercuryTargetDateType>;
93036
93137
  };
93138
+ export declare type MercuryUpdateInvestmentCategoryDescriptionInput = {
93139
+ description: Scalars['String']['input'];
93140
+ id: Scalars['ID']['input'];
93141
+ };
93142
+ export declare type MercuryUpdateInvestmentCategoryKeyInput = {
93143
+ id: Scalars['ID']['input'];
93144
+ key: Scalars['String']['input'];
93145
+ };
93146
+ export declare type MercuryUpdateInvestmentCategoryNameInput = {
93147
+ id: Scalars['ID']['input'];
93148
+ name: Scalars['String']['input'];
93149
+ };
93150
+ export declare type MercuryUpdateInvestmentCategoryPayload = Payload & {
93151
+ __typename?: 'MercuryUpdateInvestmentCategoryPayload';
93152
+ errors?: Maybe<Array<MutationError>>;
93153
+ success: Scalars['Boolean']['output'];
93154
+ updatedInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
93155
+ };
93156
+ export declare type MercuryUpdateInvestmentCategorySetNameInput = {
93157
+ id: Scalars['ID']['input'];
93158
+ name: Scalars['String']['input'];
93159
+ };
93160
+ export declare type MercuryUpdateInvestmentCategorySetPayload = Payload & {
93161
+ __typename?: 'MercuryUpdateInvestmentCategorySetPayload';
93162
+ errors?: Maybe<Array<MutationError>>;
93163
+ success: Scalars['Boolean']['output'];
93164
+ updatedInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
93165
+ };
93037
93166
  export declare type MercuryUpdateMoveFundsChangeInput = {
93038
93167
  amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
93039
93168
  changeId: Scalars['ID']['input'];
@@ -99782,6 +99911,7 @@ export declare type Query = {
99782
99911
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
99783
99912
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
99784
99913
  channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
99914
+ channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
99785
99915
  channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
99786
99916
  channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
99787
99917
  channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
@@ -100180,6 +100310,7 @@ export declare type Query = {
100180
100310
  kitsune_hello?: Maybe<Scalars['String']['output']>;
100181
100311
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
100182
100312
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
100313
+ knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
100183
100314
  knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
100184
100315
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
100185
100316
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
@@ -102911,6 +103042,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
102911
103042
  cloudId: Scalars['ID']['input'];
102912
103043
  spaceAris: Array<Scalars['ID']['input']>;
102913
103044
  };
103045
+ export declare type QueryKnowledgeBase_AgentSearchArgs = {
103046
+ searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
103047
+ };
102914
103048
  export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
102915
103049
  container?: InputMaybe<Scalars['ID']['input']>;
102916
103050
  };
@@ -103716,6 +103850,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
103716
103850
  export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
103717
103851
  name: Scalars['String']['input'];
103718
103852
  };
103853
+ export declare type QueryStakeholderComms_GetFileReadMediaTokenArgs = {
103854
+ fileId?: InputMaybe<Scalars['String']['input']>;
103855
+ };
103719
103856
  export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
103720
103857
  externalUserContextToken?: InputMaybe<Scalars['String']['input']>;
103721
103858
  groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -135881,7 +136018,7 @@ export declare type TrelloQuickCaptureNotification = {
135881
136018
  objectId: Scalars['ID']['output'];
135882
136019
  source?: Maybe<TrelloCardExternalSource>;
135883
136020
  status?: Maybe<Scalars['String']['output']>;
135884
- type: Scalars['String']['output'];
136021
+ type?: Maybe<Scalars['String']['output']>;
135885
136022
  };
135886
136023
  export declare type TrelloQuickCaptureNotificationCleared = {
135887
136024
  __typename?: 'TrelloQuickCaptureNotificationCleared';
@@ -139072,6 +139209,7 @@ export declare enum VendorType {
139072
139209
  export declare type VerifyComponentAutoPopulationField = {
139073
139210
  componentId: Scalars['ID']['input'];
139074
139211
  fieldId: Scalars['String']['input'];
139212
+ isCorrect: Scalars['Boolean']['input'];
139075
139213
  value: Scalars['String']['input'];
139076
139214
  };
139077
139215
  export declare type VerifyComponentAutoPopulationFieldPayload = Payload & {