@sheerid/jslib 1.149.0 → 1.151.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 (61) 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/manifest.json +43 -43
  41. package/package.json +1 -1
  42. package/sheerid-requestOrg.css +5 -5
  43. package/sheerid-requestOrg.css.map +1 -1
  44. package/sheerid-requestOrg.js +10 -10
  45. package/sheerid-requestOrg.js.map +1 -1
  46. package/sheerid-utils.js +6 -6
  47. package/sheerid-utils.js.map +1 -1
  48. package/sheerid.css +5 -5
  49. package/sheerid.css.map +1 -1
  50. package/sheerid.js +6 -6
  51. package/sheerid.js.map +1 -1
  52. package/sheerides6.js +140 -17
  53. package/sheerides6.js.map +1 -1
  54. package/src/es6.d.ts +1 -1
  55. package/src/lib/ServerApi/ApiUrls.d.ts +2 -0
  56. package/src/lib/frames/frameMessages.d.ts +7 -2
  57. package/src/lib/installScript/iframe.d.ts +2 -1
  58. package/src/lib/installScript/modal.d.ts +2 -1
  59. package/src/lib/types/runtimeTypes.d.ts +8 -0
  60. package/src/lib/types/types.d.ts +2 -0
  61. package/types-reference.zip +0 -0
package/sheerides6.js CHANGED
@@ -590,6 +590,15 @@ const MockSteps = [
590
590
  ...Object.values(VerificationStepsEnum),
591
591
  ...Object.values(MockStepsEnum),
592
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 = {}));
593
602
  var SegmentToStepMap;
