pg-manipulator 1.0.63 → 1.0.65

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.
@@ -48,4 +48,6 @@ export type empresa_fields = {
48
48
  percentual_transacao_cartao_base?: number;
49
49
  percentual_transacao_pix_base?: number;
50
50
  percentual_impostos_base?: number;
51
+ regime_fiscal?: string;
52
+ razao_social?: string;
51
53
  };
@@ -48,4 +48,6 @@ export type empresa_order = {
48
48
  percentual_transacao_cartao_base?: 'desc' | 'asc';
49
49
  percentual_transacao_pix_base?: 'desc' | 'asc';
50
50
  percentual_impostos_base?: 'desc' | 'asc';
51
+ regime_fiscal?: 'desc' | 'asc';
52
+ razao_social?: 'desc' | 'asc';
51
53
  };
@@ -50,6 +50,8 @@ export type empresa_select = {
50
50
  percentual_transacao_cartao_base?: number;
51
51
  percentual_transacao_pix_base?: number;
52
52
  percentual_impostos_base?: number;
53
+ regime_fiscal?: string;
54
+ razao_social?: string;
53
55
  where: empresa_where;
54
56
  order?: empresa_order;
55
57
  };
@@ -49,5 +49,7 @@ export type empresa_update = {
49
49
  percentual_transacao_cartao_base?: number;
50
50
  percentual_transacao_pix_base?: number;
51
51
  percentual_impostos_base?: number;
52
+ regime_fiscal?: string;
53
+ razao_social?: string;
52
54
  where: empresa_where;
53
55
  };
@@ -49,4 +49,6 @@ export type empresa_where = {
49
49
  percentual_transacao_cartao_base?: where_number | number;
50
50
  percentual_transacao_pix_base?: where_number | number;
51
51
  percentual_impostos_base?: where_number | number;
52
+ regime_fiscal?: where_string | string;
53
+ razao_social?: where_string | string;
52
54
  };
@@ -24,4 +24,21 @@ export type operacao_fields = {
24
24
  etiquetas?: any;
25
25
  entidade_endereco?: number;
26
26
  empresa?: number;
27
+ data_hora_finalizacao?: Date;
28
+ v_total?: number;
29
+ v_desconto?: number;
30
+ v_frete?: number;
31
+ v_seguro?: number;
32
+ v_outros?: number;
33
+ v_icms?: number;
34
+ v_icms_st?: number;
35
+ v_ipi?: number;
36
+ v_pis?: number;
37
+ v_cofins?: number;
38
+ v_ii?: number;
39
+ v_fcp?: number;
40
+ v_difal_dest?: number;
41
+ v_difal_rem?: number;
42
+ v_tributos_total?: number;
43
+ xml_original?: number;
27
44
  };
@@ -24,4 +24,21 @@ export type operacao_order = {
24
24
  etiquetas?: 'desc' | 'asc';
25
25
  entidade_endereco?: 'desc' | 'asc';
26
26
  empresa?: 'desc' | 'asc';
27
+ data_hora_finalizacao?: 'desc' | 'asc';
28
+ v_total?: 'desc' | 'asc';
29
+ v_desconto?: 'desc' | 'asc';
30
+ v_frete?: 'desc' | 'asc';
31
+ v_seguro?: 'desc' | 'asc';
32
+ v_outros?: 'desc' | 'asc';
33
+ v_icms?: 'desc' | 'asc';
34
+ v_icms_st?: 'desc' | 'asc';
35
+ v_ipi?: 'desc' | 'asc';
36
+ v_pis?: 'desc' | 'asc';
37
+ v_cofins?: 'desc' | 'asc';
38
+ v_ii?: 'desc' | 'asc';
39
+ v_fcp?: 'desc' | 'asc';
40
+ v_difal_dest?: 'desc' | 'asc';
41
+ v_difal_rem?: 'desc' | 'asc';
42
+ v_tributos_total?: 'desc' | 'asc';
43
+ xml_original?: 'desc' | 'asc';
27
44
  };
