@opexa/portal-sdk 0.40.0 → 0.40.2
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/dist/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4820,7 +4820,7 @@ var CellexpertManager = class {
|
|
|
4820
4820
|
localStorage.removeItem(CXD_STORAGE_KEY);
|
|
4821
4821
|
return;
|
|
4822
4822
|
}
|
|
4823
|
-
if (value.trim().length <
|
|
4823
|
+
if (value.trim().length < 200) {
|
|
4824
4824
|
this.logger.warn(`Invalid CXD: ${value}`);
|
|
4825
4825
|
return;
|
|
4826
4826
|
}
|
|
@@ -7432,7 +7432,10 @@ var Sdk = class {
|
|
|
7432
7432
|
id,
|
|
7433
7433
|
btag: input.btag,
|
|
7434
7434
|
domain: input.domain,
|
|
7435
|
-
mobileNumber: addAreaCode(input.mobileNumber, await this.locale)
|
|
7435
|
+
mobileNumber: addAreaCode(input.mobileNumber, await this.locale),
|
|
7436
|
+
...this.cxd && {
|
|
7437
|
+
cellxpertCxd: this.cxd
|
|
7438
|
+
}
|
|
7436
7439
|
},
|
|
7437
7440
|
referralCode: input.referralCode,
|
|
7438
7441
|
verificationCode: input.verificationCode,
|