@sheerid/jslib 1.149.0 → 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.
- package/__tests__/__mocks__/mockVerificationService.d.ts +9 -0
- package/es5/Tmetrix.bundle.js +4 -4
- package/es5/messages_ar.bundle.js +4 -4
- package/es5/messages_bg.bundle.js +4 -4
- package/es5/messages_cs.bundle.js +4 -4
- package/es5/messages_da.bundle.js +4 -4
- package/es5/messages_de.bundle.js +4 -4
- package/es5/messages_el.bundle.js +4 -4
- package/es5/messages_en-GB.bundle.js +4 -4
- package/es5/messages_es-ES.bundle.js +4 -4
- package/es5/messages_es.bundle.js +4 -4
- package/es5/messages_fi.bundle.js +4 -4
- package/es5/messages_fr-CA.bundle.js +4 -4
- package/es5/messages_fr.bundle.js +4 -4
- package/es5/messages_ga.bundle.js +4 -4
- package/es5/messages_hr.bundle.js +4 -4
- package/es5/messages_hu.bundle.js +4 -4
- package/es5/messages_id.bundle.js +4 -4
- package/es5/messages_it.bundle.js +4 -4
- package/es5/messages_iw.bundle.js +4 -4
- package/es5/messages_ja.bundle.js +4 -4
- package/es5/messages_ko.bundle.js +4 -4
- package/es5/messages_lo.bundle.js +4 -4
- package/es5/messages_lt.bundle.js +4 -4
- package/es5/messages_ms.bundle.js +4 -4
- package/es5/messages_nl.bundle.js +4 -4
- package/es5/messages_no.bundle.js +4 -4
- package/es5/messages_pl.bundle.js +4 -4
- package/es5/messages_pt-BR.bundle.js +4 -4
- package/es5/messages_pt.bundle.js +4 -4
- package/es5/messages_ru.bundle.js +4 -4
- package/es5/messages_sk.bundle.js +4 -4
- package/es5/messages_sl.bundle.js +4 -4
- package/es5/messages_sr.bundle.js +4 -4
- package/es5/messages_sv.bundle.js +4 -4
- package/es5/messages_th.bundle.js +4 -4
- package/es5/messages_tr.bundle.js +4 -4
- package/es5/messages_zh-HK.bundle.js +4 -4
- package/es5/messages_zh.bundle.js +4 -4
- package/manifest.json +43 -43
- package/package.json +1 -1
- package/sheerid-requestOrg.css +5 -5
- package/sheerid-requestOrg.css.map +1 -1
- package/sheerid-requestOrg.js +10 -10
- package/sheerid-requestOrg.js.map +1 -1
- package/sheerid-utils.js +6 -6
- package/sheerid-utils.js.map +1 -1
- package/sheerid.css +5 -5
- package/sheerid.css.map +1 -1
- package/sheerid.js +6 -6
- package/sheerid.js.map +1 -1
- package/sheerides6.js +118 -14
- package/sheerides6.js.map +1 -1
- package/src/es6.d.ts +1 -1
- package/src/lib/ServerApi/ApiUrls.d.ts +2 -0
- package/src/lib/types/runtimeTypes.d.ts +8 -0
- package/src/lib/types/types.d.ts +2 -0
- 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
|
-
|
|
19756
|
-
|
|
19757
|
-
|
|
19758
|
-
|
|
19759
|
-
|
|
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-
|
|
21854
|
-
|
|
21855
|
-
|
|
21856
|
-
|
|
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" },
|
|
@@ -22600,5 +22704,5 @@ const collectDeviceProfile = async (verificationId, programId) => {
|
|
|
22600
22704
|
includeIPQSDeviceFingerprintScript(programTheme, verificationId);
|
|
22601
22705
|
};
|
|
22602
22706
|
|
|
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 };
|
|
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 };
|
|
22604
22708
|
//# sourceMappingURL=sheerides6.js.map
|