merchi_sdk_js 0.0.80 → 0.0.82

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_js",
3
- "version": "0.0.80",
3
+ "version": "0.0.82",
4
4
  "type": "module",
5
5
  "main": "src/merchi.js",
6
6
  "module": "src/merchi.js",
package/src/model.js CHANGED
@@ -506,6 +506,18 @@ export function getList(resource, success, error, parameters, withUpdates) {
506
506
  if (parameters.tagNames) {
507
507
  request.query().add('tag_names', parameters.tagNames);
508
508
  }
509
+ if (parameters.tagNames) {
510
+ request.query().add(
511
+ 'exclude_tags',
512
+ parameters.excludeTags
513
+ );
514
+ }
515
+ if (parameters.tagNames) {
516
+ request.query().add(
517
+ 'exclude_tags_internal',
518
+ parameters.excludeTagsInternal
519
+ );
520
+ }
509
521
  if (parameters.turnaroundTimeDays) {
510
522
  request.query().add(
511
523
  'turnaround_time_days',
package/src/user.js CHANGED
@@ -36,6 +36,7 @@ export function User() {
36
36
  addPropertyTo(this, 'canEdit');
37
37
  addPropertyTo(this, 'jobCountAsClient');
38
38
  addPropertyTo(this, 'totalInvoiceValue');
39
+ addPropertyTo(this, 'lastJobReceived');
39
40
  addPropertyTo(this, 'systemRoles', SystemRole);
40
41
  addPropertyTo(this, 'telegramUsername');
41
42
  addPropertyTo(this, 'enableCrashReports');