@nomalism-com/types 0.44.22 → 0.44.23

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/dist/index.cjs CHANGED
@@ -1528,7 +1528,8 @@ var createBodyKeys9 = {
1528
1528
  commission_percentage: joi10.number().positive().allow(0).default(0).optional(),
1529
1529
  return_reason: joi10.string().allow(null).optional(),
1530
1530
  updated_by: joi10.string().uuid().allow(null).optional(),
1531
- created_by: joi10.string().uuid().allow(null).optional()
1531
+ created_by: joi10.string().uuid().allow(null).optional(),
1532
+ seller: joi10.string().uuid().allow(null).optional()
1532
1533
  };
1533
1534
  var createBody9 = joi10.object().keys(createBodyKeys9).and("reason_for_exemption_id", "reason_for_exemption").and("payment_method_id", "payment_method").and("delivery_method_id", "delivery_method").and("delivery_departure_street", "delivery_departure_postal_code", "delivery_departure_locality").and("vehicle_id", "vehicle").messages(messages);
1534
1535
  var createFromHeaderBodyKeys = {
package/dist/index.js CHANGED
@@ -1528,7 +1528,8 @@ var createBodyKeys9 = {
1528
1528
  commission_percentage: joi10.number().positive().allow(0).default(0).optional(),
1529
1529
  return_reason: joi10.string().allow(null).optional(),
1530
1530
  updated_by: joi10.string().uuid().allow(null).optional(),
1531
- created_by: joi10.string().uuid().allow(null).optional()
1531
+ created_by: joi10.string().uuid().allow(null).optional(),
1532
+ seller: joi10.string().uuid().allow(null).optional()
1532
1533
  };
1533
1534
  var createBody9 = joi10.object().keys(createBodyKeys9).and("reason_for_exemption_id", "reason_for_exemption").and("payment_method_id", "payment_method").and("delivery_method_id", "delivery_method").and("delivery_departure_street", "delivery_departure_postal_code", "delivery_departure_locality").and("vehicle_id", "vehicle").messages(messages);
1534
1535
  var createFromHeaderBodyKeys = {
@@ -99,6 +99,7 @@ export interface ICreateRequest {
99
99
  commissioner_id?: string | null;
100
100
  commission_percentage?: number;
101
101
  return_reason?: string | null;
102
+ seller?: string | null;
102
103
  created_by?: string | null;
103
104
  updated_by?: string | null;
104
105
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nomalism-com/types",
3
3
  "description": "A nomalism package with all necessary types and validations for developing APIs",
4
- "version": "0.44.22",
4
+ "version": "0.44.23",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",