@nomalism-com/types 0.35.0 → 0.35.2
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 +0 -1
- package/dist/index.js +0 -1
- package/dist/modules/stock/sideMenu/interface.d.ts +1 -1
- package/dist/modules/supply/documentHeader/interfaces.d.ts +0 -3
- package/dist/modules/supply/externalDocumentHeader/interface.d.ts +0 -1
- package/dist/shared/entities/stock.d.ts +0 -1
- package/package.json +1 -1
- package/src/modules/stock/sideMenu/interface.ts +1 -1
- package/src/modules/supply/documentHeader/interfaces.ts +0 -3
- package/src/modules/supply/documentHeader/route.schema.ts +0 -1
- package/src/modules/supply/externalDocumentHeader/interface.ts +0 -1
- package/src/shared/entities/stock.ts +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1656,7 +1656,6 @@ var updateBodyKeys9 = {
|
|
|
1656
1656
|
is_archived: joi11.boolean().optional(),
|
|
1657
1657
|
is_void: joi11.boolean().optional(),
|
|
1658
1658
|
who_handles: joi11.string().allow(null).optional(),
|
|
1659
|
-
tags: joi11.string().allow(null, "").optional(),
|
|
1660
1659
|
warning: joi11.string().optional().valid(...Object.values(IWarningType)),
|
|
1661
1660
|
created_by: joi11.string().uuid().allow(null).optional()
|
|
1662
1661
|
};
|
package/dist/index.js
CHANGED
|
@@ -1656,7 +1656,6 @@ var updateBodyKeys9 = {
|
|
|
1656
1656
|
is_archived: joi11.boolean().optional(),
|
|
1657
1657
|
is_void: joi11.boolean().optional(),
|
|
1658
1658
|
who_handles: joi11.string().allow(null).optional(),
|
|
1659
|
-
tags: joi11.string().allow(null, "").optional(),
|
|
1660
1659
|
warning: joi11.string().optional().valid(...Object.values(IWarningType)),
|
|
1661
1660
|
created_by: joi11.string().uuid().allow(null).optional()
|
|
1662
1661
|
};
|
|
@@ -170,7 +170,6 @@ export interface IUpdateRequest {
|
|
|
170
170
|
is_archived?: boolean;
|
|
171
171
|
is_void?: boolean;
|
|
172
172
|
who_handles?: string | null;
|
|
173
|
-
tags?: string | null;
|
|
174
173
|
warning?: IWarningType;
|
|
175
174
|
created_by?: string;
|
|
176
175
|
}
|
|
@@ -203,7 +202,6 @@ export interface IFindResponse {
|
|
|
203
202
|
total: number;
|
|
204
203
|
emission_date: string;
|
|
205
204
|
line_count: number;
|
|
206
|
-
tags: string;
|
|
207
205
|
is_void: boolean;
|
|
208
206
|
is_archived: boolean;
|
|
209
207
|
adjudicado: boolean;
|
|
@@ -287,7 +285,6 @@ export interface IFindRmOpenDocuments {
|
|
|
287
285
|
document_header_id: string;
|
|
288
286
|
document_number: string;
|
|
289
287
|
identifier: string;
|
|
290
|
-
tags: string | null;
|
|
291
288
|
upfront_total: number | null;
|
|
292
289
|
who_handles: string | null;
|
|
293
290
|
document_lines: {
|
package/package.json
CHANGED
|
@@ -217,7 +217,6 @@ export interface IUpdateRequest {
|
|
|
217
217
|
is_archived?: boolean;
|
|
218
218
|
is_void?: boolean;
|
|
219
219
|
who_handles?: string | null;
|
|
220
|
-
tags?: string | null;
|
|
221
220
|
warning?: IWarningType;
|
|
222
221
|
created_by?: string;
|
|
223
222
|
}
|
|
@@ -267,7 +266,6 @@ export interface IFindResponse {
|
|
|
267
266
|
total: number;
|
|
268
267
|
emission_date: string;
|
|
269
268
|
line_count: number;
|
|
270
|
-
tags: string;
|
|
271
269
|
is_void: boolean;
|
|
272
270
|
is_archived: boolean;
|
|
273
271
|
adjudicado: boolean;
|
|
@@ -370,7 +368,6 @@ export interface IFindRmOpenDocuments {
|
|
|
370
368
|
document_header_id: string;
|
|
371
369
|
document_number: string;
|
|
372
370
|
identifier: string;
|
|
373
|
-
tags: string | null;
|
|
374
371
|
upfront_total: number | null;
|
|
375
372
|
who_handles: string | null;
|
|
376
373
|
document_lines: {
|
|
@@ -244,7 +244,6 @@ const updateBodyKeys: IShared.IRouteRequestWithStamps<IUpdateRequest> = {
|
|
|
244
244
|
is_archived: joi.boolean().optional(),
|
|
245
245
|
is_void: joi.boolean().optional(),
|
|
246
246
|
who_handles: joi.string().allow(null).optional(),
|
|
247
|
-
tags: joi.string().allow(null, '').optional(),
|
|
248
247
|
warning: joi
|
|
249
248
|
.string()
|
|
250
249
|
.optional()
|