@sheerid/jslib 1.148.3 → 1.150.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.
Files changed (59) hide show
  1. package/__tests__/__mocks__/mockVerificationService.d.ts +9 -0
  2. package/es5/Tmetrix.bundle.js +4 -4
  3. package/es5/messages_ar.bundle.js +4 -4
  4. package/es5/messages_bg.bundle.js +4 -4
  5. package/es5/messages_cs.bundle.js +4 -4
  6. package/es5/messages_da.bundle.js +4 -4
  7. package/es5/messages_de.bundle.js +4 -4
  8. package/es5/messages_el.bundle.js +4 -4
  9. package/es5/messages_en-GB.bundle.js +4 -4
  10. package/es5/messages_es-ES.bundle.js +4 -4
  11. package/es5/messages_es.bundle.js +4 -4
  12. package/es5/messages_fi.bundle.js +4 -4
  13. package/es5/messages_fr-CA.bundle.js +4 -4
  14. package/es5/messages_fr.bundle.js +4 -4
  15. package/es5/messages_ga.bundle.js +4 -4
  16. package/es5/messages_hr.bundle.js +4 -4
  17. package/es5/messages_hu.bundle.js +4 -4
  18. package/es5/messages_id.bundle.js +4 -4
  19. package/es5/messages_it.bundle.js +4 -4
  20. package/es5/messages_iw.bundle.js +4 -4
  21. package/es5/messages_ja.bundle.js +4 -4
  22. package/es5/messages_ko.bundle.js +4 -4
  23. package/es5/messages_lo.bundle.js +4 -4
  24. package/es5/messages_lt.bundle.js +4 -4
  25. package/es5/messages_ms.bundle.js +4 -4
  26. package/es5/messages_nl.bundle.js +4 -4
  27. package/es5/messages_no.bundle.js +4 -4
  28. package/es5/messages_pl.bundle.js +4 -4
  29. package/es5/messages_pt-BR.bundle.js +4 -4
  30. package/es5/messages_pt.bundle.js +4 -4
  31. package/es5/messages_ru.bundle.js +4 -4
  32. package/es5/messages_sk.bundle.js +4 -4
  33. package/es5/messages_sl.bundle.js +4 -4
  34. package/es5/messages_sr.bundle.js +4 -4
  35. package/es5/messages_sv.bundle.js +4 -4
  36. package/es5/messages_th.bundle.js +4 -4
  37. package/es5/messages_tr.bundle.js +4 -4
  38. package/es5/messages_zh-HK.bundle.js +4 -4
  39. package/es5/messages_zh.bundle.js +4 -4
  40. package/localized-messages/nl-BE.json +991 -0
  41. package/manifest.json +43 -43
  42. package/package.json +1 -1
  43. package/sheerid-requestOrg.css +5 -5
  44. package/sheerid-requestOrg.css.map +1 -1
  45. package/sheerid-requestOrg.js +10 -10
  46. package/sheerid-requestOrg.js.map +1 -1
  47. package/sheerid-utils.js +6 -6
  48. package/sheerid-utils.js.map +1 -1
  49. package/sheerid.css +5 -5
  50. package/sheerid.css.map +1 -1
  51. package/sheerid.js +6 -6
  52. package/sheerid.js.map +1 -1
  53. package/sheerides6.js +119 -14
  54. package/sheerides6.js.map +1 -1
  55. package/src/es6.d.ts +1 -1
  56. package/src/lib/ServerApi/ApiUrls.d.ts +2 -0
  57. package/src/lib/types/runtimeTypes.d.ts +8 -0
  58. package/src/lib/types/types.d.ts +3 -1
  59. package/types-reference.zip +0 -0