@@ -26,6 +26,23 @@ export type operacao_select = {
26
26
  etiquetas?: any;
27
27
  entidade_endereco?: number;
28
28
  empresa?: number;
29
+ data_hora_finalizacao?: Date;
30
+ v_total?: number;
31
+ v_desconto?: number;
32
+ v_frete?: number;
33
+ v_seguro?: number;
34
+ v_outros?: number;
35
+ v_icms?: number;
36
+ v_icms_st?: number;
37
+ v_ipi?: number;
38
+ v_pis?: number;
39
+ v_cofins?: number;
40
+ v_ii?: number;
41
+ v_fcp?: number;
42
+ v_difal_dest?: number;
43
+ v_difal_rem?: number;
44
+ v_tributos_total?: number;
45
+ xml_original?: number;
29
46
  where: operacao_where;
30
47
  order?: operacao_order;
31
48
  };
@@ -25,5 +25,22 @@ export type operacao_update = {
25
25
  etiquetas?: any;
26
26
  entidade_endereco?: number;
27
27
  empresa?: number;
28
+ data_hora_finalizacao?: Date;
29
+ v_total?: number;
30
+ v_desconto?: number;
31
+ v_frete?: number;
32
+ v_seguro?: number;
33
+ v_outros?: number;
34
+ v_icms?: number;
35
+ v_icms_st?: number;
36
+ v_ipi?: number;
37
+ v_pis?: number;
38
+ v_cofins?: number;
39
+ v_ii?: number;
40
+ v_fcp?: number;
41
+ v_difal_dest?: number;
42
+ v_difal_rem?: number;
43
+ v_tributos_total?: number;
44
+ xml_original?: number;
28
45
  where: operacao_where;
29
46
  };
@@ -25,4 +25,21 @@ export type operacao_where = {
25
25
  etiquetas?: any;
26
26
  entidade_endereco?: where_number | number;
27
27
  empresa?: where_number | number;
28
+ data_hora_finalizacao?: where_date | Date;
29
+ v_total?: where_number | number;
30
+ v_desconto?: where_number | number;
31
+ v_frete?: where_number | number;
32
+ v_seguro?: where_number | number;
33
+ v_outros?: where_number | number;
34
+ v_icms?: where_number | number;
35
+ v_icms_st?: where_number | number;
36
+ v_ipi?: where_number | number;
37
+ v_pis?: where_number | number;
38
+ v_cofins?: where_number | number;
39
+ v_ii?: where_number | number;
40
+ v_fcp?: where_number | number;
41
+ v_difal_dest?: where_number | number;
42
+ v_difal_rem?: where_number | number;
43
+ v_tributos_total?: where_number | number;
44
+ xml_original?: where_number | number;
28
45
  };
@@ -1,37 +1,37 @@
1
1
  import { PoolClient } from 'pg';
2
2
  import { pool_tsx } from '../../@types';
3
- import operacao_pagamento from './operacao_pagamento';
4
3
  import item_variacao_imagem from './item_variacao_imagem';
5
4
  import item_variacao from './item_variacao';
5
+ import empresa from './empresa';
6
+ import categoria from './categoria';
6
7
  import usuario from './usuario';
7
- import operacao from './operacao';
8
+ import operacao_pagamento from './operacao_pagamento';
9
+ import entidade from './entidade';
8
10
  import item from './item';
9
- import categoria from './categoria';
10
- import item_variacao_atributo from './item_variacao_atributo';
11
11
  import operacao_item from './operacao_item';
12
- import entidade_cartao from './entidade_cartao';
13
- import empresa from './empresa';
14
12
  import atributo from './atributo';
13
+ import entidade_cartao from './entidade_cartao';
14
+ import item_variacao_atributo from './item_variacao_atributo';
15
15
  import entidade_endereco from './entidade_endereco';
16
+ import operacao from './operacao';
16
17
  import marca from './marca';
17
- import entidade from './entidade';
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
- operacao_pagamento: typeof operacao_pagamento;
22
21
  item_variacao_imagem: typeof item_variacao_imagem;
23
22
  item_variacao: typeof item_variacao;
