@esolve/ng-esolve-connect 0.34.0 → 0.34.1

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.
@@ -4176,6 +4176,10 @@ class EsolveStockItemBase {
4176
4176
  * Featured state
4177
4177
  */
4178
4178
  this.featured = false;
4179
+ /**
4180
+ * Display Only state
4181
+ */
4182
+ this.display_only = false;
4179
4183
  /**
4180
4184
  * Quotable state
4181
4185
  */
@@ -4312,6 +4316,7 @@ class EsolveStockItemBase {
4312
4316
  this.requires_assembly = !!+(record.requires_assembly ?? false);
4313
4317
  this.active = !!+(record.is_active ?? false);
4314
4318
  this.featured = !!+(record.is_featured ?? false);
4319
+ this.display_only = !!+(record.display_only ?? false);
4315
4320
  this.allow_quotes = record.allow_quotes ?? true;
4316
4321
  this.allow_orders = record.allow_orders ?? true;
4317
4322
  this.amount_in_stock = +(record.onhand ?? 0);