pg-manipulator 1.0.49 → 1.0.51
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/@types/admin/operacao_fields.d.ts +12 -12
- package/dist/@types/admin/operacao_item_fields.d.ts +1 -1
- package/dist/@types/admin/operacao_item_order.d.ts +1 -1
- package/dist/@types/admin/operacao_item_select.d.ts +1 -1
- package/dist/@types/admin/operacao_item_update.d.ts +1 -1
- package/dist/@types/admin/operacao_item_where.d.ts +1 -1
- package/dist/@types/admin/operacao_pagamento_fields.d.ts +1 -1
- package/dist/class/admin/index.d.ts +18 -22
- package/dist/class/admin/index.js +18 -22
- package/dist/mapping/admin/empresa.d.ts +1 -11
- package/dist/mapping/admin/empresa.js +85 -9
- package/dist/mapping/admin/index.d.ts +54 -136
- package/dist/mapping/admin/index.js +18 -22
- package/dist/mapping/admin/operacao.js +13 -13
- package/dist/mapping/admin/operacao_item.js +5 -5
- package/dist/mapping/admin/operacao_pagamento.js +1 -1
- package/package.json +1 -1
- package/dist/@types/admin/ecommerce_fields.d.ts +0 -18
- package/dist/@types/admin/ecommerce_fields.js +0 -2
- package/dist/@types/admin/ecommerce_item_fields.d.ts +0 -5
- package/dist/@types/admin/ecommerce_item_fields.js +0 -2
- package/dist/@types/admin/ecommerce_item_order.d.ts +0 -5
- package/dist/@types/admin/ecommerce_item_order.js +0 -2
- package/dist/@types/admin/ecommerce_item_select.d.ts +0 -9
- package/dist/@types/admin/ecommerce_item_select.js +0 -2
- package/dist/@types/admin/ecommerce_item_update.d.ts +0 -7
- package/dist/@types/admin/ecommerce_item_update.js +0 -2
- package/dist/@types/admin/ecommerce_item_where.d.ts +0 -6
- package/dist/@types/admin/ecommerce_item_where.js +0 -2
- package/dist/@types/admin/ecommerce_order.d.ts +0 -18
- package/dist/@types/admin/ecommerce_order.js +0 -2
- package/dist/@types/admin/ecommerce_select.d.ts +0 -22
- package/dist/@types/admin/ecommerce_select.js +0 -2
- package/dist/@types/admin/ecommerce_update.d.ts +0 -20
- package/dist/@types/admin/ecommerce_update.js +0 -2
- package/dist/@types/admin/ecommerce_where.d.ts +0 -19
- package/dist/@types/admin/ecommerce_where.js +0 -2
- package/dist/class/admin/ecommerce.d.ts +0 -13
- package/dist/class/admin/ecommerce.js +0 -24
- package/dist/class/admin/ecommerce_item.d.ts +0 -13
- package/dist/class/admin/ecommerce_item.js +0 -24
- package/dist/mapping/admin/ecommerce.d.ts +0 -47
- package/dist/mapping/admin/ecommerce.js +0 -209
- package/dist/mapping/admin/ecommerce_item.d.ts +0 -27
- package/dist/mapping/admin/ecommerce_item.js +0 -65
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export type ecommerce_order = {
|
|
2
|
-
id?: 'desc' | 'asc';
|
|
3
|
-
empresa?: 'desc' | 'asc';
|
|
4
|
-
nome?: 'desc' | 'asc';
|
|
5
|
-
descricao?: 'desc' | 'asc';
|
|
6
|
-
politica?: 'desc' | 'asc';
|
|
7
|
-
termos?: 'desc' | 'asc';
|
|
8
|
-
logo?: 'desc' | 'asc';
|
|
9
|
-
favicon?: 'desc' | 'asc';
|
|
10
|
-
cor_primaria?: 'desc' | 'asc';
|
|
11
|
-
cor_secundaria?: 'desc' | 'asc';
|
|
12
|
-
cor_alerta?: 'desc' | 'asc';
|
|
13
|
-
whatsapp?: 'desc' | 'asc';
|
|
14
|
-
email?: 'desc' | 'asc';
|
|
15
|
-
facebook?: 'desc' | 'asc';
|
|
16
|
-
instagram?: 'desc' | 'asc';
|
|
17
|
-
tiktok?: 'desc' | 'asc';
|
|
18
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ecommerce_where } from './ecommerce_where';
|
|
2
|
-
import { ecommerce_order } from './ecommerce_order';
|
|
3
|
-
export type ecommerce_select = {
|
|
4
|
-
id?: number;
|
|
5
|
-
empresa?: number;
|
|
6
|
-
nome?: string;
|
|
7
|
-
descricao?: string;
|
|
8
|
-
politica?: string;
|
|
9
|
-
termos?: string;
|
|
10
|
-
logo?: string;
|
|
11
|
-
favicon?: string;
|
|
12
|
-
cor_primaria?: string;
|
|
13
|
-
cor_secundaria?: string;
|
|
14
|
-
cor_alerta?: string;
|
|
15
|
-
whatsapp?: string;
|
|
16
|
-
email?: string;
|
|
17
|
-
facebook?: string;
|
|
18
|
-
instagram?: string;
|
|
19
|
-
tiktok?: string;
|
|
20
|
-
where: ecommerce_where;
|
|
21
|
-
order?: ecommerce_order;
|
|
22
|
-
};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ecommerce_where } from './ecommerce_where';
|
|
2
|
-
export type ecommerce_update = {
|
|
3
|
-
id?: number;
|
|
4
|
-
empresa?: number;
|
|
5
|
-
nome?: string;
|
|
6
|
-
descricao?: string;
|
|
7
|
-
politica?: string;
|
|
8
|
-
termos?: string;
|
|
9
|
-
logo?: string;
|
|
10
|
-
favicon?: string;
|
|
11
|
-
cor_primaria?: string;
|
|
12
|
-
cor_secundaria?: string;
|
|
13
|
-
cor_alerta?: string;
|
|
14
|
-
whatsapp?: string;
|
|
15
|
-
email?: string;
|
|
16
|
-
facebook?: string;
|
|
17
|
-
instagram?: string;
|
|
18
|
-
tiktok?: string;
|
|
19
|
-
where: ecommerce_where;
|
|
20
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { where_number, where_string } from '../';
|
|
2
|
-
export type ecommerce_where = {
|
|
3
|
-
id?: where_number | number;
|
|
4
|
-
empresa?: where_number | number;
|
|
5
|
-
nome?: where_string | string;
|
|
6
|
-
descricao?: where_string | string;
|
|
7
|
-
politica?: where_string | string;
|
|
8
|
-
termos?: where_string | string;
|
|
9
|
-
logo?: where_string | string;
|
|
10
|
-
favicon?: where_string | string;
|
|
11
|
-
cor_primaria?: where_string | string;
|
|
12
|
-
cor_secundaria?: where_string | string;
|
|
13
|
-
cor_alerta?: where_string | string;
|
|
14
|
-
whatsapp?: where_string | string;
|
|
15
|
-
email?: where_string | string;
|
|
16
|
-
facebook?: where_string | string;
|
|
17
|
-
instagram?: where_string | string;
|
|
18
|
-
tiktok?: where_string | string;
|
|
19
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import base from '../../base';
|
|
2
|
-
import { PoolClient } from 'pg';
|
|
3
|
-
import { ecommerce_select } from '../../@types/admin/ecommerce_select';
|
|
4
|
-
import { ecommerce_where } from '../../@types/admin/ecommerce_where';
|
|
5
|
-
import { ecommerce_update } from '../../@types/admin/ecommerce_update';
|
|
6
|
-
import { ecommerce_fields } from '../../@types/admin/ecommerce_fields';
|
|
7
|
-
export default class ecommerce extends base {
|
|
8
|
-
static get(fields: ecommerce_select, transaction?: PoolClient | any): Promise<ecommerce_fields>;
|
|
9
|
-
static get_all(fields: ecommerce_select, transaction?: PoolClient | any): Promise<ecommerce_fields[]>;
|
|
10
|
-
static create(fields: ecommerce_fields, transaction?: PoolClient | any): Promise<ecommerce_fields>;
|
|
11
|
-
static update(fields: ecommerce_update, transaction?: PoolClient | any): Promise<any>;
|
|
12
|
-
static delete(fields: ecommerce_where, transaction?: PoolClient | any): Promise<any>;
|
|
13
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const base_1 = __importDefault(require("../../base"));
|
|
7
|
-
class ecommerce extends base_1.default {
|
|
8
|
-
static async get(fields, transaction = undefined) {
|
|
9
|
-
return await super.b_get('admin', fields, 'ecommerce', transaction);
|
|
10
|
-
}
|
|
11
|
-
static async get_all(fields, transaction = undefined) {
|
|
12
|
-
return await super.b_get_all('admin', fields, 'ecommerce', transaction);
|
|
13
|
-
}
|
|
14
|
-
static async create(fields, transaction = undefined) {
|
|
15
|
-
return await super.b_create('admin', fields, 'ecommerce', transaction);
|
|
16
|
-
}
|
|
17
|
-
static async update(fields, transaction = undefined) {
|
|
18
|
-
return await super.b_update('admin', fields, 'ecommerce', transaction);
|
|
19
|
-
}
|
|
20
|
-
static async delete(fields, transaction = undefined) {
|
|
21
|
-
return await super.b_delete('admin', fields, 'ecommerce', transaction);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
exports.default = ecommerce;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import base from '../../base';
|
|
2
|
-
import { PoolClient } from 'pg';
|
|
3
|
-
import { ecommerce_item_select } from '../../@types/admin/ecommerce_item_select';
|
|
4
|
-
import { ecommerce_item_where } from '../../@types/admin/ecommerce_item_where';
|
|
5
|
-
import { ecommerce_item_update } from '../../@types/admin/ecommerce_item_update';
|
|
6
|
-
import { ecommerce_item_fields } from '../../@types/admin/ecommerce_item_fields';
|
|
7
|
-
export default class ecommerce_item extends base {
|
|
8
|
-
static get(fields: ecommerce_item_select, transaction?: PoolClient | any): Promise<ecommerce_item_fields>;
|
|
9
|
-
static get_all(fields: ecommerce_item_select, transaction?: PoolClient | any): Promise<ecommerce_item_fields[]>;
|
|
10
|
-
static create(fields: ecommerce_item_fields, transaction?: PoolClient | any): Promise<ecommerce_item_fields>;
|
|
11
|
-
static update(fields: ecommerce_item_update, transaction?: PoolClient | any): Promise<any>;
|
|
12
|
-
static delete(fields: ecommerce_item_where, transaction?: PoolClient | any): Promise<any>;
|
|
13
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const base_1 = __importDefault(require("../../base"));
|
|
7
|
-
class ecommerce_item extends base_1.default {
|
|
8
|
-
static async get(fields, transaction = undefined) {
|
|
9
|
-
return await super.b_get('admin', fields, 'ecommerce_item', transaction);
|
|
10
|
-
}
|
|
11
|
-
static async get_all(fields, transaction = undefined) {
|
|
12
|
-
return await super.b_get_all('admin', fields, 'ecommerce_item', transaction);
|
|
13
|
-
}
|
|
14
|
-
static async create(fields, transaction = undefined) {
|
|
15
|
-
return await super.b_create('admin', fields, 'ecommerce_item', transaction);
|
|
16
|
-
}
|
|
17
|
-
static async update(fields, transaction = undefined) {
|
|
18
|
-
return await super.b_update('admin', fields, 'ecommerce_item', transaction);
|
|
19
|
-
}
|
|
20
|
-
static async delete(fields, transaction = undefined) {
|
|
21
|
-
return await super.b_delete('admin', fields, 'ecommerce_item', transaction);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
exports.default = ecommerce_item;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
columns: ({
|
|
3
|
-
name: string;
|
|
4
|
-
value: {
|
|
5
|
-
type: string;
|
|
6
|
-
is_null: string;
|
|
7
|
-
maxlength: null;
|
|
8
|
-
};
|
|
9
|
-
fk_table: string;
|
|
10
|
-
fk_reference: string;
|
|
11
|
-
pk: boolean;
|
|
12
|
-
} | {
|
|
13
|
-
name: string;
|
|
14
|
-
value: {
|
|
15
|
-
type: string;
|
|
16
|
-
is_null: string;
|
|
17
|
-
maxlength: null;
|
|
18
|
-
};
|
|
19
|
-
fk_table: null;
|
|
20
|
-
fk_reference: null;
|
|
21
|
-
pk: boolean;
|
|
22
|
-
})[];
|
|
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
|
-
}[];
|
|
34
|
-
childrens: {
|
|
35
|
-
name: string;
|
|
36
|
-
value: {
|
|
37
|
-
type: string;
|
|
38
|
-
is_null: string;
|
|
39
|
-
maxlength: null;
|
|
40
|
-
};
|
|
41
|
-
fk_table: string;
|
|
42
|
-
fk_reference: string;
|
|
43
|
-
pk: boolean;
|
|
44
|
-
}[];
|
|
45
|
-
name: string;
|
|
46
|
-
};
|
|
47
|
-
export default _default;
|
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = {
|
|
4
|
-
"columns": [
|
|
5
|
-
{
|
|
6
|
-
"name": "id",
|
|
7
|
-
"value": {
|
|
8
|
-
"type": "integer",
|
|
9
|
-
"is_null": "YES",
|
|
10
|
-
"maxlength": null
|
|
11
|
-
},
|
|
12
|
-
"fk_table": "ecommerce",
|
|
13
|
-
"fk_reference": "id",
|
|
14
|
-
"pk": true
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"name": "empresa",
|
|
18
|
-
"value": {
|
|
19
|
-
"type": "integer",
|
|
20
|
-
"is_null": "NO",
|
|
21
|
-
"maxlength": null
|
|
22
|
-
},
|
|
23
|
-
"fk_table": "empresa",
|
|
24
|
-
"fk_reference": "id",
|
|
25
|
-
"pk": false
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "nome",
|
|
29
|
-
"value": {
|
|
30
|
-
"type": "character varying",
|
|
31
|
-
"is_null": "NO",
|
|
32
|
-
"maxlength": null
|
|
33
|
-
},
|
|
34
|
-
"fk_table": null,
|
|
35
|
-
"fk_reference": null,
|
|
36
|
-
"pk": false
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"name": "descricao",
|
|
40
|
-
"value": {
|
|
41
|
-
"type": "text",
|
|
42
|
-
"is_null": "NO",
|
|
43
|
-
"maxlength": null
|
|
44
|
-
},
|
|
45
|
-
"fk_table": null,
|
|
46
|
-
"fk_reference": null,
|
|
47
|
-
"pk": false
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"name": "politica",
|
|
51
|
-
"value": {
|
|
52
|
-
"type": "text",
|
|
53
|
-
"is_null": "NO",
|
|
54
|
-
"maxlength": null
|
|
55
|
-
},
|
|
56
|
-
"fk_table": null,
|
|
57
|
-
"fk_reference": null,
|
|
58
|
-
"pk": false
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"name": "termos",
|
|
62
|
-
"value": {
|
|
63
|
-
"type": "text",
|
|
64
|
-
"is_null": "NO",
|
|
65
|
-
"maxlength": null
|
|
66
|
-
},
|
|
67
|
-
"fk_table": null,
|
|
68
|
-
"fk_reference": null,
|
|
69
|
-
"pk": false
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"name": "logo",
|
|
73
|
-
"value": {
|
|
74
|
-
"type": "text",
|
|
75
|
-
"is_null": "NO",
|
|
76
|
-
"maxlength": null
|
|
77
|
-
},
|
|
78
|
-
"fk_table": null,
|
|
79
|
-
"fk_reference": null,
|
|
80
|
-
"pk": false
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"name": "favicon",
|
|
84
|
-
"value": {
|
|
85
|
-
"type": "text",
|
|
86
|
-
"is_null": "NO",
|
|
87
|
-
"maxlength": null
|
|
88
|
-
},
|
|
89
|
-
"fk_table": null,
|
|
90
|
-
"fk_reference": null,
|
|
91
|
-
"pk": false
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"name": "cor_primaria",
|
|
95
|
-
"value": {
|
|
96
|
-
"type": "character varying",
|
|
97
|
-
"is_null": "NO",
|
|
98
|
-
"maxlength": null
|
|
99
|
-
},
|
|
100
|
-
"fk_table": null,
|
|
101
|
-
"fk_reference": null,
|
|
102
|
-
"pk": false
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"name": "cor_secundaria",
|
|
106
|
-
"value": {
|
|
107
|
-
"type": "character varying",
|
|
108
|
-
"is_null": "NO",
|
|
109
|
-
"maxlength": null
|
|
110
|
-
},
|
|
111
|
-
"fk_table": null,
|
|
112
|
-
"fk_reference": null,
|
|
113
|
-
"pk": false
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"name": "cor_alerta",
|
|
117
|
-
"value": {
|
|
118
|
-
"type": "character varying",
|
|
119
|
-
"is_null": "NO",
|
|
120
|
-
"maxlength": null
|
|
121
|
-
},
|
|
122
|
-
"fk_table": null,
|
|
123
|
-
"fk_reference": null,
|
|
124
|
-
"pk": false
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
"name": "whatsapp",
|
|
128
|
-
"value": {
|
|
129
|
-
"type": "character varying",
|
|
130
|
-
"is_null": "NO",
|
|
131
|
-
"maxlength": null
|
|
132
|
-
},
|
|
133
|
-
"fk_table": null,
|
|
134
|
-
"fk_reference": null,
|
|
135
|
-
"pk": false
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"name": "email",
|
|
139
|
-
"value": {
|
|
140
|
-
"type": "character varying",
|
|
141
|
-
"is_null": "NO",
|
|
142
|
-
"maxlength": null
|
|
143
|
-
},
|
|
144
|
-
"fk_table": null,
|
|
145
|
-
"fk_reference": null,
|
|
146
|
-
"pk": false
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"name": "facebook",
|
|
150
|
-
"value": {
|
|
151
|
-
"type": "character varying",
|
|
152
|
-
"is_null": "YES",
|
|
153
|
-
"maxlength": null
|
|
154
|
-
},
|
|
155
|
-
"fk_table": null,
|
|
156
|
-
"fk_reference": null,
|
|
157
|
-
"pk": false
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"name": "instagram",
|
|
161
|
-
"value": {
|
|
162
|
-
"type": "character varying",
|
|
163
|
-
"is_null": "YES",
|
|
164
|
-
"maxlength": null
|
|
165
|
-
},
|
|
166
|
-
"fk_table": null,
|
|
167
|
-
"fk_reference": null,
|
|
168
|
-
"pk": false
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"name": "tiktok",
|
|
172
|
-
"value": {
|
|
173
|
-
"type": "character varying",
|
|
174
|
-
"is_null": "YES",
|
|
175
|
-
"maxlength": null
|
|
176
|
-
},
|
|
177
|
-
"fk_table": null,
|
|
178
|
-
"fk_reference": null,
|
|
179
|
-
"pk": false
|
|
180
|
-
}
|
|
181
|
-
],
|
|
182
|
-
"fathers": [
|
|
183
|
-
{
|
|
184
|
-
"name": "empresa",
|
|
185
|
-
"value": {
|
|
186
|
-
"type": "integer",
|
|
187
|
-
"is_null": "NO",
|
|
188
|
-
"maxlength": null
|
|
189
|
-
},
|
|
190
|
-
"fk_table": "empresa",
|
|
191
|
-
"fk_reference": "id",
|
|
192
|
-
"pk": false
|
|
193
|
-
}
|
|
194
|
-
],
|
|
195
|
-
"childrens": [
|
|
196
|
-
{
|
|
197
|
-
"name": "ecommerce",
|
|
198
|
-
"value": {
|
|
199
|
-
"type": "integer",
|
|
200
|
-
"is_null": "NO",
|
|
201
|
-
"maxlength": null
|
|
202
|
-
},
|
|
203
|
-
"fk_table": "ecommerce",
|
|
204
|
-
"fk_reference": "id",
|
|
205
|
-
"pk": false
|
|
206
|
-
}
|
|
207
|
-
],
|
|
208
|
-
"name": "ecommerce"
|
|
209
|
-
};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
columns: {
|
|
3
|
-
name: string;
|
|
4
|
-
value: {
|
|
5
|
-
type: string;
|
|
6
|
-
is_null: string;
|
|
7
|
-
maxlength: null;
|
|
8
|
-
};
|
|
9
|
-
fk_table: string;
|
|
10
|
-
fk_reference: string;
|
|
11
|
-
pk: boolean;
|
|
12
|
-
}[];
|
|
13
|
-
fathers: {
|
|
14
|
-
name: string;
|
|
15
|
-
value: {
|
|
16
|
-
type: string;
|
|
17
|
-
is_null: string;
|
|
18
|
-
maxlength: null;
|
|
19
|
-
};
|
|
20
|
-
fk_table: string;
|
|
21
|
-
fk_reference: string;
|
|
22
|
-
pk: boolean;
|
|
23
|
-
}[];
|
|
24
|
-
childrens: never[];
|
|
25
|
-
name: string;
|
|
26
|
-
};
|
|
27
|
-
export default _default;
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = {
|
|
4
|
-
"columns": [
|
|
5
|
-
{
|
|
6
|
-
"name": "id",
|
|
7
|
-
"value": {
|
|
8
|
-
"type": "integer",
|
|
9
|
-
"is_null": "YES",
|
|
10
|
-
"maxlength": null
|
|
11
|
-
},
|
|
12
|
-
"fk_table": "ecommerce_item",
|
|
13
|
-
"fk_reference": "id",
|
|
14
|
-
"pk": true
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"name": "item",
|
|
18
|
-
"value": {
|
|
19
|
-
"type": "integer",
|
|
20
|
-
"is_null": "NO",
|
|
21
|
-
"maxlength": null
|
|
22
|
-
},
|
|
23
|
-
"fk_table": "item",
|
|
24
|
-
"fk_reference": "id",
|
|
25
|
-
"pk": false
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "ecommerce",
|
|
29
|
-
"value": {
|
|
30
|
-
"type": "integer",
|
|
31
|
-
"is_null": "NO",
|
|
32
|
-
"maxlength": null
|
|
33
|
-
},
|
|
34
|
-
"fk_table": "ecommerce",
|
|
35
|
-
"fk_reference": "id",
|
|
36
|
-
"pk": false
|
|
37
|
-
}
|
|
38
|
-
],
|
|
39
|
-
"fathers": [
|
|
40
|
-
{
|
|
41
|
-
"name": "item",
|
|
42
|
-
"value": {
|
|
43
|
-
"type": "integer",
|
|
44
|
-
"is_null": "NO",
|
|
45
|
-
"maxlength": null
|
|
46
|
-
},
|
|
47
|
-
"fk_table": "item",
|
|
48
|
-
"fk_reference": "id",
|
|
49
|
-
"pk": false
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"name": "ecommerce",
|
|
53
|
-
"value": {
|
|
54
|
-
"type": "integer",
|
|
55
|
-
"is_null": "NO",
|
|
56
|
-
"maxlength": null
|
|
57
|
-
},
|
|
58
|
-
"fk_table": "ecommerce",
|
|
59
|
-
"fk_reference": "id",
|
|
60
|
-
"pk": false
|
|
61
|
-
}
|
|
62
|
-
],
|
|
63
|
-
"childrens": [],
|
|
64
|
-
"name": "ecommerce_item"
|
|
65
|
-
};
|