23
+ empresa: typeof empresa;
24
+ categoria: typeof categoria;
24
25
  usuario: typeof usuario;
25
- operacao: typeof operacao;
26
+ operacao_pagamento: typeof operacao_pagamento;
27
+ entidade: typeof entidade;
26
28
  item: typeof item;
27
- categoria: typeof categoria;
28
- item_variacao_atributo: typeof item_variacao_atributo;
29
29
  operacao_item: typeof operacao_item;
30
- entidade_cartao: typeof entidade_cartao;
31
- empresa: typeof empresa;
32
30
  atributo: typeof atributo;
31
+ entidade_cartao: typeof entidade_cartao;
32
+ item_variacao_atributo: typeof item_variacao_atributo;
33
33
  entidade_endereco: typeof entidade_endereco;
34
+ operacao: typeof operacao;
34
35
  marca: typeof marca;
35
- entidade: typeof entidade;
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 operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
8
7
  const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
9
8
  const item_variacao_1 = __importDefault(require("./item_variacao"));
9
+ const empresa_1 = __importDefault(require("./empresa"));
10
+ const categoria_1 = __importDefault(require("./categoria"));
10
11
  const usuario_1 = __importDefault(require("./usuario"));
11
- const operacao_1 = __importDefault(require("./operacao"));
12
+ const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
13
+ const entidade_1 = __importDefault(require("./entidade"));
12
14
  const item_1 = __importDefault(require("./item"));
13
- const categoria_1 = __importDefault(require("./categoria"));
14
- const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
15
15
  const operacao_item_1 = __importDefault(require("./operacao_item"));
16
- const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
17
- const empresa_1 = __importDefault(require("./empresa"));
18
16
  const atributo_1 = __importDefault(require("./atributo"));
17
+ const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
18
+ const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
19
19
  const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
20
+ const operacao_1 = __importDefault(require("./operacao"));
20
21
  const marca_1 = __importDefault(require("./marca"));
21
- const entidade_1 = __importDefault(require("./entidade"));
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
- operacao_pagamento: operacao_pagamento_1.default,
30
29
  item_variacao_imagem: item_variacao_imagem_1.default,
31
30
  item_variacao: item_variacao_1.default,
31
+ empresa: empresa_1.default,
32
+ categoria: categoria_1.default,
32
33
  usuario: usuario_1.default,
33
- operacao: operacao_1.default,
34
+ operacao_pagamento: operacao_pagamento_1.default,
35
+ entidade: entidade_1.default,
34
36
  item: item_1.default,
35
- categoria: categoria_1.default,
36
- item_variacao_atributo: item_variacao_atributo_1.default,
37
37
  operacao_item: operacao_item_1.default,
38
- entidade_cartao: entidade_cartao_1.default,
39
- empresa: empresa_1.default,
40
38
  atributo: atributo_1.default,
39
+ entidade_cartao: entidade_cartao_1.default,
40
+ item_variacao_atributo: item_variacao_atributo_1.default,
41
41
  entidade_endereco: entidade_endereco_1.default,
42
- marca: marca_1.default,
43
- entidade: entidade_1.default
42
+ operacao: operacao_1.default,
43
+ marca: marca_1.default
44
44
  };
@@ -540,6 +540,28 @@ exports.default = {
540
540
  "fk_table": null,
541
541
  "fk_reference": null,
542
542
  "pk": false
543
+ },
544
+ {
545
+ "name": "regime_fiscal",
546
+ "value": {
547
+ "type": "character varying",
548
+ "is_null": "YES",
549
+ "maxlength": null
550
+ },
551
+ "fk_table": null,
552
+ "fk_reference": null,
553
+ "pk": false
554
+ },
555
+ {
556
+ "name": "razao_social",
557
+ "value": {
558
+ "type": "character varying",
559
+ "is_null": "YES",
560
+ "maxlength": null
561
+ },
562
+ "fk_table": null,
563
+ "fk_reference": null,
564
+ "pk": false
543
565
  }
544
566
  ],
545
567
  "fathers": [],
