@nomalism-com/types 0.37.8 → 0.37.10

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
@@ -1185,7 +1185,6 @@ var updateBodyKeys4 = {
1185
1185
  email_delivered: joi6.boolean().optional(),
1186
1186
  email_opened: joi6.boolean().optional(),
1187
1187
  email_clicked: joi6.boolean().optional(),
1188
- whatsapp_sent: joi6.boolean().optional(),
1189
1188
  read: joi6.boolean().optional(),
1190
1189
  username: joi6.string().optional()
1191
1190
  };
package/dist/index.js CHANGED
@@ -1185,7 +1185,6 @@ var updateBodyKeys4 = {
1185
1185
  email_delivered: joi6.boolean().optional(),
1186
1186
  email_opened: joi6.boolean().optional(),
1187
1187
  email_clicked: joi6.boolean().optional(),
1188
- whatsapp_sent: joi6.boolean().optional(),
1189
1188
  read: joi6.boolean().optional(),
1190
1189
  username: joi6.string().optional()
1191
1190
  };
@@ -45,7 +45,6 @@ export interface IUpdateRequest {
45
45
  email_delivered?: boolean;
46
46
  email_opened?: boolean;
47
47
  email_clicked?: boolean;
48
- whatsapp_sent?: boolean;
49
48
  read?: boolean;
50
49
  username?: string;
51
50
  }
@@ -359,7 +359,6 @@ export interface IRepository {
359
359
  documentPdf(selector: IShared.IFindByIdRequest, data: IDocumentPdfRequest): Promise<string>;
360
360
  documentThermalPrint(selector: IShared.IFindByIdRequest): Promise<string>;
361
361
  documentList(selector: IShared.IFindByIdRequest, params: IDocumentListRequest): Promise<IDocumentListResponse[]>;
362
- getAllRelatedDocumentHeaderIds(params: IShared.IFindByIdRequest): Promise<string[]>;
363
362
  findStartDocumentHeaderSiblings(params: IShared.IFindByIdRequest): Promise<IFindStartDocumentHeaderSiblingsResponse>;
364
363
  findRmOpenDocuments(): Promise<IFindRmOpenDocuments[]>;
365
364
  regularizarMultiplosDocumentos(data: IMultipleRegularizations): Promise<void>;
@@ -25,7 +25,6 @@ export type Chat = {
25
25
  email_delivered: boolean;
26
26
  email_opened: boolean;
27
27
  email_clicked: boolean;
28
- whatsapp_sent: boolean;
29
28
  read: boolean;
30
29
  is_customer: boolean;
31
30
  deleted: boolean;
@@ -255,6 +254,7 @@ export type DocumentType = {
255
254
  */
256
255
  export type DocumentHeader = {
257
256
  id: string;
257
+ start_document_header_id: string;
258
258
  from_document_header_id: string | null;
259
259
  document_type_id: number;
260
260
  document_number: number;
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.37.8",
4
+ "version": "0.37.10",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",