pg-manipulator 1.0.58 → 1.0.59

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.
@@ -41,4 +41,11 @@ export type empresa_fields = {
41
41
  cor_principal?: string;
42
42
  cor_secundaria?: string;
43
43
  usuario?: number;
44
+ custo_tempo_base?: number;
45
+ custo_material_base?: number;
46
+ custo_nota_base?: number;
47
+ custo_frete_base?: number;
48
+ percentual_transacao_cartao_base?: number;
49
+ percentual_transacao_pix_base?: number;
50
+ percentual_impostos_base?: number;
44
51
  };
@@ -41,4 +41,11 @@ export type empresa_order = {
41
41
  cor_principal?: 'desc' | 'asc';
42
42
  cor_secundaria?: 'desc' | 'asc';
43
43
  usuario?: 'desc' | 'asc';
44
+ custo_tempo_base?: 'desc' | 'asc';
45
+ custo_material_base?: 'desc' | 'asc';
46
+ custo_nota_base?: 'desc' | 'asc';
47
+ custo_frete_base?: 'desc' | 'asc';
48
+ percentual_transacao_cartao_base?: 'desc' | 'asc';
49
+ percentual_transacao_pix_base?: 'desc' | 'asc';
50
+ percentual_impostos_base?: 'desc' | 'asc';
44
51
  };
@@ -43,6 +43,13 @@ export type empresa_select = {
43
43
  cor_principal?: string;
44
44
  cor_secundaria?: string;
45
45
  usuario?: number;
46
+ custo_tempo_base?: number;
47
+ custo_material_base?: number;
48
+ custo_nota_base?: number;
49
+ custo_frete_base?: number;
50
+ percentual_transacao_cartao_base?: number;
51
+ percentual_transacao_pix_base?: number;
52
+ percentual_impostos_base?: number;
46
53
  where: empresa_where;
47
54
  order?: empresa_order;
48
55
  };
@@ -42,5 +42,12 @@ export type empresa_update = {
42
42
  cor_principal?: string;
43
43
  cor_secundaria?: string;
44
44
  usuario?: number;
45
+ custo_tempo_base?: number;
46
+ custo_material_base?: number;
47
+ custo_nota_base?: number;
48
+ custo_frete_base?: number;
49
+ percentual_transacao_cartao_base?: number;
50
+ percentual_transacao_pix_base?: number;
51
+ percentual_impostos_base?: number;
45
52
  where: empresa_where;
46
53
  };
@@ -42,4 +42,11 @@ export type empresa_where = {
42
42
  cor_principal?: where_string | string;
43
43
  cor_secundaria?: where_string | string;
44
44
  usuario?: where_number | number;
45
+ custo_tempo_base?: where_number | number;
46
+ custo_material_base?: where_number | number;
47
+ custo_nota_base?: where_number | number;
48
+ custo_frete_base?: where_number | number;
49
+ percentual_transacao_cartao_base?: where_number | number;
50
+ percentual_transacao_pix_base?: where_number | number;
51
+ percentual_impostos_base?: where_number | number;
45
52
  };
@@ -23,4 +23,6 @@ export type item_fields = {
23
23
  cfope: string;
24
24
  empresa?: number;
25
25
  destaque?: boolean;
26
+ tempo_base?: number;
27
+ material_base?: number;
26
28
  };
@@ -23,4 +23,6 @@ export type item_order = {
23
23
  cfope?: 'desc' | 'asc';
24
24
  empresa?: 'desc' | 'asc';
25
25
  destaque?: 'desc' | 'asc';
26
+ tempo_base?: 'desc' | 'asc';
27
+ material_base?: 'desc' | 'asc';
26
28
  };
@@ -25,6 +25,8 @@ export type item_select = {
25
25
  cfope?: string;
26
26
  empresa?: number;
27
27
  destaque?: boolean;
28
+ tempo_base?: number;
29
+ material_base?: number;
28
30
  where: item_where;
29
31
  order?: item_order;
30
32
  };
