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

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,23 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.2-next.4-experimental-4cf7fd3
4
+
5
+ ### Patch Changes
6
+
7
+ - aaf8a03: forge tunnel with containers: delete auto generated docker compose files upon failing to startup
8
+ - Updated dependencies [9a6d346]
9
+ - Updated dependencies [260eb24]
10
+ - Updated dependencies [8962080]
11
+ - Updated dependencies [78efec7]
12
+ - @forge/manifest@11.0.0-next.3-experimental-4cf7fd3
13
+
14
+ ## 8.8.2-next.4
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [78efec7]
19
+ - @forge/manifest@11.0.0-next.3
20
+
3
21
  ## 8.8.2-next.3
4
22
 
5
23
  ### 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';
@@ -64109,11 +64126,6 @@ export declare type JiraBacklogData = {
64109
64126
  supportsPages?: Maybe<Scalars['Boolean']['output']>;
64110
64127
  versionData?: Maybe<JiraBacklogVersionData>;
64111
64128
  };
64112
- export declare enum JiraBacklogDestination {
64113
- Backlog = "BACKLOG",
64114
- Board = "BOARD",
64115
- Sprint = "SPRINT"
64116
- }
64117
64129
  export declare type JiraBacklogEpicConfig = {
64118
64130
  __typename?: 'JiraBacklogEpicConfig';
64119
64131
  colorFieldId?: Maybe<Scalars['String']['output']>;
@@ -69646,9 +69658,9 @@ export declare type JiraInlineIssueCreateFieldError = {
69646
69658
  };
69647
69659
  export declare type JiraInlineIssueCreateInput = {
69648
69660
  boardId?: InputMaybe<Scalars['ID']['input']>;
69649
- destination?: InputMaybe<JiraBacklogDestination>;
69650
69661
  fields: JiraIssueFieldsInput;
69651
69662
  issueTypeId: Scalars['ID']['input'];
69663
+ kanbanDestination?: InputMaybe<JiraKanbanDestination>;
69652
69664
  projectId: Scalars['ID']['input'];
69653
69665
  rank?: InputMaybe<JiraIssueCreateRankInput>;
69654
69666
  };
@@ -69706,6 +69718,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
69706
69718
  configurationUrl?: Maybe<Scalars['URL']['output']>;
69707
69719
  confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
69708
69720
  confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
69721
+ confluenceRemoteIssueLinksField?: Maybe<JiraConfluenceRemoteIssueLinksField>;
69709
69722
  connectActivityPanels?: Maybe<JiraIssueConnectActivityPanelConnection>;
69710
69723
  connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
69711
69724
  connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
@@ -72892,6 +72905,10 @@ export declare type JiraJwmField = {
72892
72905
  __typename?: 'JiraJwmField';
72893
72906
  encryptedData?: Maybe<Scalars['String']['output']>;
72894
72907
  };
72908
+ export declare enum JiraKanbanDestination {
72909
+ Backlog = "BACKLOG",
72910
+ Board = "BOARD"
72911
+ }
72895
72912
  export declare type JiraLabel = {
72896
72913
  __typename?: 'JiraLabel';
72897
72914
  color?: Maybe<JiraColor>;
@@ -85664,6 +85681,33 @@ export declare type KeyValueHierarchyMap = {
85664
85681
  key?: Maybe<Scalars['String']['output']>;
85665
85682
  value?: Maybe<Scalars['String']['output']>;
85666
85683
  };
85684
+ export declare type KnowledgeBaseAgentArticleSearchConnection = {
85685
+ __typename?: 'KnowledgeBaseAgentArticleSearchConnection';
85686
+ edges?: Maybe<Array<KnowledgeBaseArticleEdge>>;
85687
+ nodes?: Maybe<Array<KnowledgeBaseArticle>>;
85688
+ pageInfo: PageInfo;
85689
+ totalCount?: Maybe<Scalars['Int']['output']>;
85690
+ };
85691
+ export declare type KnowledgeBaseAgentArticleSearchInput = {
85692
+ cloudId: Scalars['ID']['input'];
85693
+ cursor?: InputMaybe<Scalars['String']['input']>;
85694
+ limit?: InputMaybe<Scalars['Int']['input']>;
85695
+ projectIdentifier: Scalars['String']['input'];
85696
+ searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
85697
+ searchQuery?: InputMaybe<Scalars['String']['input']>;
85698
+ sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
85699
+ sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
85700
+ };
85701
+ export declare type KnowledgeBaseAgentArticleSearchResponse = KnowledgeBaseAgentArticleSearchConnection | QueryError;
85702
+ export declare type KnowledgeBaseArticle = {
85703
+ __typename?: 'KnowledgeBaseArticle';
85704
+ id: Scalars['ID']['output'];
85705
+ metadata?: Maybe<KnowledgeBaseArticleMetadata>;
85706
+ source?: Maybe<KnowledgeBaseArticleSource>;
85707
+ sourceVisibility?: Maybe<Scalars['String']['output']>;
85708
+ title?: Maybe<Scalars['String']['output']>;
85709
+ url?: Maybe<KnowledgeBaseArticleUrl>;
85710
+ };
85667
85711
  export declare type KnowledgeBaseArticleCountError = {
85668
85712
  __typename?: 'KnowledgeBaseArticleCountError';
85669
85713
  container: Scalars['ID']['output'];
@@ -85676,6 +85720,17 @@ export declare type KnowledgeBaseArticleCountSource = {
85676
85720
  container: Scalars['ID']['output'];
85677
85721
  count: Scalars['Int']['output'];
85678
85722
  };
85723
+ export declare type KnowledgeBaseArticleEdge = {
85724
+ __typename?: 'KnowledgeBaseArticleEdge';
85725
+ cursor?: Maybe<Scalars['String']['output']>;
85726
+ node?: Maybe<KnowledgeBaseArticle>;
85727
+ };
85728
+ export declare type KnowledgeBaseArticleMetadata = {
85729
+ __typename?: 'KnowledgeBaseArticleMetadata';
85730
+ categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
85731
+ lastModified?: Maybe<Scalars['String']['output']>;
85732
+ viewCount?: Maybe<Scalars['Int']['output']>;
85733
+ };
85679
85734
  export declare type KnowledgeBaseArticleSearchInput = {
85680
85735
  articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
85681
85736
  cloudId: Scalars['ID']['input'];
@@ -85685,6 +85740,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
85685
85740
  searchQuery?: InputMaybe<Scalars['String']['input']>;
85686
85741
  sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
85687
85742
  sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
85743
+ sourceVisibility?: InputMaybe<Scalars['String']['input']>;
85688
85744
  };
85689
85745
  export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
85690
85746
  export declare enum KnowledgeBaseArticleSearchSortByKey {
@@ -85695,6 +85751,22 @@ export declare enum KnowledgeBaseArticleSearchSortOrder {
85695
85751
  Asc = "ASC",
85696
85752
  Desc = "DESC"
85697
85753
  }
85754
+ export declare type KnowledgeBaseArticleSource = {
85755
+ __typename?: 'KnowledgeBaseArticleSource';
85756
+ ari?: Maybe<Scalars['String']['output']>;
85757
+ name?: Maybe<Scalars['String']['output']>;
85758
+ sourceType?: Maybe<Scalars['String']['output']>;
85759
+ url?: Maybe<Scalars['String']['output']>;
85760
+ };
85761
+ export declare type KnowledgeBaseArticleUrl = {
85762
+ __typename?: 'KnowledgeBaseArticleUrl';
85763
+ view?: Maybe<Scalars['String']['output']>;
85764
+ };
85765
+ export declare type KnowledgeBaseCategoryDetail = {
85766
+ __typename?: 'KnowledgeBaseCategoryDetail';
85767
+ id?: Maybe<Scalars['String']['output']>;
85768
+ name?: Maybe<Scalars['String']['output']>;
85769
+ };
85698
85770
  export declare type KnowledgeBaseCrossSiteArticle = {
85699
85771
  __typename?: 'KnowledgeBaseCrossSiteArticle';
85700
85772
  friendlyLastModified?: Maybe<Scalars['String']['output']>;
@@ -85738,6 +85810,7 @@ export declare type KnowledgeBaseMutationApi = {
85738
85810
  export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
85739
85811
  container: Scalars['ID']['input'];
85740
85812
  sourceARI?: InputMaybe<Scalars['ID']['input']>;
85813
+ sourceVisibility?: InputMaybe<Scalars['String']['input']>;
85741
85814
  url?: InputMaybe<Scalars['String']['input']>;
85742
85815
  };
85743
85816
  export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
@@ -85753,8 +85826,14 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
85753
85826
  after?: InputMaybe<Scalars['String']['input']>;
85754
85827
  container: Scalars['ID']['input'];
85755
85828
  first?: InputMaybe<Scalars['Int']['input']>;
85829
+ sourceVisibility?: InputMaybe<Scalars['String']['input']>;
85756
85830
  };
85757
85831
  export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
85832
+ export declare type KnowledgeBaseSearchFiltersInput = {
85833
+ sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
85834
+ sourceVisibility?: InputMaybe<Array<KnowledgeBaseSourceVisibility>>;
85835
+ sources?: InputMaybe<Array<Scalars['String']['input']>>;
85836
+ };
85758
85837
  export declare type KnowledgeBaseSource = {
85759
85838
  __typename?: 'KnowledgeBaseSource';
85760
85839
  containerAri: Scalars['ID']['output'];
@@ -85763,6 +85842,7 @@ export declare type KnowledgeBaseSource = {
85763
85842
  name: Scalars['String']['output'];
85764
85843
  permissions?: Maybe<KnowledgeBaseSourcePermissions>;
85765
85844
  sourceType?: Maybe<Scalars['String']['output']>;
85845
+ sourceVisibility?: Maybe<Scalars['String']['output']>;
85766
85846
  url: Scalars['String']['output'];
85767
85847
  };
85768
85848
  export declare type KnowledgeBaseSourcePermissionsArgs = {
@@ -85774,6 +85854,10 @@ export declare type KnowledgeBaseSourceEdge = {
85774
85854
  node: KnowledgeBaseSource;
85775
85855
  };
85776
85856
  export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
85857
+ export declare enum KnowledgeBaseSourceVisibility {
85858
+ External = "EXTERNAL",
85859
+ Internal = "INTERNAL"
85860
+ }
85777
85861
  export declare type KnowledgeBaseSources = {
85778
85862
  __typename?: 'KnowledgeBaseSources';
85779
85863
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
@@ -91280,6 +91364,10 @@ export declare type MercuryFundsMutationApi = {
91280
91364
  deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
91281
91365
  deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
91282
91366
  deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
91367
+ updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
91368
+ updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
91369
+ updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
91370
+ updateInvestmentCategorySetName?: Maybe<MercuryUpdateInvestmentCategorySetPayload>;
91283
91371
  };
91284
91372
  export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
91285
91373
  input: MercuryCreateCostSubtypeInput;
@@ -91302,6 +91390,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
91302
91390
  export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
91303
91391
  input: MercuryDeleteInvestmentCategorySetInput;
91304
91392
  };
91393
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
91394
+ input: MercuryUpdateInvestmentCategoryDescriptionInput;
91395
+ };
91396
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryKeyArgs = {
91397
+ input: MercuryUpdateInvestmentCategoryKeyInput;
91398
+ };
91399
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
91400
+ input: MercuryUpdateInvestmentCategoryNameInput;
91401
+ };
91402
+ export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs = {
91403
+ input: MercuryUpdateInvestmentCategorySetNameInput;
91404
+ };
91305
91405
  export declare type MercuryFundsQueryApi = {
91306
91406
  __typename?: 'MercuryFundsQueryApi';
91307
91407
  costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
@@ -93034,6 +93134,34 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
93034
93134
  targetDate?: InputMaybe<Scalars['String']['input']>;
93035
93135
  targetDateType?: InputMaybe<MercuryTargetDateType>;
93036
93136
  };
93137
+ export declare type MercuryUpdateInvestmentCategoryDescriptionInput = {
93138
+ description: Scalars['String']['input'];
93139
+ id: Scalars['ID']['input'];
93140
+ };
93141
+ export declare type MercuryUpdateInvestmentCategoryKeyInput = {
93142
+ id: Scalars['ID']['input'];
93143
+ key: Scalars['String']['input'];
93144
+ };
93145
+ export declare type MercuryUpdateInvestmentCategoryNameInput = {
93146
+ id: Scalars['ID']['input'];
93147
+ name: Scalars['String']['input'];
93148
+ };
93149
+ export declare type MercuryUpdateInvestmentCategoryPayload = Payload & {
93150
+ __typename?: 'MercuryUpdateInvestmentCategoryPayload';
93151
+ errors?: Maybe<Array<MutationError>>;
93152
+ success: Scalars['Boolean']['output'];
93153
+ updatedInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
93154
+ };
93155
+ export declare type MercuryUpdateInvestmentCategorySetNameInput = {
93156
+ id: Scalars['ID']['input'];
93157
+ name: Scalars['String']['input'];
93158
+ };
93159
+ export declare type MercuryUpdateInvestmentCategorySetPayload = Payload & {
93160
+ __typename?: 'MercuryUpdateInvestmentCategorySetPayload';
93161
+ errors?: Maybe<Array<MutationError>>;
93162
+ success: Scalars['Boolean']['output'];
93163
+ updatedInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
93164
+ };
93037
93165
  export declare type MercuryUpdateMoveFundsChangeInput = {
93038
93166
  amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
93039
93167
  changeId: Scalars['ID']['input'];
@@ -99782,6 +99910,7 @@ export declare type Query = {
99782
99910
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
99783
99911
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
99784
99912
  channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
99913
+ channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
99785
99914
  channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
99786
99915
  channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
99787
99916
  channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
@@ -100180,6 +100309,7 @@ export declare type Query = {
100180
100309
  kitsune_hello?: Maybe<Scalars['String']['output']>;
100181
100310
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
100182
100311
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
100312
+ knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
100183
100313
  knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
100184
100314
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
100185
100315
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
@@ -102911,6 +103041,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
102911
103041
  cloudId: Scalars['ID']['input'];
102912
103042
  spaceAris: Array<Scalars['ID']['input']>;
102913
103043
  };
103044
+ export declare type QueryKnowledgeBase_AgentSearchArgs = {
103045
+ searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
103046
+ };
102914
103047
  export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
102915
103048
  container?: InputMaybe<Scalars['ID']['input']>;
102916
103049
  };
@@ -103716,6 +103849,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
103716
103849
  export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
103717
103850
  name: Scalars['String']['input'];
103718
103851
  };
103852
+ export declare type QueryStakeholderComms_GetFileReadMediaTokenArgs = {
103853
+ fileId?: InputMaybe<Scalars['String']['input']>;
103854
+ };
103719
103855
  export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
103720
103856
  externalUserContextToken?: InputMaybe<Scalars['String']['input']>;
103721
103857
  groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -135881,7 +136017,7 @@ export declare type TrelloQuickCaptureNotification = {
135881
136017
  objectId: Scalars['ID']['output'];
135882
136018
  source?: Maybe<TrelloCardExternalSource>;
135883
136019
  status?: Maybe<Scalars['String']['output']>;
135884
- type: Scalars['String']['output'];
136020
+ type?: Maybe<Scalars['String']['output']>;
135885
136021
  };
135886
136022
  export declare type TrelloQuickCaptureNotificationCleared = {
135887
136023
  __typename?: 'TrelloQuickCaptureNotificationCleared';
@@ -139072,6 +139208,7 @@ export declare enum VendorType {
139072
139208
  export declare type VerifyComponentAutoPopulationField = {
139073
139209
  componentId: Scalars['ID']['input'];
139074
139210
  fieldId: Scalars['String']['input'];
139211
+ isCorrect: Scalars['Boolean']['input'];
139075
139212
  value: Scalars['String']['input'];
139076
139213
  };
139077
139214
  export declare type VerifyComponentAutoPopulationFieldPayload = Payload & {