@nomalism-com/types 0.27.72 → 0.27.73

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.
@@ -30,6 +30,7 @@ export interface IFindProviderProductsResponse {
30
30
  pcs: IFindProposals[];
31
31
  client_quantity: number;
32
32
  pre_ordered_quantity: number;
33
+ last6m_consumption: number;
33
34
  }
34
35
  export interface IFindProductHistoryRequest {
35
36
  product_id: string;
@@ -11,6 +11,7 @@ import { ISavedEmPickingData } from "../../modules/stock/savedEmPicking/interfac
11
11
  import { IDocumentLineNoteType } from "../../modules/supply/documentLineNote/interfaces";
12
12
  import { IProductBase } from "../../modules/supply/cabideProduct/interface";
13
13
  import { IProductSheetState } from "../../modules/stock/productGoogleSheets/interface";
14
+ import type { IFindProposals } from "modules/supply/orderManagement/interface";
14
15
  export type Chat = {
15
16
  id: string;
16
17
  document_header_id: string;
@@ -939,21 +940,24 @@ export type SettledMaterialEntrance = {
939
940
  };
940
941
  export type ProviderProductView = {
941
942
  product_id: string;
943
+ type: IProductType;
942
944
  id_provider: number;
943
945
  obs: boolean;
944
946
  multimedia_id: string | null;
945
947
  ref: string;
946
948
  des: string;
949
+ provider_ref: string | null;
947
950
  price_cost: number;
948
951
  price_sale: number;
949
952
  available: number;
950
- margin: number;
951
- last_ef_name: string | null;
952
953
  last_ef_date: Date | null;
953
954
  ordered_quantity: number | null;
954
- last_em_name: string | null;
955
955
  last_em_date: Date | null;
956
956
  notation: string;
957
+ pfs: IFindProposals[];
958
+ pcs: IFindProposals[];
959
+ client_quantity: number;
960
+ last6m_consumption: number;
957
961
  };
958
962
  export type DocumentLineGroup = {
959
963
  id: string;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript",
10
10
  "helper"
11
11
  ],
12
- "version": "0.27.72",
12
+ "version": "0.27.73",
13
13
  "main": "./dist/index.min.js",
14
14
  "types": "./dist/index.d.ts",
15
15
  "files": [
@@ -43,7 +43,7 @@
43
43
  "@typescript-eslint/eslint-plugin": "^7.18.0",
44
44
  "@typescript-eslint/parser": "^7.18.0",
45
45
  "eslint": "^8.57.1",
46
- "rollup": "^4.26.0",
46
+ "rollup": "^4.27.0",
47
47
  "tslib": "^2.8.1"
48
48
  }
49
49
  }