package/sheerides6.js CHANGED
@@ -515,6 +515,7 @@ const Locales = [
515
515
  "lt",
516
516
  "ms",
517
517
  "nl",
518
+ "nl-BE",
518
519
  "no",
519
520
  "pl",
520
521
  "pt-BR",
@@ -589,6 +590,15 @@ const MockSteps = [
589
590
  ...Object.values(VerificationStepsEnum),
590
591
  ...Object.values(MockStepsEnum),
591
592
  ];
593
+ var RewardDisplayEnum;
594
+ (function (RewardDisplayEnum) {
595
+ RewardDisplayEnum["TEXT"] = "TEXT";
596
+ RewardDisplayEnum["QR"] = "QR";
597
+ RewardDisplayEnum["PDF417"] = "PDF417";
598
+ RewardDisplayEnum["UPC_A"] = "UPC_A";
599
+ RewardDisplayEnum["ITF"] = "ITF";
600
+ RewardDisplayEnum["CODE_128"] = "CODE_128";
601
+ })(RewardDisplayEnum || (RewardDisplayEnum = {}));
592
602
  var SegmentToStepMap;
593
603
  (function (SegmentToStepMap) {
594
604
  SegmentToStepMap["student"] = "collectStudentPersonalInfo";
@@ -1569,6 +1579,7 @@ const getAddSchoolRequestUrl = () => `${getOptions().restApi.serviceUrl}rest/v2/
1569
1579
  const getNewSmsCodeResendUrl = (verificationId) => `${getOptions().restApi.serviceUrl}rest/v2/verification/${verificationId}/step/smsLoop/retry`;
1570
1580
  const getNewEmailCodeResendUrl = (verificationId) => `${getOptions().restApi.serviceUrl}rest/v2/verification/${verificationId}/step/emailLoop/retry`;
1571
1581
  const getFieldsToCollectUrl = (verificationId, stepName) => `${getOptions().restApi.serviceUrl}rest/v2/verification/${verificationId}/${stepName}/fields`;
1582
+ const getBarcodeUrl = (verificationId, rewardKey, symbology) => `${getOptions().restApi.serviceUrl}rest/v2/verification/${verificationId}/barcode?rewardKey=${rewardKey}&symbology=${symbology}`;
1572
1583
  /**
1573
1584
  * Get the version that was actually used
1574
1585
  * Comes from the contents of sheerid.js. The build process adds it there.
@@ -11205,7 +11216,87 @@ const allMockedResponses = {
11205
11216
  cancelSocialSecurityNumber: {},
11206
11217
  cancelDocUpload: mockCancelDocUploadResponse,
11207
11218
  missingRequiredMetadata: mockErrorResponse,
11208
- };
11219
+ };
11220
+ // ======================= Student Theme =======================
11221
+ ({
11222
+ isTestMode: true,
11223
+ isSmsNotifierConfigured: false,
11224
+ intl: {
11225
+ locale: "en-US",
11226
+ messages: {
11227
+ errorId: {
11228
+ verificationLimitExceeded: "exceeded",
11229
+ noRemainingRewardCodes: "no codes",
11230
+ },
11231
+ lowRewardPool: null,
11232
+ companyName: "sheerid",
11233
+ step: {
11234
+ personalInfo: {
11235
+ title: "Unlock this Student-Only Offer",
11236
+ },
11237
+ docUpload: {
11238
+ title: "We need your ID & class schedule",
11239
+ subtitle: "Documents will be reviewed in {estimatedWaitTime} by staff at SheerID, a trusted partner.",
11240
+ },
11241
+ success: {
11242
+ title: "Success! You've been verified",
11243
+ subtitle: "Here is your personal coupon code. It is unique to you and can only be used once.",
11244
+ redirectUrl: null,
11245
+ redirectButtonText: "Use code now",
11246
+ },
11247
+ error: {
11248
+ errorId: {
11249
+ verificationLimitExceeded: {
11250
+ title: "exceeded",
11251
+ },
11252
+ noRemainingRewardCodes: {
11253
+ title: "no codes",
11254
+ buttonText: "find offer",
11255
+ },
11256
+ expiredProgram: {
11257
+ title: "no codes",
11258
+ buttonText: "find offer",
11259
+ },
11260
+ inactiveProgram: {
11261
+ title: "no codes",
11262
+ buttonText: "find offer",
11263
+ },
11264
+ missingRequiredMetadata: {
11265
+ title: "missing required metadata",
11266
+ },
11267
+ },
11268
+ },
11269
+ },
11270
+ },
11271
+ },
11272
+ customCss: "/* \r\n\r\n**********************\r\nATTENTION - This configuration is written by sheerid-web-apps, my.sheerid.com\r\n**********************\r\n\r\n */",
11273
+ logoUrl: null,
11274
+ openOrgSearchEnabled: false,
11275
+ config: {
11276
+ countries: ["US", "CA", "GB"],
11277
+ locales: ["en-US"],
11278
+ maxReviewTime: "20_MIN",
11279
+ estimatedReviewTime: "A_FEW_MINUTES",
11280
+ marketConsent: {
11281
+ enabled: null,
11282
+ required: null,
11283
+ message: null,
11284
+ },
11285
+ customMetadata: {
11286
+ enabled: false,
11287
+ keys: [],
11288
+ requiredKeys: [],
11289
+ },
11290
+ customFaqLink: null,
11291
+ orgSearchUrl: "https://orgsearch-preview.sheerid.net/rest/organization/search?tags=TITLE4%2CHEI&country=US%2CCA%2CGB%2CJP%2CMX%2CFR%2CDE%2CZW&type=UNIVERSITY&name=",
11292
+ orgTypes: ["UNIVERSITY"],
11293
+ excludedOrganizationIds: [],
11294
+ offerType: "staticCode",
11295
+ minAge: null,
11296
+ maxAge: null,
11297
+ rewardDisplay: [RewardDisplayEnum.TEXT],
11298
+ },
11299
+ });
11209
11300
 
11210
11301
  /**
11211
11302
  * Get a string value either from the query string (first priority) or from the options object (second priority)
@@ -19742,6 +19833,9 @@ const StepSuccess = ({ verificationService }) => {
19742
19833
  const showRedirect = Boolean(redirectDestination);
19743
19834
  const rewardCode = verificationService.verificationResponse.rewardCode || "${rewardCode}"; // eslint-disable-line no-template-curly-in-string
19744
19835
  const noCodeType = verificationService.programTheme.config.offerType === "noCode";
19836
+ const { verificationId } = verificationService.verificationResponse;
19837
+ const { rewardDisplay } = verificationService.programTheme.config;
19838
+ const showReward = !noCodeType && !!rewardDisplay.length;
19745
19839
  return (React.createElement("div", { id: "sid-step-success", className: "sid-success-container sid-l-container" },
19746
19840
  React.createElement("div", { className: "sid-header sid-l-horz-center sid-l-space-top-md" },
19747
19841
  React.createElement("div", { className: "sid-success-logo-container sid-l-horz-center" },
@@ -19751,15 +19845,17 @@ const StepSuccess = ({ verificationService }) => {
19751
19845
  React.createElement("div", { className: "sid-header__subtitle sid-l-horz-center sid-l-two-thirds-width" },
19752
19846
  React.createElement(FormattedHTMLMessage, { id: "step.success.subtitle", defaultMessage: `Here is your personal coupon code.
19753
19847
  It is unique to you and can only be used once.` }))),
19754
- noCodeType ? null : (React.createElement(React.Fragment, null,
19755
- React.createElement("div", { className: "sid-reward-code sid-l-space-top-lg sid-h-jumbo-text sid-l-horz-center" }, rewardCode),
19756
- React.createElement("div", { className: "sid-l-space-top-md sid-copy-to-clipboard-container sid-h-bold-text sid-l-horz-center" },
19757
- React.createElement(CopyToClipboard, { textToCopy: rewardCode, notificationText: React.createElement(FormattedHTMLMessage, { id: "copied", defaultMessage: "Copied" }) },
19758
- React.createElement(FormattedHTMLMessage, { id: "step.success.copyCouponCode", defaultMessage: "Copy Coupon code" }))))),
19848
+ showReward && (React.createElement("div", { className: "sid-l-horz-center sid-reward-container sid-l-space-top-md" }, rewardDisplay.map((displayType) => {
19849
+ if (displayType !== RewardDisplayEnum.TEXT)
19850
+ return (React.createElement("img", { key: displayType, className: "sid-l-space-top-md sid-barcode", alt: rewardCode, src: getBarcodeUrl(verificationId, "rewardCode", displayType) }));
19851
+ return (React.createElement(React.Fragment, null,
19852
+ React.createElement("div", { className: "sid-reward-code sid-l-space-top-md sid-h-jumbo-text sid-l-horz-center" }, rewardCode),
19853
+ React.createElement("div", { className: "sid-l-space-top-md sid-h-bold-text sid-l-horz-center" },
19854
+ React.createElement(CopyToClipboard, { textToCopy: rewardCode, notificationText: React.createElement(FormattedHTMLMessage, { id: "copied", defaultMessage: "Copied" }) },
19855
+ React.createElement(FormattedHTMLMessage, { id: "step.success.copyCouponCode", defaultMessage: "Copy Coupon code" })))));
19856
+ }))),
19759
19857
  React.createElement("div", { className: `sid-footer sid-success-footer sid-l-horz-center ${noCodeType ? "sid-l-space-top-md" : "sid-l-space-top-lg"}` },
19760
- React.createElement(FormattedHTMLMessage, { id: "step.success.emailNotification", defaultMessage: `
19761
- We have emailed you a copy so you can use your code now or later. Look for the email from verify@sheerid.com
19762
- ` })),
19858
+ React.createElement(FormattedHTMLMessage, { id: "step.success.emailNotification", defaultMessage: "We have emailed you a copy so you can use your code now or later. Look for the email from verify@sheerid.com" })),
19763
19859
  showRedirect ? (React.createElement("div", { className: "sid-submit sid-success-submit sid-l-space-top-md" },
19764
19860
  React.createElement("button", { type: "button", onClick: () => redirect(redirectDestination), className: "sid-btn sid-success-redirect-btn sid-btn--dark" },
19765
19861
  React.createElement(FormattedHTMLMessage, { id: "step.success.redirectButtonText", defaultMessage: "Use code now" })))) : (""),
@@ -21841,6 +21937,10 @@ const StepDocUploadComponent = injectIntl(StepDocUpload);
21841
21937
  const StepConsolation = ({ verificationService }) => {
21842
21938
  const consolationRewardCode = verificationService.verificationResponse.consolationRewardCode ||
21843
21939
  "${consolationRewardCode}"; // eslint-disable-line no-template-curly-in-string
21940
+ const noCodeType = verificationService.programTheme.config.offerType === "noCode";
21941
+ const { verificationId } = verificationService.verificationResponse;
21942
+ const { rewardDisplay } = verificationService.programTheme.config;
21943
+ const showReward = !noCodeType && !!rewardDisplay.length;
21844
21944
  return (React.createElement("div", { id: "sid-step-consolation", className: "sid-l-container" },
21845
21945
  React.createElement("div", { className: "sid-header sid-l-horz-center sid-l-space-top-md" },
21846
21946
  React.createElement("div", { className: "sid-l-horz-center" },
@@ -21849,10 +21949,15 @@ const StepConsolation = ({ verificationService }) => {
21849
21949
  React.createElement(FormattedHTMLMessage, { id: "step.consolation.title", defaultMessage: "Claim your offer" })),
21850
21950
  React.createElement("div", { className: "sid-header__subtitle sid-l-horz-center sid-l-two-thirds-width" },
21851
21951
  React.createElement(FormattedHTMLMessage, { id: "step.consolation.subtitle", defaultMessage: "Unfortunately we could not verify your status, but we value your interest and are offering this promo code as a thank you. It is unique to you and can only be used once." }))),
21852
- React.createElement("div", { className: "sid-reward-code sid-l-space-top-lg sid-h-jumbo-text sid-l-horz-center" }, consolationRewardCode),
21853
- React.createElement("div", { className: "sid-l-space-top-md sid-h-bold-text sid-l-horz-center" },
21854
- React.createElement(CopyToClipboard, { textToCopy: consolationRewardCode, notificationText: React.createElement(FormattedHTMLMessage, { id: "copied", defaultMessage: "Copied" }) },
21855
- React.createElement(FormattedHTMLMessage, { id: "step.success.copyCouponCode", defaultMessage: "Copy Coupon code" }))),
21952
+ showReward && (React.createElement("div", { className: "sid-l-horz-center sid-reward-container sid-l-space-top-md" }, rewardDisplay.map((displayType) => {
21953
+ if (displayType !== RewardDisplayEnum.TEXT)
21954
+ return (React.createElement("img", { key: displayType, className: "sid-l-space-top-md sid-barcode", alt: consolationRewardCode, src: getBarcodeUrl(verificationId, "consolationRewardCode", displayType) }));
21955
+ return (React.createElement(React.Fragment, null,
21956
+ React.createElement("div", { className: "sid-reward-code sid-l-space-top-lg sid-h-jumbo-text sid-l-horz-center" }, consolationRewardCode),
21957
+ React.createElement("div", { className: "sid-l-space-top-md sid-h-bold-text sid-l-horz-center" },
21958
+ React.createElement(CopyToClipboard, { textToCopy: consolationRewardCode, notificationText: React.createElement(FormattedHTMLMessage, { id: "copied", defaultMessage: "Copied" }) },
21959
+ React.createElement(FormattedHTMLMessage, { id: "step.success.copyCouponCode", defaultMessage: "Copy Coupon code" })))));
21960
+ }))),
21856
21961
  React.createElement("div", { className: "sid-footer sid-l-horz-center sid-l-space-top-lg" },
21857
21962
  React.createElement(FormattedHTMLMessage, { id: "rewardCodeEmailNotification", defaultMessage: "We have emailed you a copy so you can use your new code now or later. Look for the email from verify@sheerid.com." })),
21858
21963
  React.createElement("div", { className: "sid-footer sid-l-horz-center sid-l-space-top-lg sid-h-small-text" },
@@ -22599,5 +22704,5 @@ const collectDeviceProfile = async (verificationId, programId) => {
22599
22704
  includeIPQSDeviceFingerprintScript(programTheme, verificationId);
22600
22705
  };
22601
22706
 
22602
- export { ACCEPTED_DOC_MIME_TYPES, AcceptableUploadsComponent, AddressComponent, BirthDateComponent, BranchOfServiceComponent, ChangeLocaleComponent, CityComponent, CollegeNameComponent, CompanyComponent, CopyToClipboard, CountDownComponent, CountryComponent, CountryComponentWrapper, DEFAULT_LOCALE, DEFAULT_MINIMUM_ORG_SEARCH_VALUE_LENGTH, DEFAULT_PRIVACY_POLICY_URL, DeleteJson, DischargeDateComponent, DriverLicenseNumberComponent, EmailComponent, ExtraMessage, FIRST_RESPONDER_STATUS, FaqLinkComponent, FetchOrganizationsComponent, FieldIdEnum, FieldIds, FieldLabel, FirstNameComponent, FirstResponderOrganizationComponent, FirstResponderStatusComponent, FirstResponderStatusDefaultMessagesEnum, FormFieldCheckbox, FormFieldCustom, FormFieldLayout, FormFieldText, FormFooterComponent, GetEmptyTheme, GetJson, GetResponse, HTTP_REQUEST_TIMEOUT, HookNameEnum, HookNames, HowDoesVerifyingWorkComponent, InputSelectButtonComponent, InputSelectComponent, InputSelectListComponent, InputTextComponent, LICENSED_PROFESSIONAL_STATUS, LOW_INCOME_STATUS, LastNameComponent, LinkExternal, LoadingSpinnerComponent, Locales, LogoComponent, LowIncomeOrganizationComponent, LowIncomeStatusDefaultMessagesEnum, MAX_DOC_UPLOAD_DOCS_ALLOWED, MEDICAL_PROFESSIONAL_STATUS, MILITARY_STATUS, MarketConsentWrapperComponent as MarketConsentWrapper, MedicalProfessionalOrganizationComponent, MedicalProfessionalStatusDefaultMessagesEnum, MedicalStatusComponent, MemberIdComponent, MembershipOrganizationComponent, MilitaryStatusComponent, MilitaryStatusDefaultMessagesEnum, MockSteps, MockStepsEnum, OptInComponent, OptInInputComponent, OrganizationListComponent, OrganizationResultComponent, PhoneNumberComponent, PostFiles, PostJson, PostalCodeComponent, PostalCodeInputComponent, PoweredByComponent, PrivacyPolicyLinkComponent, QUERY_STRING_ERRORID_OVERRIDE, QUERY_STRING_INSTALL_PAGE_URL, QUERY_STRING_REDIRECT_URL_OVERRIDE, QUERY_STRING_REWARD_CODE_OVERRIDE, QUERY_STRING_SEGMENT_OVERRIDE, QUERY_STRING_STEP_OVERRIDE, QUERY_STRING_SUBSEGMENT_OVERRIDE, RECENT_MOVER_STATUS, RequestOrganizationContext, RequestOrganizationErrorComponent, RequestOrganizationForm, RequestOrganizationFormFooterComponent, RequestOrganizationSearchComponent, RequestOrganizationSearchResultComponent, RequestOrganizationSuccessComponent, ReviewPendingComponent, RewardsRemainingComponent, SHEERID, SMSCodeComponent, SSN_STRING_LENGTH, SSOPendingComponent, SearchFieldComponent, SegmentEnum, Segments, SelectButtonComponent, SelectComponent, SelectListComponent, SocialSecurityNumber, SortByLabel, SsnChoice, StateComponent, StateEnum, StateSelectComponent, StatusComponent, StepActiveMilitaryPersonalInfoComponent, StepDriverLicensePersonalInfoComponent, StepGeneralIdentityPersonalInfoComponent, StepHybridIdentityPersonalInfoComponent, StepLowIncomePersonalInfoComponent, StepOverrideComponent, SubSegmentEnum, TeacherSchoolComponent, TryAgainButtonComponent, TryAgainSteps, TypeaheadComponent, UPLOAD_FILE_PREFIX, UploadInfoComponent, VerificationApiClient, VerificationForm, VerificationSteps, VerificationStepsEnum, addFiles, addHook, allMockedResponses, arrayUnique, assertValidConversionRequest, assertValidDatabaseId, assertValidFieldId, assertValidFunction, assertValidHook, assertValidHookName, assertValidHtmlElement, assertValidLocale, assertValidMockStepName, assertValidProgramId, assertValidSegmentName, assertValidTrackingId, assertValidTryAgainStep, assertValidVerificationStepName, blankOrganization, carrierConsentValueValidator, closeTabRef, collectDeviceProfile, conversion, convertByTrackingId, convertByVerificationId, customValidatorExists$1 as customValidatorExists, deepClone, deepMerge, displaySSN, employmentPInfoReqEmpty, ensureMaxMetadataKeyValueLengths, ensureTrailingSlash, fetchExistingVerificationRequest, fetchProgramOrganizations, fetchRequestOrganizations, formatTwoDigitValues, getAddSchoolRequestUrl, getAllEmptyViewModels, getAvailableCountryChoices, getAvailableLocaleChoices, getAvailableLocales, getAvailableMilitaryStatuses, getAvailableStateChoices, getCompanyName, getConfiguredCountries, getConfiguredStates, getCustomValidator, getCustomValidatorFields, getDefaultCountryChoice, getDomainFromUrl, getEmptyViewModel, getEstAndMaxReviewTimes, getEstimatedReviewTime, getExtendedFieldValidationErrorsEmpty, getFaqLink, getFieldDisplayOrderFromRefs, getFieldValidationErrors, getFieldValidationErrorsEmpty, getFingerprint, getFirstErroredFieldId, getHook, getLocaleSafely, getLogoUrl, getMarketConsent, getMaxReviewTime, getMessages, getMetadata, getNewEmailCodeResendUrl, getNewSmsCodeResendUrl, getNewVerificationRequestUrl, getOptions, getOrgSearchCountryTags, getOverriddenMock, getOverridenValidator, getPhoneNumberValidationError, getPrivacyPolicyCompanyName, getPrivacyPolicyUrl, getProgramThemeUrl, getQueryOrOption, getQueryParamsFromUrl, getRefByFieldId, getRefs, getRouteOverride, getSafe, getSheerIdScriptBasePath, getStatusLabel, getTabRef, getTrackingIdFromQueryString, getVerificationIdFromQueryString, getVerificationStatusUrl, handleCountryOnKeyDown, handleEmailOnKeyDown, handleStateChange, hasFailedInstantMatch, howDoesVerifyingWorkMessages, isFormErrored, isFormFilled, testRequestEmailDomains as isTestEmailDomains, isValidLocale, isValidUsPostalCode, listenToSheerIdFrame, loadInModal, loadInlineIframe, logger, orgToOption, orgsInStatus, overrideComponent, overrideValidator, phoneNumberValidator, populateViewModelFromQueryParams, postVerificationSizeUpdates, postalCodeMatchers, postalCodeValidator, produceDraftViewModel, produceDraftViewModelWithRequiredFields, recordEvent, recordVerificationResponse, recordViewModelChange, refreshStore, registerAdditionalLocales, removeAllFiles, removeCustomValidator, removeFile, requestOrganizationConstants, resetCustomValidators, resetHooks, resetMetadata, resetOptions, resetOverriddenComponents, resetOverriddenValidators, resetRefs, resetStore, resetTabRef, resetViewModel, resolveTrackingId, setCustomValidator, setDimension, setFocus, setGaDimensionTestRequest as setGaDimensionIsTest, setMetadata, setOptions, setRef, setTabRef, setViewModel, shouldCollectAddressFields, shouldCollectPostalCode, socialSecurityEmpty, speakToOuterFrame, submitAddSchoolRequest, submitForm, unDisplaySSN, updateFieldValidationErrors, updateFieldValidationErrorsByFieldId, updateMilitaryViewModel, updateViewModelOrganization, usePollingInterval, validateFieldById, validateMetadata };
22707
+ export { ACCEPTED_DOC_MIME_TYPES, AcceptableUploadsComponent, AddressComponent, BirthDateComponent, BranchOfServiceComponent, ChangeLocaleComponent, CityComponent, CollegeNameComponent, CompanyComponent, CopyToClipboard, CountDownComponent, CountryComponent, CountryComponentWrapper, DEFAULT_LOCALE, DEFAULT_MINIMUM_ORG_SEARCH_VALUE_LENGTH, DEFAULT_PRIVACY_POLICY_URL, DeleteJson, DischargeDateComponent, DriverLicenseNumberComponent, EmailComponent, ExtraMessage, FIRST_RESPONDER_STATUS, FaqLinkComponent, FetchOrganizationsComponent, FieldIdEnum, FieldIds, FieldLabel, FirstNameComponent, FirstResponderOrganizationComponent, FirstResponderStatusComponent, FirstResponderStatusDefaultMessagesEnum, FormFieldCheckbox, FormFieldCustom, FormFieldLayout, FormFieldText, FormFooterComponent, GetEmptyTheme, GetJson, GetResponse, HTTP_REQUEST_TIMEOUT, HookNameEnum, HookNames, HowDoesVerifyingWorkComponent, InputSelectButtonComponent, InputSelectComponent, InputSelectListComponent, InputTextComponent, LICENSED_PROFESSIONAL_STATUS, LOW_INCOME_STATUS, LastNameComponent, LinkExternal, LoadingSpinnerComponent, Locales, LogoComponent, LowIncomeOrganizationComponent, LowIncomeStatusDefaultMessagesEnum, MAX_DOC_UPLOAD_DOCS_ALLOWED, MEDICAL_PROFESSIONAL_STATUS, MILITARY_STATUS, MarketConsentWrapperComponent as MarketConsentWrapper, MedicalProfessionalOrganizationComponent, MedicalProfessionalStatusDefaultMessagesEnum, MedicalStatusComponent, MemberIdComponent, MembershipOrganizationComponent, MilitaryStatusComponent, MilitaryStatusDefaultMessagesEnum, MockSteps, MockStepsEnum, OptInComponent, OptInInputComponent, OrganizationListComponent, OrganizationResultComponent, PhoneNumberComponent, PostFiles, PostJson, PostalCodeComponent, PostalCodeInputComponent, PoweredByComponent, PrivacyPolicyLinkComponent, QUERY_STRING_ERRORID_OVERRIDE, QUERY_STRING_INSTALL_PAGE_URL, QUERY_STRING_REDIRECT_URL_OVERRIDE, QUERY_STRING_REWARD_CODE_OVERRIDE, QUERY_STRING_SEGMENT_OVERRIDE, QUERY_STRING_STEP_OVERRIDE, QUERY_STRING_SUBSEGMENT_OVERRIDE, RECENT_MOVER_STATUS, RequestOrganizationContext, RequestOrganizationErrorComponent, RequestOrganizationForm, RequestOrganizationFormFooterComponent, RequestOrganizationSearchComponent, RequestOrganizationSearchResultComponent, RequestOrganizationSuccessComponent, ReviewPendingComponent, RewardDisplayEnum, RewardsRemainingComponent, SHEERID, SMSCodeComponent, SSN_STRING_LENGTH, SSOPendingComponent, SearchFieldComponent, SegmentEnum, Segments, SelectButtonComponent, SelectComponent, SelectListComponent, SocialSecurityNumber, SortByLabel, SsnChoice, StateComponent, StateEnum, StateSelectComponent, StatusComponent, StepActiveMilitaryPersonalInfoComponent, StepDriverLicensePersonalInfoComponent, StepGeneralIdentityPersonalInfoComponent, StepHybridIdentityPersonalInfoComponent, StepLowIncomePersonalInfoComponent, StepOverrideComponent, SubSegmentEnum, TeacherSchoolComponent, TryAgainButtonComponent, TryAgainSteps, TypeaheadComponent, UPLOAD_FILE_PREFIX, UploadInfoComponent, VerificationApiClient, VerificationForm, VerificationSteps, VerificationStepsEnum, addFiles, addHook, allMockedResponses, arrayUnique, assertValidConversionRequest, assertValidDatabaseId, assertValidFieldId, assertValidFunction, assertValidHook, assertValidHookName, assertValidHtmlElement, assertValidLocale, assertValidMockStepName, assertValidProgramId, assertValidSegmentName, assertValidTrackingId, assertValidTryAgainStep, assertValidVerificationStepName, blankOrganization, carrierConsentValueValidator, closeTabRef, collectDeviceProfile, conversion, convertByTrackingId, convertByVerificationId, customValidatorExists$1 as customValidatorExists, deepClone, deepMerge, displaySSN, employmentPInfoReqEmpty, ensureMaxMetadataKeyValueLengths, ensureTrailingSlash, fetchExistingVerificationRequest, fetchProgramOrganizations, fetchRequestOrganizations, formatTwoDigitValues, getAddSchoolRequestUrl, getAllEmptyViewModels, getAvailableCountryChoices, getAvailableLocaleChoices, getAvailableLocales, getAvailableMilitaryStatuses, getAvailableStateChoices, getCompanyName, getConfiguredCountries, getConfiguredStates, getCustomValidator, getCustomValidatorFields, getDefaultCountryChoice, getDomainFromUrl, getEmptyViewModel, getEstAndMaxReviewTimes, getEstimatedReviewTime, getExtendedFieldValidationErrorsEmpty, getFaqLink, getFieldDisplayOrderFromRefs, getFieldValidationErrors, getFieldValidationErrorsEmpty, getFingerprint, getFirstErroredFieldId, getHook, getLocaleSafely, getLogoUrl, getMarketConsent, getMaxReviewTime, getMessages, getMetadata, getNewEmailCodeResendUrl, getNewSmsCodeResendUrl, getNewVerificationRequestUrl, getOptions, getOrgSearchCountryTags, getOverriddenMock, getOverridenValidator, getPhoneNumberValidationError, getPrivacyPolicyCompanyName, getPrivacyPolicyUrl, getProgramThemeUrl, getQueryOrOption, getQueryParamsFromUrl, getRefByFieldId, getRefs, getRouteOverride, getSafe, getSheerIdScriptBasePath, getStatusLabel, getTabRef, getTrackingIdFromQueryString, getVerificationIdFromQueryString, getVerificationStatusUrl, handleCountryOnKeyDown, handleEmailOnKeyDown, handleStateChange, hasFailedInstantMatch, howDoesVerifyingWorkMessages, isFormErrored, isFormFilled, testRequestEmailDomains as isTestEmailDomains, isValidLocale, isValidUsPostalCode, listenToSheerIdFrame, loadInModal, loadInlineIframe, logger, orgToOption, orgsInStatus, overrideComponent, overrideValidator, phoneNumberValidator, populateViewModelFromQueryParams, postVerificationSizeUpdates, postalCodeMatchers, postalCodeValidator, produceDraftViewModel, produceDraftViewModelWithRequiredFields, recordEvent, recordVerificationResponse, recordViewModelChange, refreshStore, registerAdditionalLocales, removeAllFiles, removeCustomValidator, removeFile, requestOrganizationConstants, resetCustomValidators, resetHooks, resetMetadata, resetOptions, resetOverriddenComponents, resetOverriddenValidators, resetRefs, resetStore, resetTabRef, resetViewModel, resolveTrackingId, setCustomValidator, setDimension, setFocus, setGaDimensionTestRequest as setGaDimensionIsTest, setMetadata, setOptions, setRef, setTabRef, setViewModel, shouldCollectAddressFields, shouldCollectPostalCode, socialSecurityEmpty, speakToOuterFrame, submitAddSchoolRequest, submitForm, unDisplaySSN, updateFieldValidationErrors, updateFieldValidationErrorsByFieldId, updateMilitaryViewModel, updateViewModelOrganization, usePollingInterval, validateFieldById, validateMetadata };
22603
22708
  //# sourceMappingURL=sheerides6.js.map