pg-manipulator 1.0.44 → 1.0.46

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.
@@ -17,7 +17,8 @@ export type item_fields = {
17
17
  cest: string;
18
18
  gtin: string;
19
19
  nve: string;
20
- cfop: string;
21
20
  ipi: string;
22
21
  ativo?: boolean;
22
+ cfopi: string;
23
+ cfope: string;
23
24
  };
@@ -17,7 +17,8 @@ export type item_order = {
17
17
  cest?: 'desc' | 'asc';
18
18
  gtin?: 'desc' | 'asc';
19
19
  nve?: 'desc' | 'asc';
20
- cfop?: 'desc' | 'asc';
21
20
  ipi?: 'desc' | 'asc';
22
21
  ativo?: 'desc' | 'asc';
22
+ cfopi?: 'desc' | 'asc';
23
+ cfope?: 'desc' | 'asc';
23
24
  };
@@ -19,9 +19,10 @@ export type item_select = {
19
19
  cest?: string;
20
20
  gtin?: string;
21
21
  nve?: string;
22
- cfop?: string;
23
22
  ipi?: string;
24
23
  ativo?: boolean;
24
+ cfopi?: string;
25
+ cfope?: string;
25
26
  where: item_where;
26
27
  order?: item_order;
27
28
  };
@@ -18,8 +18,9 @@ export type item_update = {
18
18
  cest?: string;
19
19
  gtin?: string;
20
20
  nve?: string;
21
- cfop?: string;
22
21
  ipi?: string;
23
22
  ativo?: boolean;
23
+ cfopi?: string;
24
+ cfope?: string;
24
25
  where: item_where;
25
26
  };
@@ -8,4 +8,5 @@ export type item_variacao_fields = {
8
8
  preco_personalizacao: number;
9
9
  campos_personalizados?: any;
10
10
  ativo?: boolean;
11
+ item: number;
11
12
  };
@@ -8,4 +8,5 @@ export type item_variacao_order = {
8
8
  preco_personalizacao?: 'desc' | 'asc';
9
9
  campos_personalizados?: 'desc' | 'asc';
10
10
  ativo?: 'desc' | 'asc';
11
+ item?: 'desc' | 'asc';
11
12
  };
@@ -10,6 +10,7 @@ export type item_variacao_select = {
10
10
  preco_personalizacao?: number;
11
11
  campos_personalizados?: any;
12
12
  ativo?: boolean;
13
+ item?: number;
13
14
  where: item_variacao_where;
14
15
  order?: item_variacao_order;
15
16
  };
@@ -9,5 +9,6 @@ export type item_variacao_update = {
9
9
  preco_personalizacao?: number;
10
10
  campos_personalizados?: any;
11
11
  ativo?: boolean;
12
+ item?: number;
12
13
  where: item_variacao_where;
13
14
  };
@@ -9,4 +9,5 @@ export type item_variacao_where = {
9
9
  preco_personalizacao?: where_number | number;
10
10
  campos_personalizados?: any;
11
11
  ativo?: where_boolean | boolean;
12
+ item?: where_number | number;
12
13
  };
@@ -18,7 +18,8 @@ export type item_where = {
18
18
  cest?: where_string | string;
19
19
  gtin?: where_string | string;
20
20
  nve?: where_string | string;
21
- cfop?: where_string | string;
22
21
  ipi?: where_string | string;
23
22
  ativo?: where_boolean | boolean;
23
+ cfopi?: where_string | string;
24
+ cfope?: where_string | string;
24
25
  };
@@ -1,37 +1,37 @@
1
1
  import { PoolClient } from 'pg';
2
2
  import { pool_tsx } from '../../@types';
3
- import ecommerce from './ecommerce';
3
+ import atributo from './atributo';
4
+ import entidade_endereco from './entidade_endereco';
5
+ import usuario from './usuario';
4
6
  import item_variacao_atributo from './item_variacao_atributo';
7
+ import empresa from './empresa';
8
+ import operacao_item from './operacao_item';
5
9
  import item from './item';
