@nomalism-com/types 0.35.0 → 0.35.2

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
@@ -1656,7 +1656,6 @@ var updateBodyKeys9 = {
1656
1656
  is_archived: joi11.boolean().optional(),
1657
1657
  is_void: joi11.boolean().optional(),
1658
1658
  who_handles: joi11.string().allow(null).optional(),
1659
- tags: joi11.string().allow(null, "").optional(),
1660
1659
  warning: joi11.string().optional().valid(...Object.values(IWarningType)),
1661
1660
  created_by: joi11.string().uuid().allow(null).optional()
1662
1661
  };
package/dist/index.js CHANGED
@@ -1656,7 +1656,6 @@ var updateBodyKeys9 = {
1656
1656
  is_archived: joi11.boolean().optional(),
1657
1657
  is_void: joi11.boolean().optional(),
1658
1658
  who_handles: joi11.string().allow(null).optional(),
1659
- tags: joi11.string().allow(null, "").optional(),
1660
1659
  warning: joi11.string().optional().valid(...Object.values(IWarningType)),
1661
1660
  created_by: joi11.string().uuid().allow(null).optional()
1662
1661
  };
@@ -10,7 +10,7 @@ export interface IFindByDocumentLineStateResponse {
10
10
  created_at: Date;
11
11
  created_by: string;
12
12
  who_handles: string | null;
13
- tags: string | null;
13
+ tags: string[];
14
14
  upfront_total: number;
15
15
  unread: boolean;
16
16
  }
@@ -170,7 +170,6 @@ export interface IUpdateRequest {
170
170
  is_archived?: boolean;
171
171
  is_void?: boolean;
172
172
  who_handles?: string | null;
173
- tags?: string | null;
174
173
  warning?: IWarningType;
175
174
  created_by?: string;
176
175
  }
@@ -203,7 +202,6 @@ export interface IFindResponse {
203
202
  total: number;
204
203
  emission_date: string;
205
204
  line_count: number;
206
- tags: string;
207
205
  is_void: boolean;
208
206
  is_archived: boolean;
209
207
  adjudicado: boolean;
@@ -287,7 +285,6 @@ export interface IFindRmOpenDocuments {
287
285
  document_header_id: string;
288
286
  document_number: string;
289
287
  identifier: string;
290
- tags: string | null;
291
288
  upfront_total: number | null;
292
289
  who_handles: string | null;
293
290
  document_lines: {
@@ -67,7 +67,6 @@ export interface IPublicFindByOwnerIdResponse {
67
67
  emission_date: Date;
68
68
  pdf_link: string;
69
69
  new_chat_messages: number;
70
- pc_tags: string[];
71
70
  }
72
71
  export interface DocumentHeaderNoteCreateRequest {
73
72
  document_header_id: string;
@@ -319,7 +319,6 @@ export type DocumentHeader = {
319
319
  is_void: boolean;
320
320
  origin_id: string | null;
321
321
  who_handles: string | null;
322
- tags: string | null;
323
322
  warning: string | null;
324
323
  created_at: Date;
325
324
  updated_at: Date;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript",
10
10
  "helper"
11
11
  ],
12
- "version": "0.35.0",
12
+ "version": "0.35.2",
13
13
  "type": "module",
14
14
  "module": "./dist/index.js",
15
15
  "main": "./dist/index.cjs",
@@ -12,7 +12,7 @@ export interface IFindByDocumentLineStateResponse {
12
12
  created_at: Date;
13
13
  created_by: string;
14
14
  who_handles: string | null;
15
- tags: string | null;
15
+ tags: string[];
16
16
  upfront_total: number;
17
17
  unread: boolean;
18
18
  }
@@ -217,7 +217,6 @@ export interface IUpdateRequest {
217
217
  is_archived?: boolean;
218
218
  is_void?: boolean;
219
219
  who_handles?: string | null;
220
- tags?: string | null;
221
220
  warning?: IWarningType;
222
221
  created_by?: string;
223
222
  }
@@ -267,7 +266,6 @@ export interface IFindResponse {
267
266
  total: number;
268
267
  emission_date: string;
269
268
  line_count: number;
270
- tags: string;
271
269
  is_void: boolean;
272
270
  is_archived: boolean;
273
271
  adjudicado: boolean;
@@ -370,7 +368,6 @@ export interface IFindRmOpenDocuments {
370
368
  document_header_id: string;
371
369
  document_number: string;
372
370
  identifier: string;
373
- tags: string | null;
374
371
  upfront_total: number | null;
375
372
  who_handles: string | null;
376
373
  document_lines: {
@@ -244,7 +244,6 @@ const updateBodyKeys: IShared.IRouteRequestWithStamps<IUpdateRequest> = {
244
244
  is_archived: joi.boolean().optional(),
245
245
  is_void: joi.boolean().optional(),
246
246
  who_handles: joi.string().allow(null).optional(),
247
- tags: joi.string().allow(null, '').optional(),
248
247
  warning: joi
249
248
  .string()
250
249
  .optional()
@@ -73,7 +73,6 @@ export interface IPublicFindByOwnerIdResponse {
73
73
  emission_date: Date;
74
74
  pdf_link: string;
75
75
  new_chat_messages: number;
76
- pc_tags: string[];
77
76
  }
78
77
 
79
78
  export interface DocumentHeaderNoteCreateRequest {
@@ -343,7 +343,6 @@ export type DocumentHeader = {
343
343
  is_void: boolean;
344
344
  origin_id: string | null;
345
345
  who_handles: string | null;
346
- tags: string | null;
347
346
  warning: string | null;
348
347
  created_at: Date;
349
348
  updated_at: Date;