contentoh-components-library 21.5.97 → 21.5.99
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/components/atoms/GeneralButton/styles.js +1 -1
- package/dist/components/atoms/GeneralInput/index.js +54 -249
- package/dist/components/atoms/GeneralInput/styles.js +3 -7
- package/dist/components/atoms/InputFormatter/index.js +68 -223
- package/dist/components/atoms/InputFormatter/styles.js +4 -20
- package/dist/components/molecules/StatusAsignationInfo/index.js +1 -11
- package/dist/components/molecules/TabsMenu/index.js +1 -13
- package/dist/components/molecules/TagAndInput/index.js +24 -364
- package/dist/components/molecules/TagAndInput/styles.js +2 -2
- package/dist/components/organisms/FullProductNameHeader/index.js +22 -6
- package/dist/components/organisms/InputGroup/index.js +18 -22
- package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +337 -150
- package/dist/components/pages/ProviderProductEdition/context/provider-product-edition.context.js +15 -15
- package/dist/components/pages/ProviderProductEdition/index.js +376 -412
- package/dist/components/pages/ProviderProductEdition/utils.js +0 -1
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +211 -125
- package/dist/components/pages/RetailerProductEdition/index.js +2236 -1738
- package/dist/components/pages/RetailerProductEdition/styles.js +2 -4
- package/dist/components/pages/RetailerProductEdition/utils.js +2 -251
- package/package.json +2 -4
- package/src/components/atoms/GeneralButton/styles.js +0 -4
- package/src/components/atoms/GeneralInput/index.js +60 -241
- package/src/components/atoms/GeneralInput/styles.js +0 -81
- package/src/components/atoms/InputFormatter/index.js +51 -200
- package/src/components/atoms/InputFormatter/styles.js +0 -284
- package/src/components/molecules/StatusAsignationInfo/index.js +1 -9
- package/src/components/molecules/TabsMenu/index.js +0 -12
- package/src/components/molecules/TagAndInput/index.js +21 -294
- package/src/components/molecules/TagAndInput/styles.js +17 -59
- package/src/components/organisms/FullProductNameHeader/index.js +28 -4
- package/src/components/organisms/FullTabsMenu/index.js +1 -1
- package/src/components/organisms/InputGroup/index.js +4 -12
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +202 -174
- package/src/components/pages/ProviderProductEdition/context/provider-product-edition.context.jsx +14 -14
- package/src/components/pages/ProviderProductEdition/index.js +420 -494
- package/src/components/pages/ProviderProductEdition/utils.js +2 -2
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +243 -136
- package/src/components/pages/RetailerProductEdition/index.js +1717 -1563
- package/src/components/pages/RetailerProductEdition/styles.js +2 -67
- package/src/components/pages/RetailerProductEdition/utils.js +0 -240
- package/src/ai/utils/compare-strings.js +0 -45
- package/src/assets/images/Icons/arrow.png +0 -0
- package/src/assets/images/Icons/cancel.png +0 -0
- package/src/assets/images/Icons/ia-icon.png +0 -0
- package/src/assets/images/Icons/loading.svg +0 -5
- package/src/assets/images/Icons/reload.png +0 -0
- package/src/components/atoms/RetailerSelector/RetailerSelector.stories.js +0 -10
- package/src/components/atoms/RetailerSelector/index.js +0 -3
- package/src/components/atoms/RetailerSelector/styles.js +0 -0
- package/src/components/organisms/ChangeStatusModal/index.jsx +0 -488
- package/src/components/organisms/ChangeStatusModal/styles.js +0 -333
- package/src/components/pages/RetailerProductEdition/context/provider-product-edition.context.jsx +0 -575
- package/src/components/pages/RetailerProductEdition/context/provider-product-edition.reducer.js +0 -62
- package/src/components/pages/RetailerProductEdition/context/reducers/active-state.js +0 -344
- package/src/components/pages/RetailerProductEdition/context/reducers/inputs.js +0 -155
- package/src/components/pages/RetailerProductEdition/context/reducers/product.js +0 -114
- package/src/components/pages/RetailerProductEdition/context/reducers/system.js +0 -60
- package/src/components/pages/RetailerProductEdition/index_old.js +0 -1979
- package/src/components/pages/RetailerProductEdition/stories/Auditor.stories.js +0 -101
- package/src/components/pages/RetailerProductEdition/stories/ImageEditor.stories.js +0 -115
- package/src/components/pages/RetailerProductEdition/stories/TextEditor.stories.js +0 -174
- package/src/contexts/AiProductEdition.jsx +0 -347
- package/src/global-files/statusDictionary.js +0 -103
|
@@ -9,7 +9,6 @@ export const normalizeProduct = (product) => {
|
|
|
9
9
|
? categoryRetailer.map((rel) => ({
|
|
10
10
|
id_retailer: rel.id_retailer || rel.retailer_id,
|
|
11
11
|
retailer: rel.retailer_name || rel.retailerName,
|
|
12
|
-
name: rel.retailer_name || rel.retailerName,
|
|
13
12
|
id_category: rel.id_category,
|
|
14
13
|
category: rel.category_name || rel.categoryName,
|
|
15
14
|
image: `https://content-management-images.s3.amazonaws.com/retailers/${
|
|
@@ -54,7 +53,8 @@ export const normalizeProduct = (product) => {
|
|
|
54
53
|
id_datasheet_especialist: article.id_datasheet_especialist || 0,
|
|
55
54
|
id_datasheet_facilitator: article.id_datasheet_facilitator || null,
|
|
56
55
|
id_description_especialist: article.id_description_especialist || 0,
|
|
57
|
-
id_description_facilitator:
|
|
56
|
+
id_description_facilitator:
|
|
57
|
+
article.id_description_facilitator || null,
|
|
58
58
|
id_images_especialist: article.id_images_especialist || 0,
|
|
59
59
|
id_images_facilitator: article.id_images_facilitator || null,
|
|
60
60
|
id_auditor: article.id_auditor || 0,
|
|
@@ -16,191 +16,299 @@ RetailerProductEditionDefault.args = {
|
|
|
16
16
|
Imágenes: false,
|
|
17
17
|
},
|
|
18
18
|
token:
|
|
19
|
-
|
|
19
|
+
"eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiIzOWE5MDMwOS04MWNkLTQ4ZGYtODZmYi1iMjJjNGEwZTA1NTkiLCJjb2duaXRvOmdyb3VwcyI6WyJjb2xhYm9yYWRvcmVzX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwiY29nbml0bzp1c2VybmFtZSI6IjM5YTkwMzA5LTgxY2QtNDhkZi04NmZiLWIyMmM0YTBlMDU1OSIsImNvZ25pdG86cm9sZXMiOlsiYXJuOmF3czppYW06Ojg5ODY3MDIzMjgwNzpyb2xlXC9jb250ZW50b2gtZGV2LXVzLWVhc3QtMS1sYW1iZGFSb2xlIl0sImF1ZCI6IjVhYzh0cGdzNmdic3ExM2ZydnJwaWVlcDQwIiwiZXZlbnRfaWQiOiJmOGMyYWZlYS01MDFjLTRiZDItOWVkMS1lNTYyOTNhM2RkZWIiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTc2MDYzNjU2NywibmFtZSI6IkNvbGFib3JhZG9yIiwicGhvbmVfbnVtYmVyIjoiKzUyMTExMSIsImV4cCI6MTc2MDY0MDE2NywiaWF0IjoxNzYwNjM2NTY3LCJlbWFpbCI6ImVzcGVjaWFsaXN0YXRleHRvc2RldkBhbGxmcmVlbWFpbC5uZXQifQ.hcliXw44sm09Z3Lq4MgUp9Pgfmp0EIWL5fMBqCtnGJDKG1rtbbb19GqVqRZNt7H4C4n-5SvA_-UwGP_8_tFYqVQsGedecVB-dvhQMaiIV7OvwbMQq9JxLcygsAoJkWc54AEidxj4wXn7Jczxi8v_9STpBQo2ks4Vo8GyhHDQFd1mxmuXzr-7PVR5FHDr6dqUUaQn1RjUftTnabGRwUYbHo1WKyOPpNpSvK0HGmn8csP8ldU6111t-lA_Q9cF3y1Rcx_TFSAZfKAn-Jqa9I1Wp7l6bJ8o6QK0L5kJykJfpsjgTyoJuVj7-puv-a9-BEXEwyEAwrYbXm9eTpjXXsRhmw",
|
|
20
20
|
productSelected: {
|
|
21
|
-
"articleId":
|
|
21
|
+
"articleId": 18193,
|
|
22
22
|
"services": {
|
|
23
23
|
"datasheets": 1,
|
|
24
24
|
"descriptions": 1,
|
|
25
25
|
"images": 1
|
|
26
26
|
},
|
|
27
|
-
"orderId":
|
|
28
|
-
"city": "
|
|
29
|
-
"status": "
|
|
27
|
+
"orderId": 7707,
|
|
28
|
+
"city": "",
|
|
29
|
+
"status": "AA",
|
|
30
30
|
"datasheet_status": "AA",
|
|
31
31
|
"prio": "none",
|
|
32
|
-
"version":
|
|
33
|
-
"description_status": "
|
|
32
|
+
"version": 30,
|
|
33
|
+
"description_status": "AA",
|
|
34
34
|
"images_status": "AA",
|
|
35
35
|
"statusByRetailer": [
|
|
36
36
|
{
|
|
37
|
-
"retailer_id": 2,
|
|
38
|
-
"service": "datasheet",
|
|
39
37
|
"status": "AA",
|
|
40
|
-
"
|
|
38
|
+
"service": "datasheet",
|
|
39
|
+
"retailer_id": 12,
|
|
40
|
+
"task_user_group_id": 5
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
"
|
|
43
|
+
"status": "AA",
|
|
44
44
|
"service": "description",
|
|
45
|
-
"
|
|
46
|
-
"task_user_group_id":
|
|
45
|
+
"retailer_id": 12,
|
|
46
|
+
"task_user_group_id": 5
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
|
-
"retailer_id": 2,
|
|
50
|
-
"service": "images",
|
|
51
49
|
"status": "AA",
|
|
52
|
-
"
|
|
50
|
+
"service": "images",
|
|
51
|
+
"retailer_id": 12,
|
|
52
|
+
"task_user_group_id": 5
|
|
53
53
|
}
|
|
54
54
|
],
|
|
55
55
|
"article": {
|
|
56
|
-
"id_article":
|
|
57
|
-
"id_category": "
|
|
58
|
-
"brand":
|
|
59
|
-
"name": "
|
|
60
|
-
"upc": "
|
|
61
|
-
"sku":
|
|
62
|
-
"timestamp": "
|
|
56
|
+
"id_article": 18193,
|
|
57
|
+
"id_category": "157",
|
|
58
|
+
"brand": "Axion",
|
|
59
|
+
"name": "Detergente lavatrastes líquido Axion limón 900 ml",
|
|
60
|
+
"upc": "7509546052977",
|
|
61
|
+
"sku": null,
|
|
62
|
+
"timestamp": "2021-10-09T16:33:17.000Z",
|
|
63
63
|
"active": 1,
|
|
64
|
-
"company_id":
|
|
65
|
-
"company_name": "
|
|
64
|
+
"company_id": 226,
|
|
65
|
+
"company_name": "COLGATE PALMOLIVE S.A. DE C.V.",
|
|
66
66
|
"country": "México",
|
|
67
|
-
"id_order":
|
|
68
|
-
"id_datasheet_especialist":
|
|
67
|
+
"id_order": 7707,
|
|
68
|
+
"id_datasheet_especialist": 498,
|
|
69
69
|
"id_datasheet_facilitator": null,
|
|
70
|
-
"id_description_especialist":
|
|
70
|
+
"id_description_especialist": 498,
|
|
71
71
|
"id_description_facilitator": null,
|
|
72
|
-
"id_images_especialist":
|
|
72
|
+
"id_images_especialist": 1460,
|
|
73
73
|
"id_images_facilitator": null,
|
|
74
|
-
"id_auditor":
|
|
74
|
+
"id_auditor": 1254,
|
|
75
75
|
"id_recepcionist": null,
|
|
76
|
-
"category": "
|
|
76
|
+
"category": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
77
77
|
"categoryRetailer": [
|
|
78
78
|
{
|
|
79
|
-
"id_category":
|
|
80
|
-
"id_retailer":
|
|
81
|
-
"category_name": "
|
|
82
|
-
"retailer_name": "
|
|
79
|
+
"id_category": 157,
|
|
80
|
+
"id_retailer": 17,
|
|
81
|
+
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
82
|
+
"retailer_name": "Genérico"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id_category": 3430,
|
|
86
|
+
"id_retailer": 12,
|
|
87
|
+
"category_name": "Departamento General La Comer|Departamento General|Departamento General",
|
|
88
|
+
"retailer_name": "La Comer"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id_category": 3433,
|
|
92
|
+
"id_retailer": 24,
|
|
93
|
+
"category_name": "Limpieza Del Hogar|Limpieza Del Hogar|Limpieza Del Hogar",
|
|
94
|
+
"retailer_name": "Alsuper"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id_category": 3456,
|
|
98
|
+
"id_retailer": 41,
|
|
99
|
+
"category_name": "Categoría Genérica Chapa|Categoría Genérica|Categoría Genérica",
|
|
100
|
+
"retailer_name": "Chapa"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"id_category": 3499,
|
|
104
|
+
"id_retailer": 20,
|
|
105
|
+
"category_name": "Consumibles Cornershop|Consumibles|Consumibles",
|
|
106
|
+
"retailer_name": "Cornershop"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"id_category": 3507,
|
|
110
|
+
"id_retailer": 38,
|
|
111
|
+
"category_name": "Hogar|Artículos de Limpieza|Multiusos",
|
|
112
|
+
"retailer_name": "Del Sol"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id_category": 3562,
|
|
116
|
+
"id_retailer": 29,
|
|
117
|
+
"category_name": "Consumibles Farmacias del Ahorro|Consumibles|Consumibles",
|
|
118
|
+
"retailer_name": "Farmacias del Ahorro"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id_category": 3588,
|
|
122
|
+
"id_retailer": 8,
|
|
123
|
+
"category_name": "Hogar|Limpieza|Lavatrastes",
|
|
124
|
+
"retailer_name": "Fragua"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id_category": 3604,
|
|
128
|
+
"id_retailer": 18,
|
|
129
|
+
"category_name": "Categoría Genérica Google|Categoría Genérica|Categoría Genérica",
|
|
130
|
+
"retailer_name": "Google"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id_category": 3741,
|
|
134
|
+
"id_retailer": 6,
|
|
135
|
+
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
136
|
+
"retailer_name": "HEB"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id_category": 4780,
|
|
140
|
+
"id_retailer": 27,
|
|
141
|
+
"category_name": "Categoría Genérica IMPIRA México|Categoría Genérica|Categoría Genérica",
|
|
142
|
+
"retailer_name": "IMPIRA México"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"id_category": 4796,
|
|
146
|
+
"id_retailer": 39,
|
|
147
|
+
"category_name": "Limpieza y Hogar|Limpieza General|Limpieza General",
|
|
148
|
+
"retailer_name": "Justo"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id_category": 4835,
|
|
152
|
+
"id_retailer": 7,
|
|
153
|
+
"category_name": "Categoría Genérica Mega|Categoría Genérica|Categoría Genérica",
|
|
154
|
+
"retailer_name": "Mega"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id_category": 4853,
|
|
158
|
+
"id_retailer": 33,
|
|
159
|
+
"category_name": "Cuidado Hogar|Lavatrastes|Lavatrastes Liquidos",
|
|
160
|
+
"retailer_name": "Merza"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id_category": 4873,
|
|
164
|
+
"id_retailer": 36,
|
|
165
|
+
"category_name": "Productos del Hogar|Productos del Hogar|Productos del Hogar",
|
|
166
|
+
"retailer_name": "Oxxo"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"id_category": 4911,
|
|
170
|
+
"id_retailer": 16,
|
|
171
|
+
"category_name": "Categoría Genérica Rappi|Categoría Genérica|Categoría Genérica",
|
|
172
|
+
"retailer_name": "Rappi"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id_category": 5918,
|
|
176
|
+
"id_retailer": 4,
|
|
177
|
+
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
178
|
+
"retailer_name": "Walmart Super y Superama"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id_category": 7126,
|
|
182
|
+
"id_retailer": 13,
|
|
183
|
+
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
184
|
+
"retailer_name": "Soriana"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id_category": 7196,
|
|
188
|
+
"id_retailer": 5,
|
|
189
|
+
"category_name": "Categoría Consumibles Chedraui|Consumibles|Productos de Limpieza y Lavandería",
|
|
190
|
+
"retailer_name": "Chedraui"
|
|
83
191
|
}
|
|
84
192
|
]
|
|
85
193
|
},
|
|
86
194
|
"retailers": [
|
|
87
195
|
{
|
|
88
|
-
"id":
|
|
89
|
-
"name": "Walmart
|
|
196
|
+
"id": 4,
|
|
197
|
+
"name": "Walmart Super y Superama"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": 5,
|
|
201
|
+
"name": "Chedraui"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": 6,
|
|
205
|
+
"name": "HEB"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": 8,
|
|
209
|
+
"name": "Fragua"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": 12,
|
|
213
|
+
"name": "La Comer"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": 13,
|
|
217
|
+
"name": "Soriana"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": 16,
|
|
221
|
+
"name": "Rappi"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"id": 17,
|
|
225
|
+
"name": "Genérico"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": 20,
|
|
229
|
+
"name": "Cornershop"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": 24,
|
|
233
|
+
"name": "Alsuper"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": 29,
|
|
237
|
+
"name": "Farmacias del Ahorro"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"id": 36,
|
|
241
|
+
"name": "Oxxo"
|
|
90
242
|
}
|
|
91
243
|
],
|
|
92
244
|
"country": "México",
|
|
93
|
-
"upc": "
|
|
245
|
+
"upc": "7509546052977"
|
|
94
246
|
},
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
//
|
|
98
|
-
//
|
|
99
|
-
//
|
|
100
|
-
//
|
|
101
|
-
//
|
|
102
|
-
//
|
|
247
|
+
// location: {
|
|
248
|
+
// product: { articleId: 126855, versionId: 3 },
|
|
249
|
+
// state: {
|
|
250
|
+
// withChat: true,
|
|
251
|
+
// chatType: "product_status",
|
|
252
|
+
// },
|
|
253
|
+
// },
|
|
254
|
+
// user: {
|
|
255
|
+
// "id_user": 442,
|
|
256
|
+
// "name": "Especialista",
|
|
257
|
+
// "last_name": "Textos",
|
|
258
|
+
// "email": "especialistatextosdev@allfreemail.net",
|
|
259
|
+
// "position": "Especialista de Imágenes",
|
|
260
|
+
// "telephone": null,
|
|
261
|
+
// "country": null,
|
|
262
|
+
// "id_company": 2,
|
|
263
|
+
// "id_role": 7,
|
|
264
|
+
// "about_me": null,
|
|
265
|
+
// "address": null,
|
|
266
|
+
// "job": null,
|
|
267
|
+
// "id_stripe": null,
|
|
268
|
+
// "active": 1,
|
|
269
|
+
// "email_notify": 1,
|
|
270
|
+
// "id_cognito": "39a90309-81cd-48df-86fb-b22c4a0e0559",
|
|
271
|
+
// "birth_Date": null,
|
|
272
|
+
// "zip_code": null,
|
|
273
|
+
// "is_retailer": 0,
|
|
274
|
+
// "is_onboarding": 0,
|
|
275
|
+
// "is_user_tech": null,
|
|
276
|
+
// "profile_picture_ext": null,
|
|
277
|
+
// "membership": {
|
|
278
|
+
// "id": 2,
|
|
279
|
+
// "start_date": "2021-11-05T02:35:12.000Z",
|
|
280
|
+
// "end_date": "2022-11-05T02:34:49.000Z",
|
|
281
|
+
// "planID": 1,
|
|
282
|
+
// "plan": "prod_KtkvuFFLpOdP6e",
|
|
283
|
+
// "name": "Plan Free",
|
|
284
|
+
// "user_limit": "1",
|
|
285
|
+
// "products_limit": "3",
|
|
286
|
+
// "type": "PyMES"
|
|
287
|
+
// },
|
|
288
|
+
// "src": "https://content-management-profile.s3.amazonaws.com/id-442/442.png?1760636567736"
|
|
103
289
|
// },
|
|
104
290
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
// "email": "kikije1467@mtlcz.com",
|
|
112
|
-
// "position": "Tester",
|
|
113
|
-
// "telephone": null,
|
|
114
|
-
// "country": null,
|
|
115
|
-
// "id_company": 254,
|
|
116
|
-
// "id_cognito": "c7e5a6a4-2b3f-4d54-af98-9e09a4cbc01e",
|
|
117
|
-
// "birth_Date": null,
|
|
118
|
-
// "about_me": null,
|
|
119
|
-
// "zip_code": null,
|
|
120
|
-
// "address": null,
|
|
121
|
-
// "job": null,
|
|
122
|
-
// "id_stripe": null,
|
|
123
|
-
// "id_role": 8,
|
|
124
|
-
// "active": 1,
|
|
125
|
-
// "is_retailer": 0,
|
|
126
|
-
// "email_notify": null,
|
|
127
|
-
// "is_user_tech": null,
|
|
128
|
-
// "is_onboarding": 0,
|
|
129
|
-
// "membership": {
|
|
130
|
-
// "id": 750,
|
|
131
|
-
// "start_date": "2022-01-07T21:32:54.000Z",
|
|
132
|
-
// "end_date": "2023-01-07T21:32:54.000Z",
|
|
133
|
-
// "planID": 6,
|
|
134
|
-
// "plan": "prod_KvGd6YSTJyR3AP",
|
|
135
|
-
// "name": "Plan Small",
|
|
136
|
-
// "user_limit": "10",
|
|
137
|
-
// "products_limit": "1000",
|
|
138
|
-
// "type": "Enterprise"
|
|
139
|
-
// },
|
|
140
|
-
// "src": "https://content-management-profile-prod.s3.amazonaws.com/id-427/427.png?1775592220312"
|
|
141
|
-
// },
|
|
142
|
-
|
|
143
|
-
//TEXTOS
|
|
144
|
-
|
|
145
|
-
// user: {
|
|
146
|
-
// id_user: 426,
|
|
147
|
-
// name: "Especialista Textos",
|
|
148
|
-
// last_name: null,
|
|
149
|
-
// email: "karafe3218@mom2kid.com",
|
|
150
|
-
// position: "Tester",
|
|
151
|
-
// telephone: null,
|
|
152
|
-
// country: null,
|
|
153
|
-
// id_company: 254,
|
|
154
|
-
// id_cognito: "8d010214-5bfa-43c3-96fb-c556dc05774b",
|
|
155
|
-
// birth_Date: null,
|
|
156
|
-
// about_me: null,
|
|
157
|
-
// zip_code: null,
|
|
158
|
-
// address: null,
|
|
159
|
-
// job: null,
|
|
160
|
-
// id_stripe: null,
|
|
161
|
-
// id_role: 7,
|
|
162
|
-
// active: 1,
|
|
163
|
-
// is_retailer: 0,
|
|
164
|
-
// email_notify: null,
|
|
165
|
-
// is_user_tech: null,
|
|
166
|
-
// is_onboarding: 0,
|
|
167
|
-
// membership: {
|
|
168
|
-
// id: 750,
|
|
169
|
-
// start_date: "2022-01-07T21:32:54.000Z",
|
|
170
|
-
// end_date: "2023-01-07T21:32:54.000Z",
|
|
171
|
-
// planID: 6,
|
|
172
|
-
// plan: "prod_KvGd6YSTJyR3AP",
|
|
173
|
-
// name: "Plan Small",
|
|
174
|
-
// user_limit: "10",
|
|
175
|
-
// products_limit: "1000",
|
|
176
|
-
// type: "Enterprise",
|
|
177
|
-
// },
|
|
178
|
-
// src: "https://content-management-profile-prod.s3.amazonaws.com/id-426/426.png?1768253179478",
|
|
179
|
-
// },
|
|
180
|
-
|
|
181
|
-
// AUDITORES
|
|
182
|
-
|
|
183
|
-
user: {
|
|
184
|
-
"id_user": 425,
|
|
185
|
-
"name": "Auditor QA",
|
|
186
|
-
"last_name": null,
|
|
187
|
-
"email": "ladiboh785@mi166.com",
|
|
188
|
-
"position": "Tester",
|
|
291
|
+
user: {
|
|
292
|
+
"id_user": 3016,
|
|
293
|
+
"name": "Oscar",
|
|
294
|
+
"last_name": "Serna",
|
|
295
|
+
"email": "oserna@contentoh.com",
|
|
296
|
+
"position": null,
|
|
189
297
|
"telephone": null,
|
|
190
298
|
"country": null,
|
|
191
299
|
"id_company": 254,
|
|
192
|
-
"id_cognito": "
|
|
300
|
+
"id_cognito": "5934beeb-e8d2-4b00-b3a5-8c0fdc516e97",
|
|
193
301
|
"birth_Date": null,
|
|
194
302
|
"about_me": null,
|
|
195
303
|
"zip_code": null,
|
|
196
304
|
"address": null,
|
|
197
305
|
"job": null,
|
|
198
306
|
"id_stripe": null,
|
|
199
|
-
"id_role":
|
|
307
|
+
"id_role": 1,
|
|
200
308
|
"active": 1,
|
|
201
309
|
"is_retailer": 0,
|
|
202
|
-
"email_notify":
|
|
203
|
-
"is_user_tech":
|
|
310
|
+
"email_notify": 1,
|
|
311
|
+
"is_user_tech": "ADMIN-AS",
|
|
204
312
|
"is_onboarding": 0,
|
|
205
313
|
"membership": {
|
|
206
314
|
"id": 750,
|
|
@@ -213,7 +321,6 @@ user: {
|
|
|
213
321
|
"products_limit": "1000",
|
|
214
322
|
"type": "Enterprise"
|
|
215
323
|
},
|
|
216
|
-
"src": "https://content-management-profile-prod.s3.amazonaws.com/id-
|
|
324
|
+
"src": "https://content-management-profile-prod.s3.amazonaws.com/id-3016/3016.png?1763071181637"
|
|
217
325
|
}
|
|
218
|
-
|
|
219
326
|
};
|