diff --git a/javascript/job.js b/javascript/job.js index a612c505..16c16e06 100644 --- a/javascript/job.js +++ b/javascript/job.js @@ -88,6 +88,7 @@ export function Job() { addPropertyTo(this, 'matchingInventories', MatchingInventory); addPropertyTo(this, 'inventoryCount'); addPropertyTo(this, 'inventorySufficient'); + addPropertyTo(this, 'shopifyShipmentDeliveryNotified'); addPropertyTo(this, 'limitedStock'); addPropertyTo(this, 'canDeduct'); diff --git a/python/jobs.py b/python/jobs.py index 43c7fe67..cc19489d 100644 --- a/python/jobs.py +++ b/python/jobs.py @@ -102,6 +102,7 @@ def __init__(self): variations = Property(Variation) quote_set = Property(bool) drop_ship = Property(bool) + shopify_shipment_delivery_notified = Property(bool) shipment = Property(Shipment, backref="jobs") tax_type = Property(CountryTax) tags = Property(DomainTag, backref="jobs") diff --git a/typescript/src/entities/job.ts b/typescript/src/entities/job.ts index c9ee6271..5c37533c 100644 --- a/typescript/src/entities/job.ts +++ b/typescript/src/entities/job.ts @@ -82,6 +82,9 @@ export class Job extends Entity { @Job.property() public needsInventory?: boolean; + @Job.property() + public shopifyShipmentDeliveryNotified?: boolean; + @Job.property() public showProductionFilesToClient?: boolean;