@in.pulse-crm/sdk 2.5.13 → 2.5.14
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.
|
@@ -63,5 +63,15 @@ export interface Customer {
|
|
|
63
63
|
CODIGOPRINCIPAL: number;
|
|
64
64
|
SETOR: number;
|
|
65
65
|
}
|
|
66
|
-
export
|
|
66
|
+
export interface CreateCustomerDTO {
|
|
67
|
+
RAZAO: string;
|
|
68
|
+
CPF_CNPJ: string;
|
|
69
|
+
FANTASIA?: string | null;
|
|
70
|
+
PESSOA?: "FIS" | "JUR" | null;
|
|
71
|
+
ATIVO?: "SIM" | "NAO" | null;
|
|
72
|
+
CIDADE?: string | null;
|
|
73
|
+
ESTADO?: string | null;
|
|
74
|
+
COD_ERP?: string | null;
|
|
75
|
+
SETOR?: number | null;
|
|
76
|
+
}
|
|
67
77
|
export type UpdateCustomerDTO = Partial<CreateCustomerDTO>;
|
package/package.json
CHANGED
|
@@ -64,9 +64,15 @@ export interface Customer {
|
|
|
64
64
|
SETOR: number;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
export
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
|
71
|
-
|
|
67
|
+
export interface CreateCustomerDTO {
|
|
68
|
+
RAZAO: string;
|
|
69
|
+
CPF_CNPJ: string;
|
|
70
|
+
FANTASIA?: string | null;
|
|
71
|
+
PESSOA?: "FIS" | "JUR" | null;
|
|
72
|
+
ATIVO?: "SIM" | "NAO" | null;
|
|
73
|
+
CIDADE?: string | null;
|
|
74
|
+
ESTADO?: string | null;
|
|
75
|
+
COD_ERP?: string | null;
|
|
76
|
+
SETOR?: number | null;
|
|
77
|
+
}
|
|
72
78
|
export type UpdateCustomerDTO = Partial<CreateCustomerDTO>;
|