6
10
  import entidade from './entidade';
7
11
  import categoria from './categoria';
8
- import marca from './marca';
9
- import operacao_pagamento from './operacao_pagamento';
10
12
  import item_variacao from './item_variacao';
11
- import usuario from './usuario';
13
+ import marca from './marca';
14
+ import ecommerce from './ecommerce';
12
15
  import ecommerce_item from './ecommerce_item';
13
- import entidade_endereco from './entidade_endereco';
14
- import atributo from './atributo';
15
16
  import operacao from './operacao';
16
- import operacao_item from './operacao_item';
17
- import empresa from './empresa';
17
+ import operacao_pagamento from './operacao_pagamento';
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
- ecommerce: typeof ecommerce;
21
+ atributo: typeof atributo;
22
+ entidade_endereco: typeof entidade_endereco;
23
+ usuario: typeof usuario;
22
24
  item_variacao_atributo: typeof item_variacao_atributo;
25
+ empresa: typeof empresa;
26
+ operacao_item: typeof operacao_item;
23
27
  item: typeof item;
24
28
  entidade: typeof entidade;
25
29
  categoria: typeof categoria;
26
- marca: typeof marca;
27
- operacao_pagamento: typeof operacao_pagamento;
28
30
  item_variacao: typeof item_variacao;
29
- usuario: typeof usuario;
31
+ marca: typeof marca;
32
+ ecommerce: typeof ecommerce;
30
33
  ecommerce_item: typeof ecommerce_item;
31
- entidade_endereco: typeof entidade_endereco;
32
- atributo: typeof atributo;
33
34
  operacao: typeof operacao;
34
- operacao_item: typeof operacao_item;
35
- empresa: typeof empresa;
35
+ operacao_pagamento: typeof operacao_pagamento;
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 ecommerce_1 = __importDefault(require("./ecommerce"));
7
+ const atributo_1 = __importDefault(require("./atributo"));
8
+ const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
9
+ const usuario_1 = __importDefault(require("./usuario"));
8
10
  const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
11
+ const empresa_1 = __importDefault(require("./empresa"));
12
+ const operacao_item_1 = __importDefault(require("./operacao_item"));
9
13
  const item_1 = __importDefault(require("./item"));
10
14
  const entidade_1 = __importDefault(require("./entidade"));
11
15
  const categoria_1 = __importDefault(require("./categoria"));
12
- const marca_1 = __importDefault(require("./marca"));
13
- const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
14
16
  const item_variacao_1 = __importDefault(require("./item_variacao"));
15
- const usuario_1 = __importDefault(require("./usuario"));
17
+ const marca_1 = __importDefault(require("./marca"));
18
+ const ecommerce_1 = __importDefault(require("./ecommerce"));
16
19
  const ecommerce_item_1 = __importDefault(require("./ecommerce_item"));
17
- const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
18
- const atributo_1 = __importDefault(require("./atributo"));
19
20
  const operacao_1 = __importDefault(require("./operacao"));
20
- const operacao_item_1 = __importDefault(require("./operacao_item"));
21
- const empresa_1 = __importDefault(require("./empresa"));
21
+ const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
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
- ecommerce: ecommerce_1.default,
29
+ atributo: atributo_1.default,
30
+ entidade_endereco: entidade_endereco_1.default,
31
+ usuario: usuario_1.default,
30
32
  item_variacao_atributo: item_variacao_atributo_1.default,
33
+ empresa: empresa_1.default,
34
+ operacao_item: operacao_item_1.default,
31
35
  item: item_1.default,
32
36
  entidade: entidade_1.default,
33
37
  categoria: categoria_1.default,
34
- marca: marca_1.default,
35
- operacao_pagamento: operacao_pagamento_1.default,
36
38
  item_variacao: item_variacao_1.default,
37
- usuario: usuario_1.default,
39
+ marca: marca_1.default,
40
+ ecommerce: ecommerce_1.default,
38
41
  ecommerce_item: ecommerce_item_1.default,
