@nomalism-com/types 0.39.49 → 0.39.51

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
@@ -1575,6 +1575,7 @@ var updateBodyKeys8 = {
1575
1575
  is_void: joi10.boolean().optional(),
1576
1576
  is_void_reason: joi10.string().optional(),
1577
1577
  is_force_adjudicated: joi10.boolean().optional(),
1578
+ confirmed: joi10.boolean().optional(),
1578
1579
  who_handles: joi10.string().allow(null).optional(),
1579
1580
  warning: joi10.string().optional().valid(...Object.values(IWarningType)),
1580
1581
  created_by: joi10.string().uuid().allow(null).optional()
package/dist/index.js CHANGED
@@ -1575,6 +1575,7 @@ var updateBodyKeys8 = {
1575
1575
  is_void: joi10.boolean().optional(),
1576
1576
  is_void_reason: joi10.string().optional(),
1577
1577
  is_force_adjudicated: joi10.boolean().optional(),
1578
+ confirmed: joi10.boolean().optional(),
1578
1579
  who_handles: joi10.string().allow(null).optional(),
1579
1580
  warning: joi10.string().optional().valid(...Object.values(IWarningType)),
1580
1581
  created_by: joi10.string().uuid().allow(null).optional()
@@ -182,6 +182,7 @@ export interface IUpdateRequest {
182
182
  who_handles?: string | null;
183
183
  warning?: IWarningType;
184
184
  created_by?: string;
185
+ confirmed?: boolean;
185
186
  }
186
187
  export type IGetActionsDocumentType = Pick<DocumentType, 'user_type' | 'allow_create_from_header_without_lines' | 'pay' | 'credit' | 'debit' | 'invoice' | 'code' | 'return' | 'id' | 'description'>;
187
188
  export interface IGetActionsResponse {
@@ -309,6 +309,7 @@ export type DocumentHeader = {
309
309
  is_void: boolean;
310
310
  is_void_reason: string | null;
311
311
  is_force_adjudicated: boolean;
312
+ confirmed: boolean;
312
313
  origin_id: string | null;
313
314
  who_handles: string | null;
314
315
  warning: 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.39.49",
4
+ "version": "0.39.51",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",