merchi_sdk_js 0.0.81 → 0.0.83

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.81",
3
+ "version": "0.0.83",
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/product.js CHANGED
@@ -115,6 +115,7 @@ export function Product() {
115
115
  addPropertyTo(this, 'shipmentMethods', ShipmentMethod);
116
116
  addPropertyTo(this, 'seoDomainPages', SeoDomainPage);
117
117
  addPropertyTo(this, 'aiContext');
118
+ addPropertyTo(this, 'aiContextDrafting');
118
119
  addPropertyTo(this, 'internalUseNotes');
119
120
  addPropertyTo(this, 'internalUseAiContext');
120
121
  addPropertyTo(this, 'groupsFirst');