@@ -24,5 +24,7 @@ export type item_update = {
24
24
  cfope?: string;
25
25
  empresa?: number;
26
26
  destaque?: boolean;
27
+ tempo_base?: number;
28
+ material_base?: number;
27
29
  where: item_where;
28
30
  };
@@ -24,4 +24,6 @@ export type item_where = {
24
24
  cfope?: where_string | string;
25
25
  empresa?: where_number | number;
26
26
  destaque?: where_boolean | boolean;
27
+ tempo_base?: where_number | number;
28
+ material_base?: where_number | number;
27
29
  };
@@ -1,37 +1,37 @@
1
1
  import { PoolClient } from 'pg';
2
2
  import { pool_tsx } from '../../@types';
3
- import usuario from './usuario';
3
+ import entidade_endereco from './entidade_endereco';
4
+ import item_variacao from './item_variacao';
4
5
  import entidade from './entidade';
5
- import empresa from './empresa';
6
- import operacao_item from './operacao_item';
7
6
  import operacao_pagamento from './operacao_pagamento';
8
7
  import item from './item';
9
8
  import categoria from './categoria';
10
- import entidade_endereco from './entidade_endereco';
11
- import operacao from './operacao';
9
+ import usuario from './usuario';
12
10
  import item_variacao_atributo from './item_variacao_atributo';
13
- import item_variacao_imagem from './item_variacao_imagem';
14
- import atributo from './atributo';
11
+ import operacao_item from './operacao_item';
15
12
  import entidade_cartao from './entidade_cartao';
13
+ import atributo from './atributo';
16
14
  import marca from './marca';
17
- import item_variacao from './item_variacao';
15
+ import empresa from './empresa';
16
+ import item_variacao_imagem from './item_variacao_imagem';
17
+ import operacao from './operacao';
18
18
  declare const _default: {
19
19
  query(query_string: string, query_params: Array<any>, transaction?: PoolClient | any): Promise<any>;
20
20
  transaction(callback: pool_tsx): Promise<void>;
21
- usuario: typeof usuario;
21
+ entidade_endereco: typeof entidade_endereco;
22
+ item_variacao: typeof item_variacao;
22
23
  entidade: typeof entidade;
23
- empresa: typeof empresa;
24
- operacao_item: typeof operacao_item;
25
24
  operacao_pagamento: typeof operacao_pagamento;
26
25
  item: typeof item;
27
26
  categoria: typeof categoria;
28
- entidade_endereco: typeof entidade_endereco;
29
- operacao: typeof operacao;
27
+ usuario: typeof usuario;
30
28
  item_variacao_atributo: typeof item_variacao_atributo;
31
- item_variacao_imagem: typeof item_variacao_imagem;
32
- atributo: typeof atributo;
29
+ operacao_item: typeof operacao_item;
33
30
  entidade_cartao: typeof entidade_cartao;
31
+ atributo: typeof atributo;
34
32
  marca: typeof marca;
35
- item_variacao: typeof item_variacao;
33
+ empresa: typeof empresa;
34
+ item_variacao_imagem: typeof item_variacao_imagem;
35
+ operacao: typeof operacao;
36
36
  };
37
37
  export default _default;
@@ -4,21 +4,21 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const database_1 = __importDefault(require("../../database"));
7
- const usuario_1 = __importDefault(require("./usuario"));
7
+ const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
8
+ const item_variacao_1 = __importDefault(require("./item_variacao"));
8
9
  const entidade_1 = __importDefault(require("./entidade"));
9
- const empresa_1 = __importDefault(require("./empresa"));
10
- const operacao_item_1 = __importDefault(require("./operacao_item"));
11
10
  const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
12
11
  const item_1 = __importDefault(require("./item"));
13
12
  const categoria_1 = __importDefault(require("./categoria"));
14
- const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
15
- const operacao_1 = __importDefault(require("./operacao"));
13
+ const usuario_1 = __importDefault(require("./usuario"));
16
14
  const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
