@nomalism-com/types 0.40.126 → 0.40.128
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.
|
@@ -8,10 +8,10 @@ export interface IUndoProviderOrderRequest {
|
|
|
8
8
|
send_notification: boolean;
|
|
9
9
|
}
|
|
10
10
|
export interface IMotivosDeEsperaData {
|
|
11
|
-
esperaEnvioDeMedidas
|
|
12
|
-
esperaConfirmacaoDeMedidas
|
|
13
|
-
esperaVisitaALoja
|
|
14
|
-
esperaDadosCliente
|
|
11
|
+
esperaEnvioDeMedidas?: boolean;
|
|
12
|
+
esperaConfirmacaoDeMedidas?: boolean;
|
|
13
|
+
esperaVisitaALoja?: boolean;
|
|
14
|
+
esperaDadosCliente?: boolean;
|
|
15
15
|
}
|
|
16
16
|
export interface IConferirEncomendaClienteRequest {
|
|
17
17
|
option: IEstadoEncomenda;
|
|
@@ -13,6 +13,7 @@ import { ITaskStatusDataType } from '../../modules/stock/task/interface';
|
|
|
13
13
|
import type { IRsaHashData, ITaxEntry } from '../../modules/supply/documentHeader/interfaces';
|
|
14
14
|
import type { ProjectInfo } from './integration';
|
|
15
15
|
import { IEstadoEncomenda } from '../../modules/stock/conferirEncomenda/interface';
|
|
16
|
+
import { IMotivosDeEsperaData } from '../../modules/document/order/interfaces';
|
|
16
17
|
/**
|
|
17
18
|
* Model AccountCode
|
|
18
19
|
*
|
|
@@ -1057,12 +1058,10 @@ export type GoogleSheetPool = {
|
|
|
1057
1058
|
*
|
|
1058
1059
|
*/
|
|
1059
1060
|
export type ConferirEncomenda = {
|
|
1060
|
-
id: string
|
|
1061
|
-
document_line_id: string
|
|
1062
|
-
data:
|
|
1063
|
-
|
|
1064
|
-
created_at: Date
|
|
1065
|
-
|
|
1066
|
-
created_by: string | null;
|
|
1067
|
-
updated_by: string | null;
|
|
1061
|
+
id: string;
|
|
1062
|
+
document_line_id: string;
|
|
1063
|
+
data: IMotivosDeEsperaData;
|
|
1064
|
+
value: IEstadoEncomenda;
|
|
1065
|
+
created_at: Date;
|
|
1066
|
+
created_by: string;
|
|
1068
1067
|
};
|
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.40.
|
|
4
|
+
"version": "0.40.128",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|