@nomalism-com/types 0.36.21 → 0.36.22
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.
package/dist/index.cjs
CHANGED
|
@@ -4797,7 +4797,7 @@ var undoProviderOrderBody = joi87.object().keys(undoProviderOrderBodyKeys).messa
|
|
|
4797
4797
|
var conferirEncomendaClienteBody = joi87.object().keys({
|
|
4798
4798
|
option: joi87.string().valid(...conferirEncomendaClienteOptions).required(),
|
|
4799
4799
|
document_line_ids: joi87.array().items(joi87.string().uuid().required()).required(),
|
|
4800
|
-
|
|
4800
|
+
reinvoicing_nc_observation: joi87.string().optional()
|
|
4801
4801
|
}).messages(messages);
|
|
4802
4802
|
var setProviderBodyKeys = {
|
|
4803
4803
|
document_line_assoc_ids: joi87.array().items(joi87.string().uuid().required()).required(),
|
package/dist/index.js
CHANGED
|
@@ -4797,7 +4797,7 @@ var undoProviderOrderBody = joi87.object().keys(undoProviderOrderBodyKeys).messa
|
|
|
4797
4797
|
var conferirEncomendaClienteBody = joi87.object().keys({
|
|
4798
4798
|
option: joi87.string().valid(...conferirEncomendaClienteOptions).required(),
|
|
4799
4799
|
document_line_ids: joi87.array().items(joi87.string().uuid().required()).required(),
|
|
4800
|
-
|
|
4800
|
+
reinvoicing_nc_observation: joi87.string().optional()
|
|
4801
4801
|
}).messages(messages);
|
|
4802
4802
|
var setProviderBodyKeys = {
|
|
4803
4803
|
document_line_assoc_ids: joi87.array().items(joi87.string().uuid().required()).required(),
|
|
@@ -46,7 +46,7 @@ export declare const conferirEncomendaClienteOptions: string[];
|
|
|
46
46
|
export interface IConferirEncomendaClienteRequest {
|
|
47
47
|
option: IConferirEncomendaClienteOptions;
|
|
48
48
|
document_line_ids: string[];
|
|
49
|
-
|
|
49
|
+
reinvoicing_nc_observation?: string;
|
|
50
50
|
}
|
|
51
51
|
export interface IConferirEncomendaClienteResponse {
|
|
52
52
|
document_line_id: string;
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@ export const conferirEncomendaClienteOptions = Object.keys(ConferirEncomendaClie
|
|
|
88
88
|
export interface IConferirEncomendaClienteRequest {
|
|
89
89
|
option: IConferirEncomendaClienteOptions;
|
|
90
90
|
document_line_ids: string[];
|
|
91
|
-
|
|
91
|
+
reinvoicing_nc_observation?: string;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
export interface IConferirEncomendaClienteResponse {
|
|
@@ -28,7 +28,7 @@ export const conferirEncomendaClienteBody = joi
|
|
|
28
28
|
.valid(...conferirEncomendaClienteOptions)
|
|
29
29
|
.required(),
|
|
30
30
|
document_line_ids: joi.array().items(joi.string().uuid().required()).required(),
|
|
31
|
-
|
|
31
|
+
reinvoicing_nc_observation: joi.string().optional(),
|
|
32
32
|
})
|
|
33
33
|
.messages(messages);
|
|
34
34
|
|