@nomalism-com/types 0.45.33 → 0.45.35
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
|
@@ -1590,6 +1590,7 @@ var updateBodyKeys8 = {
|
|
|
1590
1590
|
commission_percentage: joi10.number().positive().allow(0).optional(),
|
|
1591
1591
|
commission_paid: joi10.boolean().optional(),
|
|
1592
1592
|
is_prepared: joi10.boolean().optional(),
|
|
1593
|
+
is_rejected: joi10.boolean().optional(),
|
|
1593
1594
|
is_archived: joi10.boolean().optional(),
|
|
1594
1595
|
is_void: joi10.boolean().optional(),
|
|
1595
1596
|
is_void_reason: joi10.string().optional(),
|
package/dist/index.js
CHANGED
|
@@ -1590,6 +1590,7 @@ var updateBodyKeys8 = {
|
|
|
1590
1590
|
commission_percentage: joi10.number().positive().allow(0).optional(),
|
|
1591
1591
|
commission_paid: joi10.boolean().optional(),
|
|
1592
1592
|
is_prepared: joi10.boolean().optional(),
|
|
1593
|
+
is_rejected: joi10.boolean().optional(),
|
|
1593
1594
|
is_archived: joi10.boolean().optional(),
|
|
1594
1595
|
is_void: joi10.boolean().optional(),
|
|
1595
1596
|
is_void_reason: joi10.string().optional(),
|
|
@@ -180,6 +180,7 @@ export interface IUpdateRequest {
|
|
|
180
180
|
commission_percentage?: number;
|
|
181
181
|
commission_paid?: boolean;
|
|
182
182
|
is_prepared?: boolean;
|
|
183
|
+
is_rejected?: boolean;
|
|
183
184
|
is_archived?: boolean;
|
|
184
185
|
is_void?: boolean;
|
|
185
186
|
is_void_reason?: string | null;
|
|
@@ -213,9 +214,7 @@ export interface IFindResponse {
|
|
|
213
214
|
emission_date: string;
|
|
214
215
|
line_count: number;
|
|
215
216
|
is_void: boolean;
|
|
216
|
-
|
|
217
|
-
is_archived: boolean;
|
|
218
|
-
adjudicado: boolean;
|
|
217
|
+
state: string;
|
|
219
218
|
tags: string | null;
|
|
220
219
|
}
|
|
221
220
|
export interface ISendClientNotificationRequest {
|
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.
|
|
4
|
+
"version": "0.45.35",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|