pg-manipulator 1.0.49 → 1.0.50
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/@types/admin/empresa_fields.d.ts +8 -0
- package/dist/@types/admin/empresa_order.d.ts +8 -0
- package/dist/@types/admin/empresa_select.d.ts +8 -0
- package/dist/@types/admin/empresa_update.d.ts +8 -0
- package/dist/@types/admin/empresa_where.d.ts +8 -0
- package/dist/class/admin/index.d.ts +24 -24
- package/dist/class/admin/index.js +24 -24
- package/dist/mapping/admin/empresa.js +88 -0
- package/dist/mapping/admin/entidade.js +4 -4
- package/dist/mapping/admin/index.d.ts +88 -88
- package/dist/mapping/admin/index.js +24 -24
- package/package.json +1 -1
|
@@ -30,4 +30,12 @@ export type empresa_fields = {
|
|
|
30
30
|
pagarme_sk?: string;
|
|
31
31
|
pagarme_pk?: string;
|
|
32
32
|
nfeio_sk?: string;
|
|
33
|
+
whatsapp?: string;
|
|
34
|
+
instagram?: string;
|
|
35
|
+
facebook?: string;
|
|
36
|
+
tiktok?: string;
|
|
37
|
+
logo?: string;
|
|
38
|
+
favicon?: string;
|
|
39
|
+
politica?: string;
|
|
40
|
+
termos?: string;
|
|
33
41
|
};
|
|
@@ -30,4 +30,12 @@ export type empresa_order = {
|
|
|
30
30
|
pagarme_sk?: 'desc' | 'asc';
|
|
31
31
|
pagarme_pk?: 'desc' | 'asc';
|
|
32
32
|
nfeio_sk?: 'desc' | 'asc';
|
|
33
|
+
whatsapp?: 'desc' | 'asc';
|
|
34
|
+
instagram?: 'desc' | 'asc';
|
|
35
|
+
facebook?: 'desc' | 'asc';
|
|
36
|
+
tiktok?: 'desc' | 'asc';
|
|
37
|
+
logo?: 'desc' | 'asc';
|
|
38
|
+
favicon?: 'desc' | 'asc';
|
|
39
|
+
politica?: 'desc' | 'asc';
|
|
40
|
+
termos?: 'desc' | 'asc';
|
|
33
41
|
};
|
|
@@ -32,6 +32,14 @@ export type empresa_select = {
|
|
|
32
32
|
pagarme_sk?: string;
|
|
33
33
|
pagarme_pk?: string;
|
|
34
34
|
nfeio_sk?: string;
|
|
35
|
+
whatsapp?: string;
|
|
36
|
+
instagram?: string;
|
|
37
|
+
facebook?: string;
|
|
38
|
+
tiktok?: string;
|
|
39
|
+
logo?: string;
|
|
40
|
+
favicon?: string;
|
|
41
|
+
politica?: string;
|
|
42
|
+
termos?: string;
|
|
35
43
|
where: empresa_where;
|
|
36
44
|
order?: empresa_order;
|
|
37
45
|
};
|
|
@@ -31,5 +31,13 @@ export type empresa_update = {
|
|
|
31
31
|
pagarme_sk?: string;
|
|
32
32
|
pagarme_pk?: string;
|
|
33
33
|
nfeio_sk?: string;
|
|
34
|
+
whatsapp?: string;
|
|
35
|
+
instagram?: string;
|
|
36
|
+
facebook?: string;
|
|
37
|
+
tiktok?: string;
|
|
38
|
+
logo?: string;
|
|
39
|
+
favicon?: string;
|
|
40
|
+
politica?: string;
|
|
41
|
+
termos?: string;
|
|
34
42
|
where: empresa_where;
|
|
35
43
|
};
|
|
@@ -31,4 +31,12 @@ export type empresa_where = {
|
|
|
31
31
|
pagarme_sk?: where_string | string;
|
|
32
32
|
pagarme_pk?: where_string | string;
|
|
33
33
|
nfeio_sk?: where_string | string;
|
|
34
|
+
whatsapp?: where_string | string;
|
|
35
|
+
instagram?: where_string | string;
|
|
36
|
+
facebook?: where_string | string;
|
|
37
|
+
tiktok?: where_string | string;
|
|
38
|
+
logo?: where_string | string;
|
|
39
|
+
favicon?: where_string | string;
|
|
40
|
+
politica?: where_string | string;
|
|
41
|
+
termos?: where_string | string;
|
|
34
42
|
};
|
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
import { PoolClient } from 'pg';
|
|
2
2
|
import { pool_tsx } from '../../@types';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
3
|
+
import atributo from './atributo';
|
|
4
|
+
import operacao_pagamento from './operacao_pagamento';
|
|
5
|
+
import entidade_cartao from './entidade_cartao';
|
|
6
|
+
import entidade_endereco from './entidade_endereco';
|
|
7
|
+
import operacao_item from './operacao_item';
|
|
8
|
+
import item_variacao_atributo from './item_variacao_atributo';
|
|
5
9
|
import empresa from './empresa';
|
|
10
|
+
import item from './item';
|
|
6
11
|
import entidade from './entidade';
|
|
7
12
|
import categoria from './categoria';
|
|
8
|
-
import entidade_endereco from './entidade_endereco';
|
|
9
|
-
import item_variacao_imagem from './item_variacao_imagem';
|
|
10
|
-
import marca from './marca';
|
|
11
|
-
import usuario from './usuario';
|
|
12
|
-
import operacao_item from './operacao_item';
|
|
13
|
-
import entidade_cartao from './entidade_cartao';
|
|
14
|
-
import ecommerce_item from './ecommerce_item';
|
|
15
|
-
import operacao_pagamento from './operacao_pagamento';
|
|
16
|
-
import atributo from './atributo';
|
|
17
13
|
import item_variacao from './item_variacao';
|
|
18
|
-
import
|
|
14
|
+
import ecommerce from './ecommerce';
|
|
15
|
+
import usuario from './usuario';
|
|
16
|
+
import marca from './marca';
|
|
19
17
|
import operacao from './operacao';
|
|
18
|
+
import ecommerce_item from './ecommerce_item';
|
|
19
|
+
import item_variacao_imagem from './item_variacao_imagem';
|
|
20
20
|
declare const _default: {
|
|
21
21
|
query(query_string: string, query_params: Array<any>, transaction?: PoolClient | any): Promise<any>;
|
|
22
22
|
transaction(callback: pool_tsx): Promise<void>;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
atributo: typeof atributo;
|
|
24
|
+
operacao_pagamento: typeof operacao_pagamento;
|
|
25
|
+
entidade_cartao: typeof entidade_cartao;
|
|
26
|
+
entidade_endereco: typeof entidade_endereco;
|
|
27
|
+
operacao_item: typeof operacao_item;
|
|
28
|
+
item_variacao_atributo: typeof item_variacao_atributo;
|
|
25
29
|
empresa: typeof empresa;
|
|
30
|
+
item: typeof item;
|
|
26
31
|
entidade: typeof entidade;
|
|
27
32
|
categoria: typeof categoria;
|
|
28
|
-
entidade_endereco: typeof entidade_endereco;
|
|
29
|
-
item_variacao_imagem: typeof item_variacao_imagem;
|
|
30
|
-
marca: typeof marca;
|
|
31
|
-
usuario: typeof usuario;
|
|
32
|
-
operacao_item: typeof operacao_item;
|
|
33
|
-
entidade_cartao: typeof entidade_cartao;
|
|
34
|
-
ecommerce_item: typeof ecommerce_item;
|
|
35
|
-
operacao_pagamento: typeof operacao_pagamento;
|
|
36
|
-
atributo: typeof atributo;
|
|
37
33
|
item_variacao: typeof item_variacao;
|
|
38
|
-
|
|
34
|
+
ecommerce: typeof ecommerce;
|
|
35
|
+
usuario: typeof usuario;
|
|
36
|
+
marca: typeof marca;
|
|
39
37
|
operacao: typeof operacao;
|
|
38
|
+
ecommerce_item: typeof ecommerce_item;
|
|
39
|
+
item_variacao_imagem: typeof item_variacao_imagem;
|
|
40
40
|
};
|
|
41
41
|
export default _default;
|
|
@@ -4,23 +4,23 @@ 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
|
|
8
|
-
const
|
|
7
|
+
const atributo_1 = __importDefault(require("./atributo"));
|
|
8
|
+
const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
|
|
9
|
+
const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
|
|
10
|
+
const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
|
|
11
|
+
const operacao_item_1 = __importDefault(require("./operacao_item"));
|
|
12
|
+
const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
|
|
9
13
|
const empresa_1 = __importDefault(require("./empresa"));
|
|
14
|
+
const item_1 = __importDefault(require("./item"));
|
|
10
15
|
const entidade_1 = __importDefault(require("./entidade"));
|
|
11
16
|
const categoria_1 = __importDefault(require("./categoria"));
|
|
12
|
-
const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
|
|
13
|
-
const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
|
|
14
|
-
const marca_1 = __importDefault(require("./marca"));
|
|
15
|
-
const usuario_1 = __importDefault(require("./usuario"));
|
|
16
|
-
const operacao_item_1 = __importDefault(require("./operacao_item"));
|
|
17
|
-
const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
|
|
18
|
-
const ecommerce_item_1 = __importDefault(require("./ecommerce_item"));
|
|
19
|
-
const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
|
|
20
|
-
const atributo_1 = __importDefault(require("./atributo"));
|
|
21
17
|
const item_variacao_1 = __importDefault(require("./item_variacao"));
|
|
22
|
-
const
|
|
18
|
+
const ecommerce_1 = __importDefault(require("./ecommerce"));
|
|
19
|
+
const usuario_1 = __importDefault(require("./usuario"));
|
|
20
|
+
const marca_1 = __importDefault(require("./marca"));
|
|
23
21
|
const operacao_1 = __importDefault(require("./operacao"));
|
|
22
|
+
const ecommerce_item_1 = __importDefault(require("./ecommerce_item"));
|
|
23
|
+
const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
|
|
24
24
|
exports.default = {
|
|
25
25
|
async query(query_string, query_params, transaction = undefined) {
|
|
26
26
|
return await database_1.default.query('admin', query_string, query_params, transaction);
|
|
@@ -28,21 +28,21 @@ exports.default = {
|
|
|
28
28
|
async transaction(callback) {
|
|
29
29
|
return await database_1.default.transaction('admin', callback);
|
|
30
30
|
},
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
atributo: atributo_1.default,
|
|
32
|
+
operacao_pagamento: operacao_pagamento_1.default,
|
|
33
|
+
entidade_cartao: entidade_cartao_1.default,
|
|
34
|
+
entidade_endereco: entidade_endereco_1.default,
|
|
35
|
+
operacao_item: operacao_item_1.default,
|
|
36
|
+
item_variacao_atributo: item_variacao_atributo_1.default,
|
|
33
37
|
empresa: empresa_1.default,
|
|
38
|
+
item: item_1.default,
|
|
34
39
|
entidade: entidade_1.default,
|
|
35
40
|
categoria: categoria_1.default,
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
marca: marca_1.default,
|
|
41
|
+
item_variacao: item_variacao_1.default,
|
|
42
|
+
ecommerce: ecommerce_1.default,
|
|
39
43
|
usuario: usuario_1.default,
|
|
40
|
-
|
|
41
|
-
|
|
44
|
+
marca: marca_1.default,
|
|
45
|
+
operacao: operacao_1.default,
|
|
42
46
|
ecommerce_item: ecommerce_item_1.default,
|
|
43
|
-
|
|
44
|
-
atributo: atributo_1.default,
|
|
45
|
-
item_variacao: item_variacao_1.default,
|
|
46
|
-
item_variacao_atributo: item_variacao_atributo_1.default,
|
|
47
|
-
operacao: operacao_1.default
|
|
47
|
+
item_variacao_imagem: item_variacao_imagem_1.default
|
|
48
48
|
};
|
|
@@ -342,6 +342,94 @@ exports.default = {
|
|
|
342
342
|
"fk_table": null,
|
|
343
343
|
"fk_reference": null,
|
|
344
344
|
"pk": false
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "whatsapp",
|
|
348
|
+
"value": {
|
|
349
|
+
"type": "character varying",
|
|
350
|
+
"is_null": "YES",
|
|
351
|
+
"maxlength": null
|
|
352
|
+
},
|
|
353
|
+
"fk_table": null,
|
|
354
|
+
"fk_reference": null,
|
|
355
|
+
"pk": false
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"name": "instagram",
|
|
359
|
+
"value": {
|
|
360
|
+
"type": "text",
|
|
361
|
+
"is_null": "YES",
|
|
362
|
+
"maxlength": null
|
|
363
|
+
},
|
|
364
|
+
"fk_table": null,
|
|
365
|
+
"fk_reference": null,
|
|
366
|
+
"pk": false
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "facebook",
|
|
370
|
+
"value": {
|
|
371
|
+
"type": "text",
|
|
372
|
+
"is_null": "YES",
|
|
373
|
+
"maxlength": null
|
|
374
|
+
},
|
|
375
|
+
"fk_table": null,
|
|
376
|
+
"fk_reference": null,
|
|
377
|
+
"pk": false
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "tiktok",
|
|
381
|
+
"value": {
|
|
382
|
+
"type": "text",
|
|
383
|
+
"is_null": "YES",
|
|
384
|
+
"maxlength": null
|
|
385
|
+
},
|
|
386
|
+
"fk_table": null,
|
|
387
|
+
"fk_reference": null,
|
|
388
|
+
"pk": false
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "logo",
|
|
392
|
+
"value": {
|
|
393
|
+
"type": "text",
|
|
394
|
+
"is_null": "YES",
|
|
395
|
+
"maxlength": null
|
|
396
|
+
},
|
|
397
|
+
"fk_table": null,
|
|
398
|
+
"fk_reference": null,
|
|
399
|
+
"pk": false
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"name": "favicon",
|
|
403
|
+
"value": {
|
|
404
|
+
"type": "text",
|
|
405
|
+
"is_null": "YES",
|
|
406
|
+
"maxlength": null
|
|
407
|
+
},
|
|
408
|
+
"fk_table": null,
|
|
409
|
+
"fk_reference": null,
|
|
410
|
+
"pk": false
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "politica",
|
|
414
|
+
"value": {
|
|
415
|
+
"type": "text",
|
|
416
|
+
"is_null": "YES",
|
|
417
|
+
"maxlength": null
|
|
418
|
+
},
|
|
419
|
+
"fk_table": null,
|
|
420
|
+
"fk_reference": null,
|
|
421
|
+
"pk": false
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"name": "termos",
|
|
425
|
+
"value": {
|
|
426
|
+
"type": "text",
|
|
427
|
+
"is_null": "YES",
|
|
428
|
+
"maxlength": null
|
|
429
|
+
},
|
|
430
|
+
"fk_table": null,
|
|
431
|
+
"fk_reference": null,
|
|
432
|
+
"pk": false
|
|
345
433
|
}
|
|
346
434
|
],
|
|
347
435
|
"fathers": [],
|
|
@@ -127,10 +127,10 @@ exports.default = {
|
|
|
127
127
|
"pk": false
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
|
-
"name": "
|
|
130
|
+
"name": "transportadora",
|
|
131
131
|
"value": {
|
|
132
132
|
"type": "integer",
|
|
133
|
-
"is_null": "
|
|
133
|
+
"is_null": "YES",
|
|
134
134
|
"maxlength": null
|
|
135
135
|
},
|
|
136
136
|
"fk_table": "entidade",
|
|
@@ -138,10 +138,10 @@ exports.default = {
|
|
|
138
138
|
"pk": false
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
|
-
"name": "
|
|
141
|
+
"name": "id_entidade",
|
|
142
142
|
"value": {
|
|
143
143
|
"type": "integer",
|
|
144
|
-
"is_null": "
|
|
144
|
+
"is_null": "NO",
|
|
145
145
|
"maxlength": null
|
|
146
146
|
},
|
|
147
147
|
"fk_table": "entidade",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
|
|
2
|
+
atributo: {
|
|
3
3
|
columns: ({
|
|
4
4
|
name: string;
|
|
5
5
|
value: {
|
|
@@ -21,17 +21,7 @@ declare const _default: {
|
|
|
21
21
|
fk_reference: null;
|
|
22
22
|
pk: boolean;
|
|
23
23
|
})[];
|
|
24
|
-
fathers:
|
|
25
|
-
name: string;
|
|
26
|
-
value: {
|
|
27
|
-
type: string;
|
|
28
|
-
is_null: string;
|
|
29
|
-
maxlength: null;
|
|
30
|
-
};
|
|
31
|
-
fk_table: string;
|
|
32
|
-
fk_reference: string;
|
|
33
|
-
pk: boolean;
|
|
34
|
-
}[];
|
|
24
|
+
fathers: never[];
|
|
35
25
|
childrens: {
|
|
36
26
|
name: string;
|
|
37
27
|
value: {
|
|
@@ -45,7 +35,7 @@ declare const _default: {
|
|
|
45
35
|
}[];
|
|
46
36
|
name: string;
|
|
47
37
|
};
|
|
48
|
-
|
|
38
|
+
operacao_pagamento: {
|
|
49
39
|
columns: ({
|
|
50
40
|
name: string;
|
|
51
41
|
value: {
|
|
@@ -78,20 +68,10 @@ declare const _default: {
|
|
|
78
68
|
fk_reference: string;
|
|
79
69
|
pk: boolean;
|
|
80
70
|
}[];
|
|
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
|
-
}[];
|
|
71
|
+
childrens: never[];
|
|
92
72
|
name: string;
|
|
93
73
|
};
|
|
94
|
-
|
|
74
|
+
entidade_cartao: {
|
|
95
75
|
columns: ({
|
|
96
76
|
name: string;
|
|
97
77
|
value: {
|
|
@@ -113,8 +93,7 @@ declare const _default: {
|
|
|
113
93
|
fk_reference: null;
|
|
114
94
|
pk: boolean;
|
|
115
95
|
})[];
|
|
116
|
-
fathers:
|
|
117
|
-
childrens: {
|
|
96
|
+
fathers: {
|
|
118
97
|
name: string;
|
|
119
98
|
value: {
|
|
120
99
|
type: string;
|
|
@@ -125,9 +104,10 @@ declare const _default: {
|
|
|
125
104
|
fk_reference: string;
|
|
126
105
|
pk: boolean;
|
|
127
106
|
}[];
|
|
107
|
+
childrens: never[];
|
|
128
108
|
name: string;
|
|
129
109
|
};
|
|
130
|
-
|
|
110
|
+
entidade_endereco: {
|
|
131
111
|
columns: ({
|
|
132
112
|
name: string;
|
|
133
113
|
value: {
|
|
@@ -149,8 +129,7 @@ declare const _default: {
|
|
|
149
129
|
fk_reference: null;
|
|
150
130
|
pk: boolean;
|
|
151
131
|
})[];
|
|
152
|
-
fathers:
|
|
153
|
-
childrens: {
|
|
132
|
+
fathers: {
|
|
154
133
|
name: string;
|
|
155
134
|
value: {
|
|
156
135
|
type: string;
|
|
@@ -161,9 +140,10 @@ declare const _default: {
|
|
|
161
140
|
fk_reference: string;
|
|
162
141
|
pk: boolean;
|
|
163
142
|
}[];
|
|
143
|
+
childrens: never[];
|
|
164
144
|
name: string;
|
|
165
145
|
};
|
|
166
|
-
|
|
146
|
+
operacao_item: {
|
|
167
147
|
columns: ({
|
|
168
148
|
name: string;
|
|
169
149
|
value: {
|
|
@@ -185,8 +165,7 @@ declare const _default: {
|
|
|
185
165
|
fk_reference: null;
|
|
186
166
|
pk: boolean;
|
|
187
167
|
})[];
|
|
188
|
-
fathers:
|
|
189
|
-
childrens: {
|
|
168
|
+
fathers: {
|
|
190
169
|
name: string;
|
|
191
170
|
value: {
|
|
192
171
|
type: string;
|
|
@@ -197,9 +176,36 @@ declare const _default: {
|
|
|
197
176
|
fk_reference: string;
|
|
198
177
|
pk: boolean;
|
|
199
178
|
}[];
|
|
179
|
+
childrens: never[];
|
|
200
180
|
name: string;
|
|
201
181
|
};
|
|
202
|
-
|
|
182
|
+
item_variacao_atributo: {
|
|
183
|
+
columns: {
|
|
184
|
+
name: string;
|
|
185
|
+
value: {
|
|
186
|
+
type: string;
|
|
187
|
+
is_null: string;
|
|
188
|
+
maxlength: null;
|
|
189
|
+
};
|
|
190
|
+
fk_table: string;
|
|
191
|
+
fk_reference: string;
|
|
192
|
+
pk: boolean;
|
|
193
|
+
}[];
|
|
194
|
+
fathers: {
|
|
195
|
+
name: string;
|
|
196
|
+
value: {
|
|
197
|
+
type: string;
|
|
198
|
+
is_null: string;
|
|
199
|
+
maxlength: null;
|
|
200
|
+
};
|
|
201
|
+
fk_table: string;
|
|
202
|
+
fk_reference: string;
|
|
203
|
+
pk: boolean;
|
|
204
|
+
}[];
|
|
205
|
+
childrens: never[];
|
|
206
|
+
name: string;
|
|
207
|
+
};
|
|
208
|
+
empresa: {
|
|
203
209
|
columns: ({
|
|
204
210
|
name: string;
|
|
205
211
|
value: {
|
|
@@ -221,7 +227,8 @@ declare const _default: {
|
|
|
221
227
|
fk_reference: null;
|
|
222
228
|
pk: boolean;
|
|
223
229
|
})[];
|
|
224
|
-
fathers:
|
|
230
|
+
fathers: never[];
|
|
231
|
+
childrens: {
|
|
225
232
|
name: string;
|
|
226
233
|
value: {
|
|
227
234
|
type: string;
|
|
@@ -232,10 +239,9 @@ declare const _default: {
|
|
|
232
239
|
fk_reference: string;
|
|
233
240
|
pk: boolean;
|
|
234
241
|
}[];
|
|
235
|
-
childrens: never[];
|
|
236
242
|
name: string;
|
|
237
243
|
};
|
|
238
|
-
|
|
244
|
+
item: {
|
|
239
245
|
columns: ({
|
|
240
246
|
name: string;
|
|
241
247
|
value: {
|
|
@@ -268,10 +274,20 @@ declare const _default: {
|
|
|
268
274
|
fk_reference: string;
|
|
269
275
|
pk: boolean;
|
|
270
276
|
}[];
|
|
271
|
-
childrens:
|
|
277
|
+
childrens: {
|
|
278
|
+
name: string;
|
|
279
|
+
value: {
|
|
280
|
+
type: string;
|
|
281
|
+
is_null: string;
|
|
282
|
+
maxlength: null;
|
|
283
|
+
};
|
|
284
|
+
fk_table: string;
|
|
285
|
+
fk_reference: string;
|
|
286
|
+
pk: boolean;
|
|
287
|
+
}[];
|
|
272
288
|
name: string;
|
|
273
289
|
};
|
|
274
|
-
|
|
290
|
+
entidade: {
|
|
275
291
|
columns: ({
|
|
276
292
|
name: string;
|
|
277
293
|
value: {
|
|
@@ -307,7 +323,7 @@ declare const _default: {
|
|
|
307
323
|
}[];
|
|
308
324
|
name: string;
|
|
309
325
|
};
|
|
310
|
-
|
|
326
|
+
categoria: {
|
|
311
327
|
columns: ({
|
|
312
328
|
name: string;
|
|
313
329
|
value: {
|
|
@@ -330,10 +346,20 @@ declare const _default: {
|
|
|
330
346
|
pk: boolean;
|
|
331
347
|
})[];
|
|
332
348
|
fathers: never[];
|
|
333
|
-
childrens:
|
|
349
|
+
childrens: {
|
|
350
|
+
name: string;
|
|
351
|
+
value: {
|
|
352
|
+
type: string;
|
|
353
|
+
is_null: string;
|
|
354
|
+
maxlength: null;
|
|
355
|
+
};
|
|
356
|
+
fk_table: string;
|
|
357
|
+
fk_reference: string;
|
|
358
|
+
pk: boolean;
|
|
359
|
+
}[];
|
|
334
360
|
name: string;
|
|
335
361
|
};
|
|
336
|
-
|
|
362
|
+
item_variacao: {
|
|
337
363
|
columns: ({
|
|
338
364
|
name: string;
|
|
339
365
|
value: {
|
|
@@ -366,10 +392,20 @@ declare const _default: {
|
|
|
366
392
|
fk_reference: string;
|
|
367
393
|
pk: boolean;
|
|
368
394
|
}[];
|
|
369
|
-
childrens:
|
|
395
|
+
childrens: {
|
|
396
|
+
name: string;
|
|
397
|
+
value: {
|
|
398
|
+
type: string;
|
|
399
|
+
is_null: string;
|
|
400
|
+
maxlength: null;
|
|
401
|
+
};
|
|
402
|
+
fk_table: string;
|
|
403
|
+
fk_reference: string;
|
|
404
|
+
pk: boolean;
|
|
405
|
+
}[];
|
|
370
406
|
name: string;
|
|
371
407
|
};
|
|
372
|
-
|
|
408
|
+
ecommerce: {
|
|
373
409
|
columns: ({
|
|
374
410
|
name: string;
|
|
375
411
|
value: {
|
|
@@ -402,22 +438,7 @@ declare const _default: {
|
|
|
402
438
|
fk_reference: string;
|
|
403
439
|
pk: boolean;
|
|
404
440
|
}[];
|
|
405
|
-
childrens:
|
|
406
|
-
name: string;
|
|
407
|
-
};
|
|
408
|
-
ecommerce_item: {
|
|
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: {
|
|
441
|
+
childrens: {
|
|
421
442
|
name: string;
|
|
422
443
|
value: {
|
|
423
444
|
type: string;
|
|
@@ -428,10 +449,9 @@ declare const _default: {
|
|
|
428
449
|
fk_reference: string;
|
|
429
450
|
pk: boolean;
|
|
430
451
|
}[];
|
|
431
|
-
childrens: never[];
|
|
432
452
|
name: string;
|
|
433
453
|
};
|
|
434
|
-
|
|
454
|
+
usuario: {
|
|
435
455
|
columns: ({
|
|
436
456
|
name: string;
|
|
437
457
|
value: {
|
|
@@ -453,21 +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
|
-
}[];
|
|
476
|
+
fathers: never[];
|
|
467
477
|
childrens: never[];
|
|
468
478
|
name: string;
|
|
469
479
|
};
|
|
470
|
-
|
|
480
|
+
marca: {
|
|
471
481
|
columns: ({
|
|
472
482
|
name: string;
|
|
473
483
|
value: {
|
|
@@ -503,7 +513,7 @@ declare const _default: {
|
|
|
503
513
|
}[];
|
|
504
514
|
name: string;
|
|
505
515
|
};
|
|
506
|
-
|
|
516
|
+
operacao: {
|
|
507
517
|
columns: ({
|
|
508
518
|
name: string;
|
|
509
519
|
value: {
|
|
@@ -549,7 +559,7 @@ declare const _default: {
|
|
|
549
559
|
}[];
|
|
550
560
|
name: string;
|
|
551
561
|
};
|
|
552
|
-
|
|
562
|
+
ecommerce_item: {
|
|
553
563
|
columns: {
|
|
554
564
|
name: string;
|
|
555
565
|
value: {
|
|
@@ -575,7 +585,7 @@ declare const _default: {
|
|
|
575
585
|
childrens: never[];
|
|
576
586
|
name: string;
|
|
577
587
|
};
|
|
578
|
-
|
|
588
|
+
item_variacao_imagem: {
|
|
579
589
|
columns: ({
|
|
580
590
|
name: string;
|
|
581
591
|
value: {
|
|
@@ -608,17 +618,7 @@ declare const _default: {
|
|
|
608
618
|
fk_reference: string;
|
|
609
619
|
pk: boolean;
|
|
610
620
|
}[];
|
|
611
|
-
childrens:
|
|
612
|
-
name: string;
|
|
613
|
-
value: {
|
|
614
|
-
type: string;
|
|
615
|
-
is_null: string;
|
|
616
|
-
maxlength: null;
|
|
617
|
-
};
|
|
618
|
-
fk_table: string;
|
|
619
|
-
fk_reference: string;
|
|
620
|
-
pk: boolean;
|
|
621
|
-
}[];
|
|
621
|
+
childrens: never[];
|
|
622
622
|
name: string;
|
|
623
623
|
};
|
|
624
624
|
};
|
|
@@ -3,39 +3,39 @@ 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
|
|
7
|
-
const
|
|
6
|
+
const atributo_1 = __importDefault(require("./atributo"));
|
|
7
|
+
const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
|
|
8
|
+
const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
|
|
9
|
+
const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
|
|
10
|
+
const operacao_item_1 = __importDefault(require("./operacao_item"));
|
|
11
|
+
const item_variacao_atributo_1 = __importDefault(require("./item_variacao_atributo"));
|
|
8
12
|
const empresa_1 = __importDefault(require("./empresa"));
|
|
13
|
+
const item_1 = __importDefault(require("./item"));
|
|
9
14
|
const entidade_1 = __importDefault(require("./entidade"));
|
|
10
15
|
const categoria_1 = __importDefault(require("./categoria"));
|
|
11
|
-
const entidade_endereco_1 = __importDefault(require("./entidade_endereco"));
|
|
12
|
-
const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
|
|
13
|
-
const marca_1 = __importDefault(require("./marca"));
|
|
14
|
-
const usuario_1 = __importDefault(require("./usuario"));
|
|
15
|
-
const operacao_item_1 = __importDefault(require("./operacao_item"));
|
|
16
|
-
const entidade_cartao_1 = __importDefault(require("./entidade_cartao"));
|
|
17
|
-
const ecommerce_item_1 = __importDefault(require("./ecommerce_item"));
|
|
18
|
-
const operacao_pagamento_1 = __importDefault(require("./operacao_pagamento"));
|
|
19
|
-
const atributo_1 = __importDefault(require("./atributo"));
|
|
20
16
|
const item_variacao_1 = __importDefault(require("./item_variacao"));
|
|
21
|
-
const
|
|
17
|
+
const ecommerce_1 = __importDefault(require("./ecommerce"));
|
|
18
|
+
const usuario_1 = __importDefault(require("./usuario"));
|
|
19
|
+
const marca_1 = __importDefault(require("./marca"));
|
|
22
20
|
const operacao_1 = __importDefault(require("./operacao"));
|
|
21
|
+
const ecommerce_item_1 = __importDefault(require("./ecommerce_item"));
|
|
22
|
+
const item_variacao_imagem_1 = __importDefault(require("./item_variacao_imagem"));
|
|
23
23
|
exports.default = {
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
atributo: atributo_1.default,
|
|
25
|
+
operacao_pagamento: operacao_pagamento_1.default,
|
|
26
|
+
entidade_cartao: entidade_cartao_1.default,
|
|
27
|
+
entidade_endereco: entidade_endereco_1.default,
|
|
28
|
+
operacao_item: operacao_item_1.default,
|
|
29
|
+
item_variacao_atributo: item_variacao_atributo_1.default,
|
|
26
30
|
empresa: empresa_1.default,
|
|
31
|
+
item: item_1.default,
|
|
27
32
|
entidade: entidade_1.default,
|
|
28
33
|
categoria: categoria_1.default,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
marca: marca_1.default,
|
|
34
|
+
item_variacao: item_variacao_1.default,
|
|
35
|
+
ecommerce: ecommerce_1.default,
|
|
32
36
|
usuario: usuario_1.default,
|
|
33
|
-
|
|
34
|
-
|
|
37
|
+
marca: marca_1.default,
|
|
38
|
+
operacao: operacao_1.default,
|
|
35
39
|
ecommerce_item: ecommerce_item_1.default,
|
|
36
|
-
|
|
37
|
-
atributo: atributo_1.default,
|
|
38
|
-
item_variacao: item_variacao_1.default,
|
|
39
|
-
item_variacao_atributo: item_variacao_atributo_1.default,
|
|
40
|
-
operacao: operacao_1.default
|
|
40
|
+
item_variacao_imagem: item_variacao_imagem_1.default
|
|
41
41
|
};
|