@redneckz/wildless-cms-uni-blocks 0.14.984 → 0.14.985
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/bundle/bundle.umd.js +3 -13
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/ApplicationLeadForm/useApplicationLeadApi.js +3 -3
- package/dist/components/ApplicationLeadForm/useApplicationLeadApi.js.map +1 -1
- package/lib/components/ApplicationLeadForm/useApplicationLeadApi.js +3 -3
- package/lib/components/ApplicationLeadForm/useApplicationLeadApi.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +3 -13
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/ApplicationLeadForm/useApplicationLeadApi.js +3 -3
- package/mobile/dist/components/ApplicationLeadForm/useApplicationLeadApi.js.map +1 -1
- package/mobile/lib/components/ApplicationLeadForm/useApplicationLeadApi.js +3 -3
- package/mobile/lib/components/ApplicationLeadForm/useApplicationLeadApi.js.map +1 -1
- package/mobile/src/components/ApplicationLeadForm/useApplicationLeadApi.tsx +3 -3
- package/package.json +1 -1
- package/src/components/ApplicationLeadForm/useApplicationLeadApi.tsx +3 -3
package/bundle/bundle.umd.js
CHANGED
|
@@ -6003,16 +6003,6 @@
|
|
|
6003
6003
|
return res || {};
|
|
6004
6004
|
};
|
|
6005
6005
|
|
|
6006
|
-
const getClaimChannel = async () => {
|
|
6007
|
-
const claimChannelCode = await fetchRetailJSON('/claim-channel/', 'GET').then((res) => {
|
|
6008
|
-
const url = globalThis.location.href;
|
|
6009
|
-
const code = res?.find((_) => _ && url.includes(_.key))?.code;
|
|
6010
|
-
globalThis.sessionStorage.setItem('claimChannelCode', code ?? '');
|
|
6011
|
-
return code;
|
|
6012
|
-
});
|
|
6013
|
-
return claimChannelCode;
|
|
6014
|
-
};
|
|
6015
|
-
|
|
6016
6006
|
const getLastTaskStatus = async (body) => {
|
|
6017
6007
|
const res = await fetchRetailJSON('/user-data/getLastStatus', 'POST', body);
|
|
6018
6008
|
return res?.statusCd === 'DRAFT' ? res?.taskId : null;
|
|
@@ -6937,12 +6927,12 @@
|
|
|
6937
6927
|
await updateUserProfile(getUpdateUserProfileData(profileId, formData, transformedConsents));
|
|
6938
6928
|
try {
|
|
6939
6929
|
if (productType === 'debitCard') {
|
|
6940
|
-
const claimChannelCode = await getClaimChannel();
|
|
6930
|
+
// const claimChannelCode = await getClaimChannel();
|
|
6941
6931
|
const debitData = await createUserTaskDebit(getDebitLeadFormTaskData({
|
|
6942
6932
|
formData,
|
|
6943
6933
|
programId,
|
|
6944
6934
|
marketingInfo,
|
|
6945
|
-
claimChannelCode,
|
|
6935
|
+
// claimChannelCode,
|
|
6946
6936
|
}));
|
|
6947
6937
|
taskId = debitData.taskId;
|
|
6948
6938
|
participantId = debitData.participantId;
|
|
@@ -13140,7 +13130,7 @@
|
|
|
13140
13130
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
13141
13131
|
});
|
|
13142
13132
|
|
|
13143
|
-
const packageVersion = "0.14.
|
|
13133
|
+
const packageVersion = "0.14.984";
|
|
13144
13134
|
|
|
13145
13135
|
exports.Blocks = Blocks;
|
|
13146
13136
|
exports.ContentPage = ContentPage;
|