@nomalism-com/types 0.43.69 → 0.43.71

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.
@@ -9,6 +9,7 @@ export interface ICreateResponse {
9
9
  refresh_token: string;
10
10
  expiresInToken: number;
11
11
  expiresInRefreshToken: number;
12
+ expired_password_change_limit: boolean;
12
13
  }
13
14
  export interface IRepository {
14
15
  create(data: ICreateRequest): Promise<ICreateResponse>;
@@ -109,7 +109,7 @@ export type ProductPrices = {
109
109
  origin_id: string | null;
110
110
  created_by: string;
111
111
  updated_by: string;
112
- margin: number;
112
+ margin: number | null;
113
113
  };
114
114
  /**
115
115
  * Model ProductImage
@@ -413,7 +413,7 @@ export type DocumentLine = {
413
413
  client_total_discount: number;
414
414
  client_total_tax: number;
415
415
  group_header: boolean;
416
- product_margin: number;
416
+ product_margin: number | null;
417
417
  virtual_index: number;
418
418
  };
419
419
  /**
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.43.69",
4
+ "version": "0.43.71",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",