@nomalism-com/types 0.37.9 → 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.
@@ -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>;
@@ -254,6 +254,7 @@ export type DocumentType = {
254
254
  */
255
255
  export type DocumentHeader = {
256
256
  id: string;
257
+ start_document_header_id: string;
257
258
  from_document_header_id: string | null;
258
259
  document_type_id: number;
259
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.9",
4
+ "version": "0.37.10",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",