594
603
  (function (SegmentToStepMap) {
595
604
  SegmentToStepMap["student"] = "collectStudentPersonalInfo";
@@ -1570,6 +1579,7 @@ const getAddSchoolRequestUrl = () => `${getOptions().restApi.serviceUrl}rest/v2/
1570
1579
  const getNewSmsCodeResendUrl = (verificationId) => `${getOptions().restApi.serviceUrl}rest/v2/verification/${verificationId}/step/smsLoop/retry`;
1571
1580
  const getNewEmailCodeResendUrl = (verificationId) => `${getOptions().restApi.serviceUrl}rest/v2/verification/${verificationId}/step/emailLoop/retry`;
1572
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}`;
1573
1583
  /**
1574
1584
  * Get the version that was actually used
1575
1585
  * Comes from the contents of sheerid.js. The build process adds it there.
@@ -11206,7 +11216,87 @@ const allMockedResponses = {
11206
11216
  cancelSocialSecurityNumber: {},
11207
11217
  cancelDocUpload: mockCancelDocUploadResponse,
11208
11218
  missingRequiredMetadata: mockErrorResponse,
11209
- };
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
+ });
11210
11300
 
11211
11301
  /**
11212
11302
  * Get a string value either from the query string (first priority) or from the options object (second priority)
@@ -19743,6 +19833,9 @@ const StepSuccess = ({ verificationService }) => {
19743
19833
  const showRedirect = Boolean(redirectDestination);
19744
19834
  const rewardCode = verificationService.verificationResponse.rewardCode || "${rewardCode}"; // eslint-disable-line no-template-curly-in-string
19745
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;
19746
19839
  return (React.createElement("div", { id: "sid-step-success", className: "sid-success-container sid-l-container" },
19747
19840
  React.createElement("div", { className: "sid-header sid-l-horz-center sid-l-space-top-md" },
19748
19841
  React.createElement("div", { className: "sid-success-logo-container sid-l-horz-center" },
@@ -19752,15 +19845,17 @@ const StepSuccess = ({ verificationService }) => {
19752
19845
  React.createElement("div", { className: "sid-header__subtitle sid-l-horz-center sid-l-two-thirds-width" },
19753
19846
  React.createElement(FormattedHTMLMessage, { id: "step.success.subtitle", defaultMessage: `Here is your personal coupon code.
19754
19847
  It is unique to you and can only be used once.` }))),
19755
- noCodeType ? null : (React.createElement(React.Fragment, null,
19756
- React.createElement("div", { className: "sid-reward-code sid-l-space-top-lg sid-h-jumbo-text sid-l-horz-center" }, rewardCode),
19757
- React.createElement("div", { className: "sid-l-space-top-md sid-copy-to-clipboard-container sid-h-bold-text sid-l-horz-center" },
19758
- React.createElement(CopyToClipboard, { textToCopy: rewardCode, notificationText: React.createElement(FormattedHTMLMessage, { id: "copied", defaultMessage: "Copied" }) },
19759
- 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
+ }))),
19760
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"}` },
19761
- React.createElement(FormattedHTMLMessage, { id: "step.success.emailNotification", defaultMessage: `
19762
- We have emailed you a copy so you can use your code now or later. Look for the email from verify@sheerid.com
19763
- ` })),
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" })),
19764
19859
  showRedirect ? (React.createElement("div", { className: "sid-submit sid-success-submit sid-l-space-top-md" },
19765
19860
  React.createElement("button", { type: "button", onClick: () => redirect(redirectDestination), className: "sid-btn sid-success-redirect-btn sid-btn--dark" },
19766
19861
  React.createElement(FormattedHTMLMessage, { id: "step.success.redirectButtonText", defaultMessage: "Use code now" })))) : (""),
@@ -21842,6 +21937,10 @@ const StepDocUploadComponent = injectIntl(StepDocUpload);
21842
21937
  const StepConsolation = ({ verificationService }) => {
21843
21938
  const consolationRewardCode = verificationService.verificationResponse.consolationRewardCode ||
21844
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;
21845
21944
  return (React.createElement("div", { id: "sid-step-consolation", className: "sid-l-container" },
21846
21945
  React.createElement("div", { className: "sid-header sid-l-horz-center sid-l-space-top-md" },
21847
21946
  React.createElement("div", { className: "sid-l-horz-center" },
@@ -21850,10 +21949,15 @@ const StepConsolation = ({ verificationService }) => {
21850
21949
  React.createElement(FormattedHTMLMessage, { id: "step.consolation.title", defaultMessage: "Claim your offer" })),
21851
21950
  React.createElement("div", { className: "sid-header__subtitle sid-l-horz-center sid-l-two-thirds-width" },
21852
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." }))),
21853
- React.createElement("div", { className: "sid-reward-code sid-l-space-top-lg sid-h-jumbo-text sid-l-horz-center" }, consolationRewardCode),
21854
- React.createElement("div", { className: "sid-l-space-top-md sid-h-bold-text sid-l-horz-center" },
21855
- React.createElement(CopyToClipboard, { textToCopy: consolationRewardCode, notificationText: React.createElement(FormattedHTMLMessage, { id: "copied", defaultMessage: "Copied" }) },
21856
- 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
+ }))),
21857
21961
  React.createElement("div", { className: "sid-footer sid-l-horz-center sid-l-space-top-lg" },
21858
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." })),
21859
21963
  React.createElement("div", { className: "sid-footer sid-l-horz-center sid-l-space-top-lg sid-h-small-text" },
@@ -22186,8 +22290,13 @@ class NewVerification extends React.Component {
22186
22290
  N(); // https://sheerid.atlassian.net/browse/UX-362
22187
22291
  maintainFocusInLightbox();
22188
22292
  listenToInstallPage((event) => {
22189
- if (event.data.action === "setViewModel") {
22190
- setViewModel(event.data.viewModel);
22293
+ switch (event.data.action) {
22294
+ case "setViewModel":
22295
+ setViewModel(event.data.viewModel);
22296
+ break;
22297
+ case "setOptions":
22298
+ setOptions(event.data.options);
22299
+ break;
22191
22300
  }
22192
22301
  });
22193
22302
  // Special-case, mocking the loading psuedo-step
@@ -22434,7 +22543,18 @@ class Iframe {
22434
22543
  action: "setViewModel",
22435
22544
  viewModel,
22436
22545
  };
22437
- this.addOnLoadEvent(() => this.iframe.contentWindow.postMessage(message, this.verificationUrl.origin));
22546
+ this.addOnLoadEvent(() => {
22547
+ this.iframe.contentWindow.postMessage(message, this.verificationUrl.origin);
22548
+ });
22549
+ }
22550
+ setOptions(options) {
22551
+ const message = {
22552
+ action: "setOptions",
22553
+ options,
22554
+ };
22555
+ this.addOnLoadEvent(() => {
22556
+ this.iframe.contentWindow.postMessage(message, this.verificationUrl.origin);
22557
+ });
22438
22558
  }
22439
22559
  setInstallType(installType) {
22440
22560
  this.installType = installType;
@@ -22555,6 +22675,9 @@ class Modal {
22555
22675
  setViewModel(viewModel) {
22556
22676
  this.iframeInstance.setViewModel(viewModel);
22557
22677
  }
22678
+ setOptions(options) {
22679
+ this.iframeInstance.setOptions(options);
22680
+ }
22558
22681
  }
22559
22682
 
22560
22683
  // Called from the parent page to load the jslib within an iFrame NOT in a modal, but in the flow of a page. e.g. between two divs
@@ -22600,5 +22723,5 @@ const collectDeviceProfile = async (verificationId, programId) => {
22600
22723
  includeIPQSDeviceFingerprintScript(programTheme, verificationId);
22601
22724
  };
22602
22725
 
22603
- 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 };
22726
+ 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 };
22604
22727
  //# sourceMappingURL=sheerides6.js.map