@nomalism-com/types 0.45.32 → 0.45.34

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
@@ -1589,6 +1589,8 @@ var updateBodyKeys8 = {
1589
1589
  commissioner_id: joi10.string().uuid().allow(null).optional(),
1590
1590
  commission_percentage: joi10.number().positive().allow(0).optional(),
1591
1591
  commission_paid: joi10.boolean().optional(),
1592
+ is_prepared: joi10.boolean().optional(),
1593
+ is_rejected: joi10.boolean().optional(),
1592
1594
  is_archived: joi10.boolean().optional(),
1593
1595
  is_void: joi10.boolean().optional(),
1594
1596
  is_void_reason: joi10.string().optional(),
package/dist/index.js CHANGED
@@ -1589,6 +1589,8 @@ var updateBodyKeys8 = {
1589
1589
  commissioner_id: joi10.string().uuid().allow(null).optional(),
1590
1590
  commission_percentage: joi10.number().positive().allow(0).optional(),
1591
1591
  commission_paid: joi10.boolean().optional(),
1592
+ is_prepared: joi10.boolean().optional(),
1593
+ is_rejected: joi10.boolean().optional(),
1592
1594
  is_archived: joi10.boolean().optional(),
1593
1595
  is_void: joi10.boolean().optional(),
1594
1596
  is_void_reason: joi10.string().optional(),
@@ -179,6 +179,8 @@ export interface IUpdateRequest {
179
179
  commissioner_id?: string | null;
180
180
  commission_percentage?: number;
181
181
  commission_paid?: boolean;
182
+ is_prepared?: boolean;
183
+ is_rejected?: boolean;
182
184
  is_archived?: boolean;
183
185
  is_void?: boolean;
184
186
  is_void_reason?: string | null;
@@ -212,8 +214,7 @@ export interface IFindResponse {
212
214
  emission_date: string;
213
215
  line_count: number;
214
216
  is_void: boolean;
215
- is_archived: boolean;
216
- adjudicado: boolean;
217
+ state: string;
217
218
  tags: string | null;
218
219
  }
219
220
  export interface ISendClientNotificationRequest {
@@ -321,6 +321,8 @@ export type DocumentHeader = {
321
321
  commission_percentage: number;
322
322
  commission_paid: boolean;
323
323
  return_reason: string | null;
324
+ is_prepared: boolean;
325
+ is_rejected: boolean;
324
326
  is_archived: boolean;
325
327
  is_void: boolean;
326
328
  is_void_reason: string | null;
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.45.32",
4
+ "version": "0.45.34",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",