merchi_sdk_js 0.4.8 → 0.4.9
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/package.json +1 -1
- package/src/model.js +3 -0
- package/src/support_conversation.js +0 -1
package/package.json
CHANGED
package/src/model.js
CHANGED
|
@@ -290,6 +290,9 @@ export function getList(resource, success, error, parameters, withUpdates) {
|
|
|
290
290
|
if (notEmpty(parameters.tab)) {
|
|
291
291
|
request.query().add('tab', parameters.tab);
|
|
292
292
|
}
|
|
293
|
+
if (notEmpty(parameters.trackingNumber)) {
|
|
294
|
+
request.query().add('tracking_number', parameters.trackingNumber);
|
|
295
|
+
}
|
|
293
296
|
if (notEmpty(parameters.as)) {
|
|
294
297
|
request.query().add('as', parameters.as);
|
|
295
298
|
}
|
|
@@ -16,7 +16,6 @@ export function SupportConversation() {
|
|
|
16
16
|
addPropertyTo(this, 'lastMessageAt');
|
|
17
17
|
addPropertyTo(this, 'archivedAt');
|
|
18
18
|
addPropertyTo(this, 'domain', Domain);
|
|
19
|
-
addPropertyTo(this, 'guestId');
|
|
20
19
|
addPropertyTo(this, 'guestContactEmail');
|
|
21
20
|
addPropertyTo(this, 'guestContactName');
|
|
22
21
|
addPropertyTo(this, 'clientFingerprint');
|