@nomalism-com/types 0.43.99 → 0.43.100

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.
@@ -1,7 +1,6 @@
1
1
  import type { DocumentHeader, DocumentLineNote } from '../../../shared/entities/stock';
2
2
  import * as IShared from '../../../shared/interface';
3
3
  import { type IProductType } from '../../stock/productGoogleSheets/interface';
4
- import type { ISavedEmPickingData } from '../../stock/savedEmPicking/interfaces';
5
4
  export declare const Route = "material_entrance";
6
5
  export declare const UpperName = "MaterialEntrance";
7
6
  export declare const LowerName: string;
@@ -128,7 +127,6 @@ interface IRepository {
128
127
  undoEntradaMaterial(data: IUndoEntradaDeMaterialRequest): Promise<void>;
129
128
  findUnfinishedPickings(selector: IShared.IFindByIdRequest): Promise<IUnfinishedPickingsResponse[]>;
130
129
  findMaterialEntranceProviders(): Promise<IShared.IFindMinifiedResponse[]>;
131
- findDoneById(params: IShared.IFindByIdRequest): Promise<ISavedEmPickingData | null>;
132
130
  }
133
131
  export type IApi = Omit<IRepository, 'finalizarEntradaMaterial'> & {
134
132
  finalizarEntradaMaterial(data: IFinalizarEntradaDeMaterialRequest): Promise<IFinalizarEntradaDeMaterialResponse>;
@@ -4,7 +4,8 @@ export declare const LowerName: string;
4
4
  export type IDashboardSalesNames = 'dia' | 'mes' | 'ano';
5
5
  export interface IDashboardSalesRowValue {
6
6
  sheets: number;
7
- outros: number;
7
+ stock: number;
8
+ encomenda: number;
8
9
  }
9
10
  export interface IDashboardSalesRow {
10
11
  chave: number;
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.99",
4
+ "version": "0.43.100",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",
@@ -29,15 +29,15 @@
29
29
  "joi": "^18.1.2"
30
30
  },
31
31
  "devDependencies": {
32
- "@swc/core": "^1.15.30",
32
+ "@swc/core": "^1.15.24",
33
33
  "@types/node": "^24.12.2",
34
- "@typescript-eslint/eslint-plugin": "^8.59.0",
35
- "@typescript-eslint/parser": "^8.59.0",
34
+ "@typescript-eslint/eslint-plugin": "^8.58.1",
35
+ "@typescript-eslint/parser": "^8.58.1",
36
36
  "eslint": "^9.39.4",
37
37
  "eslint-config-prettier": "^10.1.8",
38
38
  "eslint-import-resolver-typescript": "^4.4.4",
39
39
  "eslint-plugin-prettier": "^5.5.5",
40
- "prettier": "^3.8.3",
40
+ "prettier": "^3.8.1",
41
41
  "tsup": "^8.5.1"
42
42
  },
43
43
  "repository": {