@voxie/contacts.js 0.2.1 → 0.2.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/contacts.js +2 -2
- package/package.json +1 -1
package/dist/contacts.js
CHANGED
|
@@ -3128,7 +3128,7 @@ class te {
|
|
|
3128
3128
|
constructor(n, e) {
|
|
3129
3129
|
h(this, "authorization");
|
|
3130
3130
|
h(this, "connectBaseUri");
|
|
3131
|
-
this.authorization = n, this.connectBaseUri = e;
|
|
3131
|
+
this.authorization = n, this.connectBaseUri = e, console.log(n), console.log(e);
|
|
3132
3132
|
}
|
|
3133
3133
|
static init(n) {
|
|
3134
3134
|
var e;
|
|
@@ -3140,7 +3140,7 @@ class te {
|
|
|
3140
3140
|
async capture(n, e) {
|
|
3141
3141
|
try {
|
|
3142
3142
|
const r = td(n, "US");
|
|
3143
|
-
return r.isPossible() ? (await rd(`${this.connectBaseUri}/capture/contact`, {
|
|
3143
|
+
return r.isPossible() ? (console.log(`${this.connectBaseUri}/capture/contact`), await rd(`${this.connectBaseUri}/capture/contact`, {
|
|
3144
3144
|
headers: {
|
|
3145
3145
|
Authorization: this.authorization
|
|
3146
3146
|
},
|
package/package.json
CHANGED