@@ -1,5 +1,5 @@
1
1
  declare const _default: {
2
- operacao_pagamento: {
2
+ item_variacao_imagem: {
3
3
  columns: ({
4
4
  name: string;
5
5
  value: {
@@ -35,7 +35,7 @@ declare const _default: {
35
35
  childrens: never[];
36
36
  name: string;
37
37
  };
38
- item_variacao_imagem: {
38
+ item_variacao: {
39
39
  columns: ({
40
40
  name: string;
41
41
  value: {
@@ -68,10 +68,20 @@ declare const _default: {
68
68
  fk_reference: string;
69
69
  pk: boolean;
70
70
  }[];
71
- childrens: never[];
71
+ childrens: {
72
+ name: string;
73
+ value: {
74
+ type: string;
75
+ is_null: string;
76
+ maxlength: null;
77
+ };
78
+ fk_table: string;
79
+ fk_reference: string;
80
+ pk: boolean;
81
+ }[];
72
82
  name: string;
73
83
  };
74
- item_variacao: {
84
+ empresa: {
75
85
  columns: ({
76
86
  name: string;
77
87
  value: {
@@ -93,7 +103,12 @@ declare const _default: {
93
103
  fk_reference: null;
94
104
  pk: boolean;
95
105
  })[];
96
- fathers: {
106
+ fathers: never[];
107
+ childrens: never[];
108
+ name: string;
109
+ };
110
+ categoria: {
111
+ columns: ({
97
112
  name: string;
98
113
  value: {
99
114
  type: string;
@@ -103,7 +118,18 @@ declare const _default: {
103
118
  fk_table: string;
104
119
  fk_reference: string;
105
120
  pk: boolean;
106
- }[];
121
+ } | {
122
+ name: string;
123
+ value: {
124
+ type: string;
125
+ is_null: string;
126
+ maxlength: null;
127
+ };
128
+ fk_table: null;
129
+ fk_reference: null;
130
+ pk: boolean;
131
+ })[];
132
+ fathers: never[];
107
133
  childrens: {
108
134
  name: string;
109
135
  value: {
@@ -143,7 +169,7 @@ declare const _default: {
143
169
  childrens: never[];
144
170
  name: string;
145
171
  };
146
- operacao: {
172
+ operacao_pagamento: {
147
173
  columns: ({
148
174
  name: string;
149
175
  value: {
@@ -176,20 +202,10 @@ declare const _default: {
176
202
  fk_reference: string;
177
203
  pk: boolean;
178
204
  }[];
179
- childrens: {
180
- name: string;
181
- value: {
182
- type: string;
183
- is_null: string;
184
- maxlength: null;
185
- };
186
- fk_table: string;
187
- fk_reference: string;
188
- pk: boolean;
189
- }[];
205
+ childrens: never[];
190
206
  name: string;
191
207
  };
192
- item: {
208
+ entidade: {
193
209
  columns: ({
194
210
  name: string;
195
211
  value: {
@@ -211,17 +227,7 @@ declare const _default: {
211
227
  fk_reference: null;
212
228
  pk: boolean;
213
229
  })[];
214
- fathers: {
215
- name: string;
216
- value: {
217
- type: string;
218
- is_null: string;
219
- maxlength: null;
220
- };
221
- fk_table: string;
222
- fk_reference: string;
223
- pk: boolean;
224
- }[];
230
+ fathers: never[];
225
231
  childrens: {
226
232
  name: string;
227
233
  value: {
@@ -235,7 +241,7 @@ declare const _default: {
235
241
  }[];
236
242
  name: string;
237
243
  };
238
- categoria: {
244
+ item: {
239
245
  columns: ({
240
246
  name: string;
241
247
  value: {
@@ -257,22 +263,7 @@ declare const _default: {
257
263
  fk_reference: null;
258
264
  pk: boolean;
259
265
  })[];
260
- fathers: never[];
261
- childrens: {
262
- name: string;
263
- value: {
264
- type: string;
265
- is_null: string;
266
- maxlength: null;
267
- };
268
- fk_table: string;
269
- fk_reference: string;
270
- pk: boolean;
271
- }[];
272
- name: string;
273
- };
274
- item_variacao_atributo: {
275
- columns: {
266
+ fathers: {
276
267
  name: string;
277
268
  value: {
278
269
  type: string;
@@ -283,7 +274,7 @@ declare const _default: {
283
274
  fk_reference: string;
284
275
  pk: boolean;
285
276
  }[];
286
- fathers: {
277
+ childrens: {
287
278
  name: string;
288
279
  value: {
289
280
  type: string;
@@ -294,7 +285,6 @@ declare const _default: {
294
285
  fk_reference: string;
295
286
  pk: boolean;
296
287
  }[];
297
- childrens: never[];
298
288
  name: string;
299
289
  };
300
290
  operacao_item: {
@@ -333,7 +323,7 @@ declare const _default: {
333
323
  childrens: never[];
334
324
  name: string;
335
325
  };
336
- entidade_cartao: {
326
+ atributo: {
337
327
  columns: ({
338
328
  name: string;
339
329
  value: {
@@ -355,17 +345,7 @@ declare const _default: {
355
345
  fk_reference: null;
356
346
  pk: boolean;
357
347
  })[];
358
- fathers: {
359
- name: string;
360
- value: {
361
- type: string;
362
- is_null: string;
363
- maxlength: null;
364
- };
365
- fk_table: string;
366
- fk_reference: string;
367
- pk: boolean;
368
- }[];
348
+ fathers: never[];
369
349
  childrens: {
370
350
  name: string;
371
351
  value: {
@@ -379,7 +359,7 @@ declare const _default: {
379
359
  }[];
380
360
  name: string;
381
361
  };
382
- empresa: {
362
+ entidade_cartao: {
383
363
  columns: ({
384
364
  name: string;
385
365
  value: {
@@ -401,12 +381,7 @@ declare const _default: {
401
381
  fk_reference: null;
402
382
  pk: boolean;
403
383
  })[];
404
- fathers: never[];
405
- childrens: never[];
406
- name: string;
407
- };
408
- atributo: {
409
- columns: ({
384
+ fathers: {
410
385
  name: string;
411
386
  value: {
412
387
  type: string;
@@ -416,19 +391,33 @@ declare const _default: {
416
391
  fk_table: string;
417
392
  fk_reference: string;
418
393
  pk: boolean;
419
- } | {
394
+ }[];
395
+ childrens: {
420
396
  name: string;
421
397
  value: {
422
398
  type: string;
423
399
  is_null: string;
424
400
  maxlength: null;
425
401
  };
426
- fk_table: null;
427
- fk_reference: null;
402
+ fk_table: string;
403
+ fk_reference: string;
428
404
  pk: boolean;
429
- })[];
430
- fathers: never[];
431
- childrens: {
405
+ }[];
406
+ name: string;
407
+ };
408
+ item_variacao_atributo: {
409
+ columns: {
410
+ name: string;
411
+ value: {
412
+ type: string;
413
+ is_null: string;
414
+ maxlength: null;
415
+ };
416
+ fk_table: string;
417
+ fk_reference: string;
418
+ pk: boolean;
419
+ }[];
420
+ fathers: {
432
421
  name: string;
433
422
  value: {
434
423
  type: string;
@@ -439,6 +428,7 @@ declare const _default: {
439
428
  fk_reference: string;
440
429
  pk: boolean;
441
430
  }[];
431
+ childrens: never[];
442
432
  name: string;
443
433
  };
444
434
  entidade_endereco: {
@@ -487,7 +477,7 @@ declare const _default: {
487
477
  }[];
488
478
  name: string;
489
479
  };
490
- marca: {
480
+ operacao: {
491
481
  columns: ({
492
482
  name: string;
493
483
  value: {
@@ -509,7 +499,17 @@ declare const _default: {
509
499
  fk_reference: null;
510
500
  pk: boolean;
511
501
  })[];
512
- fathers: never[];
502
+ fathers: {
503
+ name: string;
504
+ value: {
505
+ type: string;
506
+ is_null: string;
507
+ maxlength: null;
508
+ };
509
+ fk_table: string;
510
+ fk_reference: string;
511
+ pk: boolean;
512
+ }[];
513
513
  childrens: {
514
514
  name: string;
515
515
  value: {
@@ -523,7 +523,7 @@ declare const _default: {
523
523
  }[];
524
524
  name: string;
525
525
  };
526
- entidade: {
526
+ marca: {
527
527
  columns: ({
528
528
  name: string;
529
529
  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 operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
7
6
  const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
8
7
  const item_variacao_1 = __importDefault(require("./item_variacao"));
8
+ const empresa_1 = __importDefault(require("./empresa"));
9
+ const categoria_1 = __importDefault(require("./categoria"));
9
10
  const usuario_1 = __importDefault(require("./usuario"));
10
- const operacao_1 = __importDefault(require("./operacao"));
11
+ const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
12
+ const entidade_1 = __importDefault(require("./entidade"));
11
13
  const item_1 = __importDefault(require("./item"));
12
- const categoria_1 = __importDefault(require("./categoria"));
13
- const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
14
14
  const operacao_item_1 = __importDefault(require("./operacao_item"));
15
- const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
16
- const empresa_1 = __importDefault(require("./empresa"));
17
15
  const atributo_1 = __importDefault(require("./atributo"));
16
+ const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
17
+ const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
18
18
  const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
19
+ const operacao_1 = __importDefault(require("./operacao"));
19
20
  const marca_1 = __importDefault(require("./marca"));
20
- const entidade_1 = __importDefault(require("./entidade"));
21
21
  exports.default = {
22
- operacao_pagamento: operacao_pagamento_1.default,
23
22
  item_variacao_imagem: item_variacao_imagem_1.default,
24
23
  item_variacao: item_variacao_1.default,
24
+ empresa: empresa_1.default,
25
+ categoria: categoria_1.default,
25
26
  usuario: usuario_1.default,
26
- operacao: operacao_1.default,
27
+ operacao_pagamento: operacao_pagamento_1.default,
28
+ entidade: entidade_1.default,
27
29
  item: item_1.default,
28
- categoria: categoria_1.default,
29
- item_variacao_atributo: item_variacao_atributo_1.default,
30
30
  operacao_item: operacao_item_1.default,
31
- entidade_cartao: entidade_cartao_1.default,
32
- empresa: empresa_1.default,
33
31
  atributo: atributo_1.default,
32
+ entidade_cartao: entidade_cartao_1.default,
33
+ item_variacao_atributo: item_variacao_atributo_1.default,
34
34
  entidade_endereco: entidade_endereco_1.default,
35
- marca: marca_1.default,
36
- entidade: entidade_1.default
35
+ operacao: operacao_1.default,
36
+ marca: marca_1.default
37
37
  };
@@ -276,6 +276,193 @@ exports.default = {
276
276
  "fk_table": null,
277
277
  "fk_reference": null,
278
278
  "pk": false
279
+ },
280
+ {
281
+ "name": "data_hora_finalizacao",
282
+ "value": {
283
+ "type": "timestamp without time zone",
284
+ "is_null": "YES",
285
+ "maxlength": null
286
+ },
287
+ "fk_table": null,
288
+ "fk_reference": null,
289
+ "pk": false
290
+ },
291
+ {
292
+ "name": "v_total",
293
+ "value": {
294
+ "type": "numeric",
295
+ "is_null": "YES",
296
+ "maxlength": null
297
+ },
298
+ "fk_table": null,
299
+ "fk_reference": null,
300
+ "pk": false
301
+ },
302
+ {
303
+ "name": "v_desconto",
304
+ "value": {
305
+ "type": "numeric",
306
+ "is_null": "YES",
307
+ "maxlength": null
308
+ },
309
+ "fk_table": null,
310
+ "fk_reference": null,
311
+ "pk": false
312
+ },
313
+ {
314
+ "name": "v_frete",
315
+ "value": {
316
+ "type": "numeric",
317
+ "is_null": "YES",
318
+ "maxlength": null
319
+ },
320
+ "fk_table": null,
321
+ "fk_reference": null,
322
+ "pk": false
323
+ },
324
+ {
325
+ "name": "v_seguro",
326
+ "value": {
327
+ "type": "numeric",
328
+ "is_null": "YES",
329
+ "maxlength": null
330
+ },
331
+ "fk_table": null,
332
+ "fk_reference": null,
333
+ "pk": false
334
+ },
335
+ {
336
+ "name": "v_outros",
337
+ "value": {
338
+ "type": "numeric",
339
+ "is_null": "YES",
340
+ "maxlength": null
341
+ },
342
+ "fk_table": null,
343
+ "fk_reference": null,
344
+ "pk": false
345
+ },
346
+ {
347
+ "name": "v_icms",
348
+ "value": {
349
+ "type": "numeric",
350
+ "is_null": "YES",
351
+ "maxlength": null
352
+ },
353
+ "fk_table": null,
354
+ "fk_reference": null,
355
+ "pk": false
356
+ },
357
+ {
358
+ "name": "v_icms_st",
359
+ "value": {
360
+ "type": "numeric",
361
+ "is_null": "YES",
362
+ "maxlength": null
363
+ },
364
+ "fk_table": null,
365
+ "fk_reference": null,
366
+ "pk": false
367
+ },
368
+ {
369
+ "name": "v_ipi",
370
+ "value": {
371
+ "type": "numeric",
372
+ "is_null": "YES",
373
+ "maxlength": null
374
+ },
375
+ "fk_table": null,
376
+ "fk_reference": null,
377
+ "pk": false
378
+ },
379
+ {
380
+ "name": "v_pis",
381
+ "value": {
382
+ "type": "numeric",
383
+ "is_null": "YES",
384
+ "maxlength": null
385
+ },
386
+ "fk_table": null,
387
+ "fk_reference": null,
388
+ "pk": false
389
+ },
390
+ {
391
+ "name": "v_cofins",
392
+ "value": {
393
+ "type": "numeric",
394
+ "is_null": "YES",
395
+ "maxlength": null
396
+ },
397
+ "fk_table": null,
398
+ "fk_reference": null,
399
+ "pk": false
400
+ },
401
+ {
402
+ "name": "v_ii",
403
+ "value": {
404
+ "type": "numeric",
405
+ "is_null": "YES",
406
+ "maxlength": null
407
+ },
408
+ "fk_table": null,
409
+ "fk_reference": null,
410
+ "pk": false
411
+ },
412
+ {
413
+ "name": "v_fcp",
414
+ "value": {
415
+ "type": "numeric",
416
+ "is_null": "YES",
417
+ "maxlength": null
418
+ },
419
+ "fk_table": null,
420
+ "fk_reference": null,
421
+ "pk": false
422
+ },
423
+ {
424
+ "name": "v_difal_dest",
425
+ "value": {
426
+ "type": "numeric",
427
+ "is_null": "YES",
428
+ "maxlength": null
429
+ },
430
+ "fk_table": null,
431
+ "fk_reference": null,
432
+ "pk": false
433
+ },
434
+ {
435
+ "name": "v_difal_rem",
436
+ "value": {
437
+ "type": "numeric",
438
+ "is_null": "YES",
439
+ "maxlength": null
440
+ },
441
+ "fk_table": null,
442
+ "fk_reference": null,
443
+ "pk": false
444
+ },
445
+ {
446
+ "name": "v_tributos_total",
447
+ "value": {
448
+ "type": "numeric",
449
+ "is_null": "YES",
450
+ "maxlength": null
451
+ },
452
+ "fk_table": null,
453
+ "fk_reference": null,
454
+ "pk": false
455
+ },
456
+ {
457
+ "name": "xml_original",
458
+ "value": {
459
+ "type": "numeric",
460
+ "is_null": "YES",
461
+ "maxlength": null
462
+ },
463
+ "fk_table": null,
464
+ "fk_reference": null,
465
+ "pk": false
279
466
  }
280
467
  ],
281
468
  "fathers": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-manipulator",
3
- "version": "1.0.63",
3
+ "version": "1.0.65",
4
4
  "description": "postgresql database handler",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",