39
- entidade_endereco: entidade_endereco_1.default,
40
- atributo: atributo_1.default,
41
42
  operacao: operacao_1.default,
42
- operacao_item: operacao_item_1.default,
43
- empresa: empresa_1.default
43
+ operacao_pagamento: operacao_pagamento_1.default
44
44
  };
@@ -1,5 +1,5 @@
1
1
  declare const _default: {
2
- ecommerce: {
2
+ atributo: {
3
3
  columns: ({
4
4
  name: string;
5
5
  value: {
@@ -21,7 +21,8 @@ declare const _default: {
21
21
  fk_reference: null;
22
22
  pk: boolean;
23
23
  })[];
24
- fathers: {
24
+ fathers: never[];
25
+ childrens: {
25
26
  name: string;
26
27
  value: {
27
28
  type: string;
@@ -32,7 +33,10 @@ declare const _default: {
32
33
  fk_reference: string;
33
34
  pk: boolean;
34
35
  }[];
35
- childrens: {
36
+ name: string;
37
+ };
38
+ entidade_endereco: {
39
+ columns: ({
36
40
  name: string;
37
41
  value: {
38
42
  type: string;
@@ -42,21 +46,17 @@ declare const _default: {
42
46
  fk_table: string;
43
47
  fk_reference: string;
44
48
  pk: boolean;
45
- }[];
46
- name: string;
47
- };
48
- item_variacao_atributo: {
49
- columns: {
49
+ } | {
50
50
  name: string;
51
51
  value: {
52
52
  type: string;
53
53
  is_null: string;
54
54
  maxlength: null;
55
55
  };
56
- fk_table: string;
57
- fk_reference: string;
56
+ fk_table: null;
57
+ fk_reference: null;
58
58
  pk: boolean;
59
- }[];
59
+ })[];
60
60
  fathers: {
61
61
  name: string;
62
62
  value: {
@@ -71,7 +71,7 @@ declare const _default: {
71
71
  childrens: never[];
72
72
  name: string;
73
73
  };
74
- item: {
74
+ usuario: {
75
75
  columns: ({
76
76
  name: string;
77
77
  value: {
@@ -93,7 +93,12 @@ declare const _default: {
93
93
  fk_reference: null;
94
94
  pk: boolean;
95
95
  })[];
96
- fathers: {
96
+ fathers: never[];
97
+ childrens: never[];
98
+ name: string;
99
+ };
100
+ item_variacao_atributo: {
101
+ columns: {
97
102
  name: string;
98
103
  value: {
99
104
  type: string;
@@ -104,7 +109,7 @@ declare const _default: {
104
109
  fk_reference: string;
105
110
  pk: boolean;
106
111
  }[];
107
- childrens: {
112
+ fathers: {
108
113
  name: string;
109
114
  value: {
110
115
  type: string;
@@ -115,9 +120,10 @@ declare const _default: {
115
120
  fk_reference: string;
116
121
  pk: boolean;
117
122
  }[];
123
+ childrens: never[];
118
124
  name: string;
119
125
  };
120
- entidade: {
126
+ empresa: {
121
127
  columns: ({
122
128
  name: string;
123
129
  value: {
@@ -153,7 +159,7 @@ declare const _default: {
153
159
  }[];
154
160
  name: string;
155
161
  };
156
- categoria: {
162
+ operacao_item: {
157
163
  columns: ({
158
164
  name: string;
159
165
  value: {
@@ -175,8 +181,7 @@ declare const _default: {
175
181
  fk_reference: null;
176
182
  pk: boolean;
177
183
  })[];
178
- fathers: never[];
179
- childrens: {
184
+ fathers: {
180
185
  name: string;
181
186
  value: {
182
187
  type: string;
@@ -187,9 +192,10 @@ declare const _default: {
187
192
  fk_reference: string;
188
193
  pk: boolean;
189
194
  }[];
195
+ childrens: never[];
190
196
  name: string;
191
197
  };
192
- marca: {
198
+ item: {
193
199
  columns: ({
194
200
  name: string;
195
201
  value: {
@@ -211,7 +217,17 @@ declare const _default: {
211
217
  fk_reference: null;
212
218
  pk: boolean;
213
219
  })[];
214
- fathers: never[];
220
+ fathers: {
221
+ name: string;
222
+ value: {
223
+ type: string;
224
+ is_null: string;
225
+ maxlength: null;
226
+ };
227
+ fk_table: string;
228
+ fk_reference: string;
229
+ pk: boolean;
230
+ }[];
215
231
  childrens: {
216
232
  name: string;
217
233
  value: {
@@ -225,7 +241,7 @@ declare const _default: {
225
241
  }[];
226
242
  name: string;
227
243
  };
228
- operacao_pagamento: {
244
+ entidade: {
229
245
  columns: ({
230
246
  name: string;
231
247
  value: {
@@ -247,7 +263,8 @@ declare const _default: {
247
263
  fk_reference: null;
248
264
  pk: boolean;
249
265
  })[];
250
- fathers: {
266
+ fathers: never[];
267
+ childrens: {
251
268
  name: string;
252
269
  value: {
253
270
  type: string;
@@ -258,10 +275,9 @@ declare const _default: {
258
275
  fk_reference: string;
259
276
  pk: boolean;
260
277
  }[];
261
- childrens: never[];
262
278
  name: string;
263
279
  };
264
- item_variacao: {
280
+ categoria: {
265
281
  columns: ({
266
282
  name: string;
267
283
  value: {
@@ -297,7 +313,7 @@ declare const _default: {
297
313
  }[];
298
314
  name: string;
299
315
  };
300
- usuario: {
316
+ item_variacao: {
301
317
  columns: ({
302
318
  name: string;
303
319
  value: {
@@ -319,12 +335,7 @@ declare const _default: {
319
335
  fk_reference: null;
320
336
  pk: boolean;
321
337
  })[];
322
- fathers: never[];
323
- childrens: never[];
324
- name: string;
325
- };
326
- ecommerce_item: {
327
- columns: {
338
+ fathers: {
328
339
  name: string;
329
340
  value: {
330
341
  type: string;
@@ -335,7 +346,7 @@ declare const _default: {
335
346
  fk_reference: string;
336
347
  pk: boolean;
337
348
  }[];
338
- fathers: {
349
+ childrens: {
339
350
  name: string;
340
351
  value: {
341
352
  type: string;
@@ -346,10 +357,9 @@ declare const _default: {
346
357
  fk_reference: string;
347
358
  pk: boolean;
348
359
  }[];
349
- childrens: never[];
350
360
  name: string;
351
361
  };
352
- entidade_endereco: {
362
+ marca: {
353
363
  columns: ({
354
364
  name: string;
355
365
  value: {
@@ -371,7 +381,8 @@ declare const _default: {
371
381
  fk_reference: null;
372
382
  pk: boolean;
373
383
  })[];
374
- fathers: {
384
+ fathers: never[];
385
+ childrens: {
375
386
  name: string;
376
387
  value: {
377
388
  type: string;
@@ -382,10 +393,9 @@ declare const _default: {
382
393
  fk_reference: string;
383
394
  pk: boolean;
384
395
  }[];
385
- childrens: never[];
386
396
  name: string;
387
397
  };
388
- atributo: {
398
+ ecommerce: {
389
399
  columns: ({
390
400
  name: string;
391
401
  value: {
@@ -407,8 +417,7 @@ declare const _default: {
407
417
  fk_reference: null;
408
418
  pk: boolean;
409
419
  })[];
410
- fathers: never[];
411
- childrens: {
420
+ fathers: {
412
421
  name: string;
413
422
  value: {
414
423
  type: string;
@@ -419,10 +428,7 @@ declare const _default: {
419
428
  fk_reference: string;
420
429
  pk: boolean;
421
430
  }[];
422
- name: string;
423
- };
424
- operacao: {
425
- columns: ({
431
+ childrens: {
426
432
  name: string;
427
433
  value: {
428
434
  type: string;
@@ -432,18 +438,11 @@ declare const _default: {
432
438
  fk_table: string;
433
439
  fk_reference: string;
434
440
  pk: boolean;
435
- } | {
436
- name: string;
437
- value: {
438
- type: string;
439
- is_null: string;
440
- maxlength: null;
441
- };
442
- fk_table: null;
443
- fk_reference: null;
444
- pk: boolean;
445
- })[];
446
- fathers: {
441
+ }[];
442
+ name: string;
443
+ };
444
+ ecommerce_item: {
445
+ columns: {
447
446
  name: string;
448
447
  value: {
449
448
  type: string;
@@ -454,7 +453,7 @@ declare const _default: {
454
453
  fk_reference: string;
455
454
  pk: boolean;
456
455
  }[];
457
- childrens: {
456
+ fathers: {
458
457
  name: string;
459
458
  value: {
460
459
  type: string;
@@ -465,9 +464,10 @@ declare const _default: {
465
464
  fk_reference: string;
466
465
  pk: boolean;
467
466
  }[];
467
+ childrens: never[];
468
468
  name: string;
469
469
  };
470
- operacao_item: {
470
+ operacao: {
471
471
  columns: ({
472
472
  name: string;
473
473
  value: {
@@ -500,10 +500,20 @@ declare const _default: {
500
500
  fk_reference: string;
501
501
  pk: boolean;
502
502
  }[];
503
- childrens: never[];
503
+ childrens: {
504
+ name: string;
505
+ value: {
506
+ type: string;
507
+ is_null: string;
508
+ maxlength: null;
509
+ };
510
+ fk_table: string;
511
+ fk_reference: string;
512
+ pk: boolean;
513
+ }[];
504
514
  name: string;
505
515
  };
506
- empresa: {
516
+ operacao_pagamento: {
507
517
  columns: ({
508
518
  name: string;
509
519
  value: {
@@ -525,8 +535,7 @@ declare const _default: {
525
535
  fk_reference: null;
526
536
  pk: boolean;
527
537
  })[];
528
- fathers: never[];
529
- childrens: {
538
+ fathers: {
530
539
  name: string;
531
540
  value: {
532
541
  type: string;
@@ -537,6 +546,7 @@ declare const _default: {
537
546
  fk_reference: string;
538
547
  pk: boolean;
539
548
  }[];
549
+ childrens: never[];
540
550
  name: string;
541
551
  };
542
552
  };
@@ -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 ecommerce_1 = __importDefault(require("./ecommerce"));
6
+ const atributo_1 = __importDefault(require("./atributo"));
7
+ const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
8
+ const usuario_1 = __importDefault(require("./usuario"));
7
9
  const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
10
+ const empresa_1 = __importDefault(require("./empresa"));
11
+ const operacao_item_1 = __importDefault(require("./operacao_item"));
8
12
  const item_1 = __importDefault(require("./item"));
9
13
  const entidade_1 = __importDefault(require("./entidade"));
10
14
  const categoria_1 = __importDefault(require("./categoria"));
11
- const marca_1 = __importDefault(require("./marca"));
12
- const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
13
15
  const item_variacao_1 = __importDefault(require("./item_variacao"));
14
- const usuario_1 = __importDefault(require("./usuario"));
16
+ const marca_1 = __importDefault(require("./marca"));
17
+ const ecommerce_1 = __importDefault(require("./ecommerce"));
15
18
  const ecommerce_item_1 = __importDefault(require("./ecommerce_item"));
16
- const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
17
- const atributo_1 = __importDefault(require("./atributo"));
18
19
  const operacao_1 = __importDefault(require("./operacao"));
19
- const operacao_item_1 = __importDefault(require("./operacao_item"));
20
- const empresa_1 = __importDefault(require("./empresa"));
20
+ const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
21
21
  exports.default = {
22
- ecommerce: ecommerce_1.default,
22
+ atributo: atributo_1.default,
23
+ entidade_endereco: entidade_endereco_1.default,
24
+ usuario: usuario_1.default,
23
25
  item_variacao_atributo: item_variacao_atributo_1.default,
26
+ empresa: empresa_1.default,
27
+ operacao_item: operacao_item_1.default,
24
28
  item: item_1.default,
25
29
  entidade: entidade_1.default,
26
30
  categoria: categoria_1.default,
27
- marca: marca_1.default,
28
- operacao_pagamento: operacao_pagamento_1.default,
29
31
  item_variacao: item_variacao_1.default,
30
- usuario: usuario_1.default,
32
+ marca: marca_1.default,
33
+ ecommerce: ecommerce_1.default,
31
34
  ecommerce_item: ecommerce_item_1.default,
32
- entidade_endereco: entidade_endereco_1.default,
33
- atributo: atributo_1.default,
34
35
  operacao: operacao_1.default,
35
- operacao_item: operacao_item_1.default,
36
- empresa: empresa_1.default
36
+ operacao_pagamento: operacao_pagamento_1.default
37
37
  };
@@ -201,7 +201,7 @@ exports.default = {
201
201
  "pk": false
202
202
  },
203
203
  {
204
- "name": "cfop",
204
+ "name": "ipi",
205
205
  "value": {
206
206
  "type": "character varying",
207
207
  "is_null": "NO",
@@ -212,7 +212,18 @@ exports.default = {
212
212
  "pk": false
213
213
  },
214
214
  {
215
- "name": "ipi",
215
+ "name": "ativo",
216
+ "value": {
217
+ "type": "boolean",
218
+ "is_null": "YES",
219
+ "maxlength": null
220
+ },
221
+ "fk_table": null,
222
+ "fk_reference": null,
223
+ "pk": false
224
+ },
225
+ {
226
+ "name": "cfopi",
216
227
  "value": {
217
228
  "type": "character varying",
218
229
  "is_null": "NO",
@@ -223,10 +234,10 @@ exports.default = {
223
234
  "pk": false
224
235
  },
225
236
  {
226
- "name": "ativo",
237
+ "name": "cfope",
227
238
  "value": {
228
- "type": "boolean",
229
- "is_null": "YES",
239
+ "type": "character varying",
240
+ "is_null": "NO",
230
241
  "maxlength": null
231
242
  },
232
243
  "fk_table": null,
@@ -20,7 +20,17 @@ declare const _default: {
20
20
  fk_reference: null;
21
21
  pk: boolean;
22
22
  })[];
23
- fathers: never[];
23
+ fathers: {
24
+ name: string;
25
+ value: {
26
+ type: string;
27
+ is_null: string;
28
+ maxlength: null;
29
+ };
30
+ fk_table: string;
31
+ fk_reference: string;
32
+ pk: boolean;
33
+ }[];
24
34
  childrens: {
25
35
  name: string;
26
36
  value: {
@@ -100,9 +100,32 @@ exports.default = {
100
100
  "fk_table": null,
101
101
  "fk_reference": null,
102
102
  "pk": false
103
+ },
104
+ {
105
+ "name": "item",
106
+ "value": {
107
+ "type": "integer",
108
+ "is_null": "NO",
109
+ "maxlength": null
110
+ },
111
+ "fk_table": "item",
112
+ "fk_reference": "id",
113
+ "pk": false
114
+ }
115
+ ],
116
+ "fathers": [
117
+ {
118
+ "name": "item",
119
+ "value": {
120
+ "type": "integer",
121
+ "is_null": "NO",
122
+ "maxlength": null
123
+ },
124
+ "fk_table": "item",
125
+ "fk_reference": "id",
126
+ "pk": false
103
127
  }
104
128
  ],
105
- "fathers": [],
106
129
  "childrens": [
107
130
  {
108
131
  "name": "item_variacao",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-manipulator",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "description": "postgresql database handler",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",