@things-factory/sales-base 4.1.40 → 4.2.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.
@@ -347,6 +347,18 @@ export class NewReleaseGood {
347
347
 
348
348
  @Field({ nullable: true })
349
349
  errorMsg: string
350
+
351
+ @Field({ nullable: true })
352
+ storeName: string
353
+
354
+ @Field({ nullable: true })
355
+ storeId: string
356
+
357
+ @Field({ nullable: true })
358
+ routeId: string
359
+
360
+ @Field({ nullable: true })
361
+ stopId: string
350
362
  }
351
363
 
352
364
  @InputType()
@@ -503,4 +515,16 @@ export class ReleaseGoodPatch {
503
515
 
504
516
  @Field({ nullable: true })
505
517
  description: string
518
+
519
+ @Field({ nullable: true })
520
+ storeName: string
521
+
522
+ @Field({ nullable: true })
523
+ storeId: string
524
+
525
+ @Field({ nullable: true })
526
+ routeId: string
527
+
528
+ @Field({ nullable: true })
529
+ stopId: string
506
530
  }
@@ -389,4 +389,20 @@ export class ReleaseGood {
389
389
 
390
390
  @Field({ nullable: true })
391
391
  errorMsg: string
392
+
393
+ @Column({ nullable: true })
394
+ @Field({ nullable: true })
395
+ storeId: string
396
+
397
+ @Column({ nullable: true })
398
+ @Field({ nullable: true })
399
+ storeName: string
400
+
401
+ @Column({ nullable: true })
402
+ @Field({ nullable: true })
403
+ routeId: string
404
+
405
+ @Column({ nullable: true })
406
+ @Field({ nullable: true })
407
+ stopId: string
392
408
  }