17
- const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
18
- const atributo_1 = __importDefault(require("./atributo"));
15
+ const operacao_item_1 = __importDefault(require("./operacao_item"));
19
16
  const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
17
+ const atributo_1 = __importDefault(require("./atributo"));
20
18
  const marca_1 = __importDefault(require("./marca"));
21
- const item_variacao_1 = __importDefault(require("./item_variacao"));
19
+ const empresa_1 = __importDefault(require("./empresa"));
20
+ const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
21
+ const operacao_1 = __importDefault(require("./operacao"));
22
22
  exports.default = {
23
23
  async query(query_string, query_params, transaction = undefined) {
24
24
  return await database_1.default.query('admin', query_string, query_params, transaction);
@@ -26,19 +26,19 @@ exports.default = {
26
26
  async transaction(callback) {
27
27
  return await database_1.default.transaction('admin', callback);
28
28
  },
29
- usuario: usuario_1.default,
29
+ entidade_endereco: entidade_endereco_1.default,
30
+ item_variacao: item_variacao_1.default,
30
31
  entidade: entidade_1.default,
31
- empresa: empresa_1.default,
32
- operacao_item: operacao_item_1.default,
33
32
  operacao_pagamento: operacao_pagamento_1.default,
34
33
  item: item_1.default,
35
34
  categoria: categoria_1.default,
36
- entidade_endereco: entidade_endereco_1.default,
37
- operacao: operacao_1.default,
35
+ usuario: usuario_1.default,
38
36
  item_variacao_atributo: item_variacao_atributo_1.default,
39
- item_variacao_imagem: item_variacao_imagem_1.default,
40
- atributo: atributo_1.default,
37
+ operacao_item: operacao_item_1.default,
41
38
  entidade_cartao: entidade_cartao_1.default,
39
+ atributo: atributo_1.default,
42
40
  marca: marca_1.default,
43
- item_variacao: item_variacao_1.default
41
+ empresa: empresa_1.default,
42
+ item_variacao_imagem: item_variacao_imagem_1.default,
43
+ operacao: operacao_1.default
44
44
  };
@@ -463,6 +463,83 @@ exports.default = {
463
463
  "fk_table": null,
464
464
  "fk_reference": null,
465
465
  "pk": false
466
+ },
467
+ {
468
+ "name": "custo_tempo_base",
469
+ "value": {
470
+ "type": "numeric",
471
+ "is_null": "YES",
472
+ "maxlength": null
473
+ },
474
+ "fk_table": null,
475
+ "fk_reference": null,
476
+ "pk": false
477
+ },
478
+ {
479
+ "name": "custo_material_base",
480
+ "value": {
481
+ "type": "numeric",
482
+ "is_null": "YES",
483
+ "maxlength": null
484
+ },
485
+ "fk_table": null,
486
+ "fk_reference": null,
487
+ "pk": false
488
+ },
489
+ {
490
+ "name": "custo_nota_base",
491
+ "value": {
492
+ "type": "numeric",
493
+ "is_null": "YES",
494
+ "maxlength": null
495
+ },
496
+ "fk_table": null,
497
+ "fk_reference": null,
498
+ "pk": false
499
+ },
500
+ {
501
+ "name": "custo_frete_base",
502
+ "value": {
503
+ "type": "numeric",
504
+ "is_null": "YES",
505
+ "maxlength": null
506
+ },
507
+ "fk_table": null,
508
+ "fk_reference": null,
509
+ "pk": false
510
+ },
511
+ {
512
+ "name": "percentual_transacao_cartao_base",
513
+ "value": {
514
+ "type": "numeric",
515
+ "is_null": "YES",
516
+ "maxlength": null
517
+ },
518
+ "fk_table": null,
519
+ "fk_reference": null,
520
+ "pk": false
521
+ },
522
+ {
523
+ "name": "percentual_transacao_pix_base",
524
+ "value": {
525
+ "type": "numeric",
526
+ "is_null": "YES",
527
+ "maxlength": null
528
+ },
529
+ "fk_table": null,
530
+ "fk_reference": null,
531
+ "pk": false
532
+ },
533
+ {
534
+ "name": "percentual_impostos_base",
535
+ "value": {
536
+ "type": "numeric",
537
+ "is_null": "YES",
538
+ "maxlength": null
539
+ },
540
+ "fk_table": null,
541
+ "fk_reference": null,
542
+ "pk": false
466
543
  }
467
544
  ],
468
545
  "fathers": [],
@@ -1,5 +1,5 @@
1
1
  declare const _default: {
2
- usuario: {
2
+ entidade_endereco: {
3
3
  columns: ({
4
4
  name: string;
5
5
  value: {
@@ -21,12 +21,7 @@ declare const _default: {
21
21
  fk_reference: null;
22
22
  pk: boolean;
23
23
  })[];
24
- fathers: never[];
25
- childrens: never[];
26
- name: string;
27
- };
28
- entidade: {
29
- columns: ({
24
+ fathers: {
30
25
  name: string;
31
26
  value: {
32
27
  type: string;
@@ -36,18 +31,7 @@ declare const _default: {
36
31
  fk_table: string;
37
32
  fk_reference: string;
38
33
  pk: boolean;
39
- } | {
40
- name: string;
41
- value: {
42
- type: string;
43
- is_null: string;
44
- maxlength: null;
45
- };
46
- fk_table: null;
47
- fk_reference: null;
48
- pk: boolean;
49
- })[];
50
- fathers: never[];
34
+ }[];
51
35
  childrens: {
52
36
  name: string;
53
37
  value: {
@@ -61,7 +45,7 @@ declare const _default: {
61
45
  }[];
62
46
  name: string;
63
47
  };
64
- empresa: {
48
+ item_variacao: {
65
49
  columns: ({
66
50
  name: string;
67
51
  value: {
@@ -83,11 +67,31 @@ declare const _default: {
83
67
  fk_reference: null;
84
68
  pk: boolean;
85
69
  })[];
86
- fathers: never[];
87
- childrens: never[];
70
+ fathers: {
71
+ name: string;
72
+ value: {
73
+ type: string;
74
+ is_null: string;
75
+ maxlength: null;
76
+ };
77
+ fk_table: string;
78
+ fk_reference: string;
79
+ pk: boolean;
80
+ }[];
81
+ childrens: {
82
+ name: string;
83
+ value: {
84
+ type: string;
85
+ is_null: string;
86
+ maxlength: null;
87
+ };
88
+ fk_table: string;
89
+ fk_reference: string;
90
+ pk: boolean;
91
+ }[];
88
92
  name: string;
89
93
  };
90
- operacao_item: {
94
+ entidade: {
91
95
  columns: ({
92
96
  name: string;
93
97
  value: {
@@ -109,7 +113,8 @@ declare const _default: {
109
113
  fk_reference: null;
110
114
  pk: boolean;
111
115
  })[];
112
- fathers: {
116
+ fathers: never[];
117
+ childrens: {
113
118
  name: string;
114
119
  value: {
115
120
  type: string;
@@ -120,7 +125,6 @@ declare const _default: {
120
125
  fk_reference: string;
121
126
  pk: boolean;
122
127
  }[];
123
- childrens: never[];
124
128
  name: string;
125
129
  };
126
130
  operacao_pagamento: {
@@ -241,7 +245,7 @@ declare const _default: {
241
245
  }[];
242
246
  name: string;
243
247
  };
244
- entidade_endereco: {
248
+ usuario: {
245
249
  columns: ({
246
250
  name: string;
247
251
  value: {
@@ -263,7 +267,12 @@ declare const _default: {
263
267
  fk_reference: null;
264
268
  pk: boolean;
265
269
  })[];
266
- fathers: {
270
+ fathers: never[];
271
+ childrens: never[];
272
+ name: string;
273
+ };
274
+ item_variacao_atributo: {
275
+ columns: {
267
276
  name: string;
268
277
  value: {
269
278
  type: string;
@@ -274,7 +283,7 @@ declare const _default: {
274
283
  fk_reference: string;
275
284
  pk: boolean;
276
285
  }[];
277
- childrens: {
286
+ fathers: {
278
287
  name: string;
279
288
  value: {
280
289
  type: string;
@@ -285,9 +294,10 @@ declare const _default: {
285
294
  fk_reference: string;
286
295
  pk: boolean;
287
296
  }[];
297
+ childrens: never[];
288
298
  name: string;
289
299
  };
290
- operacao: {
300
+ operacao_item: {
291
301
  columns: ({
292
302
  name: string;
293
303
  value: {
@@ -320,7 +330,11 @@ declare const _default: {
320
330
  fk_reference: string;
321
331
  pk: boolean;
322
332
  }[];
323
- childrens: {
333
+ childrens: never[];
334
+ name: string;
335
+ };
336
+ entidade_cartao: {
337
+ columns: ({
324
338
  name: string;
325
339
  value: {
326
340
  type: string;
@@ -330,11 +344,18 @@ declare const _default: {
330
344
  fk_table: string;
331
345
  fk_reference: string;
332
346
  pk: boolean;
333
- }[];
334
- name: string;
335
- };
336
- item_variacao_atributo: {
337
- columns: {
347
+ } | {
348
+ name: string;
349
+ value: {
350
+ type: string;
351
+ is_null: string;
352
+ maxlength: null;
353
+ };
354
+ fk_table: null;
355
+ fk_reference: null;
356
+ pk: boolean;
357
+ })[];
358
+ fathers: {
338
359
  name: string;
339
360
  value: {
340
361
  type: string;
@@ -345,7 +366,7 @@ declare const _default: {
345
366
  fk_reference: string;
346
367
  pk: boolean;
347
368
  }[];
348
- fathers: {
369
+ childrens: {
349
370
  name: string;
350
371
  value: {
351
372
  type: string;
@@ -356,10 +377,9 @@ declare const _default: {
356
377
  fk_reference: string;
357
378
  pk: boolean;
358
379
  }[];
359
- childrens: never[];
360
380
  name: string;
361
381
  };
362
- item_variacao_imagem: {
382
+ atributo: {
363
383
  columns: ({
364
384
  name: string;
365
385
  value: {
@@ -381,7 +401,8 @@ declare const _default: {
381
401
  fk_reference: null;
382
402
  pk: boolean;
383
403
  })[];
384
- fathers: {
404
+ fathers: never[];
405
+ childrens: {
385
406
  name: string;
386
407
  value: {
387
408
  type: string;
@@ -392,10 +413,9 @@ declare const _default: {
392
413
  fk_reference: string;
393
414
  pk: boolean;
394
415
  }[];
395
- childrens: never[];
396
416
  name: string;
397
417
  };
398
- atributo: {
418
+ marca: {
399
419
  columns: ({
400
420
  name: string;
401
421
  value: {
@@ -431,7 +451,7 @@ declare const _default: {
431
451
  }[];
432
452
  name: string;
433
453
  };
434
- entidade_cartao: {
454
+ empresa: {
435
455
  columns: ({
436
456
  name: string;
437
457
  value: {
@@ -453,31 +473,11 @@ declare const _default: {
453
473
  fk_reference: null;
454
474
  pk: boolean;
455
475
  })[];
456
- fathers: {
457
- name: string;
458
- value: {
459
- type: string;
460
- is_null: string;
461
- maxlength: null;
462
- };
463
- fk_table: string;
464
- fk_reference: string;
465
- pk: boolean;
466
- }[];
467
- childrens: {
468
- name: string;
469
- value: {
470
- type: string;
471
- is_null: string;
472
- maxlength: null;
473
- };
474
- fk_table: string;
475
- fk_reference: string;
476
- pk: boolean;
477
- }[];
476
+ fathers: never[];
477
+ childrens: never[];
478
478
  name: string;
479
479
  };
480
- marca: {
480
+ item_variacao_imagem: {
481
481
  columns: ({
482
482
  name: string;
483
483
  value: {
@@ -499,8 +499,7 @@ declare const _default: {
499
499
  fk_reference: null;
500
500
  pk: boolean;
501
501
  })[];
502
- fathers: never[];
503
- childrens: {
502
+ fathers: {
504
503
  name: string;
505
504
  value: {
506
505
  type: string;
@@ -511,9 +510,10 @@ declare const _default: {
511
510
  fk_reference: string;
512
511
  pk: boolean;
513
512
  }[];
513
+ childrens: never[];
514
514
  name: string;
515
515
  };
516
- item_variacao: {
516
+ operacao: {
517
517
  columns: ({
518
518
  name: string;
519
519
  value: {
@@ -3,35 +3,35 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- const usuario_1 = __importDefault(require("./usuario"));
6
+ const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
7
+ const item_variacao_1 = __importDefault(require("./item_variacao"));
7
8
  const entidade_1 = __importDefault(require("./entidade"));
8
- const empresa_1 = __importDefault(require("./empresa"));
9
- const operacao_item_1 = __importDefault(require("./operacao_item"));
10
9
  const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
11
10
  const item_1 = __importDefault(require("./item"));
12
11
  const categoria_1 = __importDefault(require("./categoria"));
13
- const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
14
- const operacao_1 = __importDefault(require("./operacao"));
12
+ const usuario_1 = __importDefault(require("./usuario"));
15
13
  const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
16
- const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
17
- const atributo_1 = __importDefault(require("./atributo"));
14
+ const operacao_item_1 = __importDefault(require("./operacao_item"));
18
15
  const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
16
+ const atributo_1 = __importDefault(require("./atributo"));
19
17
  const marca_1 = __importDefault(require("./marca"));
20
- const item_variacao_1 = __importDefault(require("./item_variacao"));
18
+ const empresa_1 = __importDefault(require("./empresa"));
19
+ const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
20
+ const operacao_1 = __importDefault(require("./operacao"));
21
21
  exports.default = {
22
- usuario: usuario_1.default,
22
+ entidade_endereco: entidade_endereco_1.default,
23
+ item_variacao: item_variacao_1.default,
23
24
  entidade: entidade_1.default,
24
- empresa: empresa_1.default,
25
- operacao_item: operacao_item_1.default,
26
25
  operacao_pagamento: operacao_pagamento_1.default,
27
26
  item: item_1.default,
28
27
  categoria: categoria_1.default,
29
- entidade_endereco: entidade_endereco_1.default,
30
- operacao: operacao_1.default,
28
+ usuario: usuario_1.default,
31
29
  item_variacao_atributo: item_variacao_atributo_1.default,
32
- item_variacao_imagem: item_variacao_imagem_1.default,
33
- atributo: atributo_1.default,
30
+ operacao_item: operacao_item_1.default,
34
31
  entidade_cartao: entidade_cartao_1.default,
32
+ atributo: atributo_1.default,
35
33
  marca: marca_1.default,
36
- item_variacao: item_variacao_1.default
34
+ empresa: empresa_1.default,
35
+ item_variacao_imagem: item_variacao_imagem_1.default,
36
+ operacao: operacao_1.default
37
37
  };
@@ -265,6 +265,28 @@ exports.default = {
265
265
  "fk_table": null,
266
266
  "fk_reference": null,
267
267
  "pk": false
268
+ },
269
+ {
270
+ "name": "tempo_base",
271
+ "value": {
272
+ "type": "numeric",
273
+ "is_null": "YES",
274
+ "maxlength": null
275
+ },
276
+ "fk_table": null,
277
+ "fk_reference": null,
278
+ "pk": false
279
+ },
280
+ {
281
+ "name": "material_base",
282
+ "value": {
283
+ "type": "numeric",
284
+ "is_null": "YES",
285
+ "maxlength": null
286
+ },
287
+ "fk_table": null,
288
+ "fk_reference": null,
289
+ "pk": false
268
290
  }
269
291
  ],
270
292
  "fathers": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-manipulator",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "description": "postgresql database handler",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",