contentoh-components-library 21.5.93 → 21.5.95
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/ai/utils/compare-strings.js +45 -0
- package/dist/components/atoms/GeneralButton/styles.js +1 -1
- package/dist/components/atoms/GeneralInput/index.js +245 -54
- package/dist/components/atoms/GeneralInput/styles.js +7 -3
- package/dist/components/atoms/InputFormatter/index.js +223 -68
- package/dist/components/atoms/InputFormatter/styles.js +20 -4
- package/dist/components/molecules/StatusAsignationInfo/index.js +11 -1
- package/dist/components/molecules/TabsMenu/index.js +13 -12
- package/dist/components/molecules/TagAndInput/index.js +361 -24
- package/dist/components/molecules/TagAndInput/styles.js +2 -2
- package/dist/components/organisms/ChangeStatusModal/index.js +531 -0
- package/dist/components/organisms/ChangeStatusModal/styles.js +85 -0
- package/dist/components/organisms/FullProductNameHeader/index.js +6 -22
- package/dist/components/organisms/InputGroup/index.js +22 -18
- package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +150 -337
- package/dist/components/pages/ProviderProductEdition/context/provider-product-edition.context.js +15 -15
- package/dist/components/pages/ProviderProductEdition/index.js +408 -381
- package/dist/components/pages/ProviderProductEdition/utils.js +1 -0
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +179 -196
- package/dist/components/pages/RetailerProductEdition/context/provider-product-edition.context.js +59 -260
- package/dist/components/pages/RetailerProductEdition/context/reducers/product.js +50 -38
- package/dist/components/pages/RetailerProductEdition/index.js +1719 -2237
- package/dist/components/pages/RetailerProductEdition/styles.js +4 -2
- package/dist/components/pages/RetailerProductEdition/utils.js +251 -2
- package/dist/contexts/AiProductEdition.js +230 -158
- package/dist/global-files/statusDictionary.js +103 -0
- package/package.json +4 -2
- package/src/ai/utils/compare-strings.js +45 -0
- 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 +5 -0
- package/src/assets/images/Icons/reload.png +0 -0
- package/src/components/atoms/GeneralButton/styles.js +4 -0
- package/src/components/atoms/GeneralInput/index.js +237 -60
- package/src/components/atoms/GeneralInput/styles.js +81 -0
- package/src/components/atoms/InputFormatter/index.js +200 -51
- package/src/components/atoms/InputFormatter/styles.js +284 -0
- package/src/components/atoms/RetailerSelector/RetailerSelector.stories.js +10 -0
- package/src/components/atoms/RetailerSelector/index.js +3 -0
- package/src/components/atoms/RetailerSelector/styles.js +0 -0
- package/src/components/molecules/StatusAsignationInfo/index.js +9 -1
- package/src/components/molecules/TabsMenu/index.js +12 -11
- package/src/components/molecules/TagAndInput/index.js +286 -21
- package/src/components/molecules/TagAndInput/styles.js +59 -17
- package/src/components/organisms/ChangeStatusModal/index.jsx +488 -0
- package/src/components/organisms/ChangeStatusModal/styles.js +333 -0
- package/src/components/organisms/FullProductNameHeader/index.js +4 -28
- package/src/components/organisms/FullTabsMenu/index.js +1 -1
- package/src/components/organisms/InputGroup/index.js +12 -4
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +174 -202
- package/src/components/pages/ProviderProductEdition/context/provider-product-edition.context.jsx +14 -14
- package/src/components/pages/ProviderProductEdition/index.js +489 -457
- package/src/components/pages/ProviderProductEdition/utils.js +2 -2
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +201 -224
- package/src/components/pages/RetailerProductEdition/context/provider-product-edition.context.jsx +575 -0
- package/src/components/pages/RetailerProductEdition/context/provider-product-edition.reducer.js +62 -0
- package/src/components/pages/RetailerProductEdition/context/reducers/active-state.js +344 -0
- package/src/components/pages/RetailerProductEdition/context/reducers/inputs.js +155 -0
- package/src/components/pages/RetailerProductEdition/context/reducers/product.js +114 -0
- package/src/components/pages/RetailerProductEdition/context/reducers/system.js +60 -0
- package/src/components/pages/RetailerProductEdition/index.js +1545 -1718
- package/src/components/pages/RetailerProductEdition/index_old.js +1979 -0
- package/src/components/pages/RetailerProductEdition/stories/Auditor.stories.js +101 -0
- package/src/components/pages/RetailerProductEdition/stories/ImageEditor.stories.js +115 -0
- package/src/components/pages/RetailerProductEdition/stories/TextEditor.stories.js +174 -0
- package/src/components/pages/RetailerProductEdition/styles.js +67 -2
- package/src/components/pages/RetailerProductEdition/utils.js +240 -0
- package/src/contexts/AiProductEdition.jsx +339 -0
- package/src/global-files/statusDictionary.js +103 -0
|
@@ -14,6 +14,7 @@ var normalizeProduct = function normalizeProduct(product) {
|
|
|
14
14
|
return {
|
|
15
15
|
id_retailer: rel.id_retailer || rel.retailer_id,
|
|
16
16
|
retailer: rel.retailer_name || rel.retailerName,
|
|
17
|
+
name: rel.retailer_name || rel.retailerName,
|
|
17
18
|
id_category: rel.id_category,
|
|
18
19
|
category: rel.category_name || rel.categoryName,
|
|
19
20
|
image: "https://content-management-images.s3.amazonaws.com/retailers/".concat(rel.id_retailer || rel.retailer_id, ".png")
|
|
@@ -31,261 +31,244 @@ RetailerProductEditionDefault.args = {
|
|
|
31
31
|
"Ficha técnica": false,
|
|
32
32
|
Imágenes: false
|
|
33
33
|
},
|
|
34
|
-
token: "
|
|
34
|
+
token: "eyJraWQiOiJEV3owZnNieXg2MXNFcVduN3RCXC81bVhod3ZNbFZIOTgwUnZcL3RjT0lKdEk9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiI4ZDAxMDIxNC01YmZhLTQzYzMtOTZmYi1jNTU2ZGMwNTc3NGIiLCJjb2duaXRvOmdyb3VwcyI6WyJjb2xhYm9yYWRvcmVzX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfbFN6UVo0WjdSIiwiY29nbml0bzp1c2VybmFtZSI6IjhkMDEwMjE0LTViZmEtNDNjMy05NmZiLWM1NTZkYzA1Nzc0YiIsImF1ZCI6IjUyZDlza2tkY2c4cWpwODhvb2sxdXNlNm1rIiwiZXZlbnRfaWQiOiI1MDgwMTVmMy1mZGVkLTQ2ODUtYTIxNy1mYzgyMTg0ZWRmNGMiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTc2ODI1MzE3NywibmFtZSI6IkNvbGFib3JhZG9yIiwicGhvbmVfbnVtYmVyIjoiKzUyMTExMSIsImV4cCI6MTc2ODI1Njc3NywiaWF0IjoxNzY4MjUzMTc3LCJlbWFpbCI6ImthcmFmZTMyMThAbW9tMmtpZC5jb20ifQ.QiZiscuTvrur0g328Zmh2bI-kZyg7YO_T5jT63096JNuSxGnX9wpK87cVTV1dED4ruD-2NMsgLShUIMcklAg17FL6i5_vCuB1dSIDY0LaybvSpriFJaVVdMUIMGFi_1Q7bI9qqyXYkevcf-HO33vVPdU-_-4-u8YRd-QganUk35vPYPh9vFJWbC0Qtvv25ZR4L2xuRIXx4e7StlTvZXysnYL8A84jkK1zn6d77V-9GqQQW8exO6sBW7R6cGt55vnF80NIfG_9lAqCK0PcZH4o50aqrAVhtfV5edlEmXBHeGK5R3Sz5iTeKb51QF3TWVFZCYGvQJ7FShulUWHcm3X2Q",
|
|
35
35
|
productSelected: {
|
|
36
|
-
"articleId":
|
|
36
|
+
"articleId": 145210,
|
|
37
37
|
"services": {
|
|
38
38
|
"datasheets": 1,
|
|
39
39
|
"descriptions": 1,
|
|
40
40
|
"images": 1
|
|
41
41
|
},
|
|
42
|
-
"orderId":
|
|
43
|
-
"city": "",
|
|
44
|
-
"status": "
|
|
45
|
-
"datasheet_status": "
|
|
42
|
+
"orderId": 10459,
|
|
43
|
+
"city": "CDMX, México",
|
|
44
|
+
"status": "AC",
|
|
45
|
+
"datasheet_status": "AC",
|
|
46
46
|
"prio": "none",
|
|
47
|
-
"version":
|
|
48
|
-
"description_status": "
|
|
49
|
-
"images_status": "
|
|
47
|
+
"version": 3,
|
|
48
|
+
"description_status": "AC",
|
|
49
|
+
"images_status": "AC",
|
|
50
50
|
"statusByRetailer": [{
|
|
51
|
-
"status": "
|
|
51
|
+
"status": "AC",
|
|
52
52
|
"service": "datasheet",
|
|
53
|
-
"retailer_id":
|
|
54
|
-
"task_user_group_id":
|
|
53
|
+
"retailer_id": 13,
|
|
54
|
+
"task_user_group_id": 4
|
|
55
55
|
}, {
|
|
56
|
-
"status": "
|
|
56
|
+
"status": "AC",
|
|
57
57
|
"service": "description",
|
|
58
|
-
"retailer_id":
|
|
59
|
-
"task_user_group_id":
|
|
58
|
+
"retailer_id": 13,
|
|
59
|
+
"task_user_group_id": 4
|
|
60
60
|
}, {
|
|
61
|
-
"status": "
|
|
61
|
+
"status": "AC",
|
|
62
62
|
"service": "images",
|
|
63
|
-
"retailer_id":
|
|
64
|
-
"task_user_group_id":
|
|
63
|
+
"retailer_id": 13,
|
|
64
|
+
"task_user_group_id": 4
|
|
65
|
+
}, {
|
|
66
|
+
"status": "AC",
|
|
67
|
+
"service": "datasheet",
|
|
68
|
+
"retailer_id": 29,
|
|
69
|
+
"task_user_group_id": 4
|
|
70
|
+
}, {
|
|
71
|
+
"status": "AC",
|
|
72
|
+
"service": "description",
|
|
73
|
+
"retailer_id": 29,
|
|
74
|
+
"task_user_group_id": 4
|
|
75
|
+
}, {
|
|
76
|
+
"status": "AC",
|
|
77
|
+
"service": "images",
|
|
78
|
+
"retailer_id": 29,
|
|
79
|
+
"task_user_group_id": 4
|
|
80
|
+
}, {
|
|
81
|
+
"status": "AC",
|
|
82
|
+
"service": "datasheet",
|
|
83
|
+
"retailer_id": 36,
|
|
84
|
+
"task_user_group_id": 4
|
|
85
|
+
}, {
|
|
86
|
+
"status": "AC",
|
|
87
|
+
"service": "description",
|
|
88
|
+
"retailer_id": 36,
|
|
89
|
+
"task_user_group_id": 4
|
|
90
|
+
}, {
|
|
91
|
+
"status": "AC",
|
|
92
|
+
"service": "images",
|
|
93
|
+
"retailer_id": 36,
|
|
94
|
+
"task_user_group_id": 4
|
|
95
|
+
}, {
|
|
96
|
+
"status": "AC",
|
|
97
|
+
"service": "datasheet",
|
|
98
|
+
"retailer_id": 70,
|
|
99
|
+
"task_user_group_id": 4
|
|
100
|
+
}, {
|
|
101
|
+
"status": "AC",
|
|
102
|
+
"service": "description",
|
|
103
|
+
"retailer_id": 70,
|
|
104
|
+
"task_user_group_id": 4
|
|
105
|
+
}, {
|
|
106
|
+
"status": "AC",
|
|
107
|
+
"service": "images",
|
|
108
|
+
"retailer_id": 70,
|
|
109
|
+
"task_user_group_id": 4
|
|
65
110
|
}],
|
|
66
111
|
"article": {
|
|
67
|
-
"id_article":
|
|
68
|
-
"id_category": "
|
|
69
|
-
"brand": "
|
|
70
|
-
"name": "
|
|
71
|
-
"upc": "
|
|
72
|
-
"sku":
|
|
73
|
-
"timestamp": "
|
|
112
|
+
"id_article": 145210,
|
|
113
|
+
"id_category": "4874",
|
|
114
|
+
"brand": "Generico",
|
|
115
|
+
"name": "Serna Status Bug 7",
|
|
116
|
+
"upc": "16168153",
|
|
117
|
+
"sku": "15631130151",
|
|
118
|
+
"timestamp": "2026-05-07T16:00:51.000Z",
|
|
74
119
|
"active": 1,
|
|
75
|
-
"company_id":
|
|
76
|
-
"company_name": "
|
|
120
|
+
"company_id": 291,
|
|
121
|
+
"company_name": "LATAM LOGISTICS",
|
|
77
122
|
"country": "México",
|
|
78
|
-
"id_order":
|
|
79
|
-
"id_datasheet_especialist":
|
|
123
|
+
"id_order": 10459,
|
|
124
|
+
"id_datasheet_especialist": 426,
|
|
80
125
|
"id_datasheet_facilitator": null,
|
|
81
|
-
"id_description_especialist":
|
|
126
|
+
"id_description_especialist": 426,
|
|
82
127
|
"id_description_facilitator": null,
|
|
83
|
-
"id_images_especialist":
|
|
128
|
+
"id_images_especialist": 427,
|
|
84
129
|
"id_images_facilitator": null,
|
|
85
|
-
"id_auditor":
|
|
130
|
+
"id_auditor": 425,
|
|
86
131
|
"id_recepcionist": null,
|
|
87
|
-
"category": "
|
|
132
|
+
"category": "Productos de Higiene Personal|Productos de Higiene Personal|Productos de Higiene Personal",
|
|
88
133
|
"categoryRetailer": [{
|
|
89
|
-
"id_category":
|
|
90
|
-
"id_retailer": 17,
|
|
91
|
-
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
92
|
-
"retailer_name": "Genérico"
|
|
93
|
-
}, {
|
|
94
|
-
"id_category": 3430,
|
|
95
|
-
"id_retailer": 12,
|
|
96
|
-
"category_name": "Departamento General La Comer|Departamento General|Departamento General",
|
|
97
|
-
"retailer_name": "La Comer"
|
|
98
|
-
}, {
|
|
99
|
-
"id_category": 3433,
|
|
100
|
-
"id_retailer": 24,
|
|
101
|
-
"category_name": "Limpieza Del Hogar|Limpieza Del Hogar|Limpieza Del Hogar",
|
|
102
|
-
"retailer_name": "Alsuper"
|
|
103
|
-
}, {
|
|
104
|
-
"id_category": 3456,
|
|
105
|
-
"id_retailer": 41,
|
|
106
|
-
"category_name": "Categoría Genérica Chapa|Categoría Genérica|Categoría Genérica",
|
|
107
|
-
"retailer_name": "Chapa"
|
|
108
|
-
}, {
|
|
109
|
-
"id_category": 3499,
|
|
110
|
-
"id_retailer": 20,
|
|
111
|
-
"category_name": "Consumibles Cornershop|Consumibles|Consumibles",
|
|
112
|
-
"retailer_name": "Cornershop"
|
|
113
|
-
}, {
|
|
114
|
-
"id_category": 3507,
|
|
115
|
-
"id_retailer": 38,
|
|
116
|
-
"category_name": "Hogar|Artículos de Limpieza|Multiusos",
|
|
117
|
-
"retailer_name": "Del Sol"
|
|
118
|
-
}, {
|
|
119
|
-
"id_category": 3562,
|
|
134
|
+
"id_category": 3561,
|
|
120
135
|
"id_retailer": 29,
|
|
121
|
-
"category_name": "
|
|
136
|
+
"category_name": "Abarrotes Farmacias del Ahorro|Abarrotes|Abarrotes",
|
|
122
137
|
"retailer_name": "Farmacias del Ahorro"
|
|
123
138
|
}, {
|
|
124
|
-
"id_category":
|
|
125
|
-
"id_retailer":
|
|
126
|
-
"category_name": "
|
|
127
|
-
"retailer_name": "
|
|
128
|
-
}, {
|
|
129
|
-
"id_category": 3604,
|
|
130
|
-
"id_retailer": 18,
|
|
131
|
-
"category_name": "Categoría Genérica Google|Categoría Genérica|Categoría Genérica",
|
|
132
|
-
"retailer_name": "Google"
|
|
133
|
-
}, {
|
|
134
|
-
"id_category": 3741,
|
|
135
|
-
"id_retailer": 6,
|
|
136
|
-
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
137
|
-
"retailer_name": "HEB"
|
|
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
|
-
"id_category": 4796,
|
|
145
|
-
"id_retailer": 39,
|
|
146
|
-
"category_name": "Limpieza y Hogar|Limpieza General|Limpieza General",
|
|
147
|
-
"retailer_name": "Justo"
|
|
139
|
+
"id_category": 4216,
|
|
140
|
+
"id_retailer": 70,
|
|
141
|
+
"category_name": "Limpieza|Cuarto de Lavado|Cuarto de Lavado",
|
|
142
|
+
"retailer_name": "Bodega Aurrera"
|
|
148
143
|
}, {
|
|
149
|
-
"id_category":
|
|
150
|
-
"id_retailer": 7,
|
|
151
|
-
"category_name": "Categoría Genérica Mega|Categoría Genérica|Categoría Genérica",
|
|
152
|
-
"retailer_name": "Mega"
|
|
153
|
-
}, {
|
|
154
|
-
"id_category": 4853,
|
|
155
|
-
"id_retailer": 33,
|
|
156
|
-
"category_name": "Cuidado Hogar|Lavatrastes|Lavatrastes Liquidos",
|
|
157
|
-
"retailer_name": "Merza"
|
|
158
|
-
}, {
|
|
159
|
-
"id_category": 4873,
|
|
144
|
+
"id_category": 4874,
|
|
160
145
|
"id_retailer": 36,
|
|
161
|
-
"category_name": "Productos
|
|
146
|
+
"category_name": "Productos de Higiene Personal|Productos de Higiene Personal|Productos de Higiene Personal",
|
|
162
147
|
"retailer_name": "Oxxo"
|
|
163
148
|
}, {
|
|
164
|
-
"id_category":
|
|
165
|
-
"id_retailer": 16,
|
|
166
|
-
"category_name": "Categoría Genérica Rappi|Categoría Genérica|Categoría Genérica",
|
|
167
|
-
"retailer_name": "Rappi"
|
|
168
|
-
}, {
|
|
169
|
-
"id_category": 5918,
|
|
170
|
-
"id_retailer": 4,
|
|
171
|
-
"category_name": "Consumibles|Productos de Limpieza y Lavandería|Jabones y Lavatrastes",
|
|
172
|
-
"retailer_name": "Walmart Super y Superama"
|
|
173
|
-
}, {
|
|
174
|
-
"id_category": 7126,
|
|
149
|
+
"id_category": 4941,
|
|
175
150
|
"id_retailer": 13,
|
|
176
|
-
"category_name": "
|
|
151
|
+
"category_name": "Supermercado Soriana|Supermercado|Supermercado",
|
|
177
152
|
"retailer_name": "Soriana"
|
|
178
|
-
}, {
|
|
179
|
-
"id_category": 7196,
|
|
180
|
-
"id_retailer": 5,
|
|
181
|
-
"category_name": "Categoría Consumibles Chedraui|Consumibles|Productos de Limpieza y Lavandería",
|
|
182
|
-
"retailer_name": "Chedraui"
|
|
183
153
|
}]
|
|
184
154
|
},
|
|
185
155
|
"retailers": [{
|
|
186
|
-
"id": 4,
|
|
187
|
-
"name": "Walmart Super y Superama"
|
|
188
|
-
}, {
|
|
189
|
-
"id": 5,
|
|
190
|
-
"name": "Chedraui"
|
|
191
|
-
}, {
|
|
192
|
-
"id": 6,
|
|
193
|
-
"name": "HEB"
|
|
194
|
-
}, {
|
|
195
|
-
"id": 8,
|
|
196
|
-
"name": "Fragua"
|
|
197
|
-
}, {
|
|
198
|
-
"id": 12,
|
|
199
|
-
"name": "La Comer"
|
|
200
|
-
}, {
|
|
201
156
|
"id": 13,
|
|
202
157
|
"name": "Soriana"
|
|
203
|
-
}, {
|
|
204
|
-
"id": 16,
|
|
205
|
-
"name": "Rappi"
|
|
206
|
-
}, {
|
|
207
|
-
"id": 17,
|
|
208
|
-
"name": "Genérico"
|
|
209
|
-
}, {
|
|
210
|
-
"id": 20,
|
|
211
|
-
"name": "Cornershop"
|
|
212
|
-
}, {
|
|
213
|
-
"id": 24,
|
|
214
|
-
"name": "Alsuper"
|
|
215
158
|
}, {
|
|
216
159
|
"id": 29,
|
|
217
160
|
"name": "Farmacias del Ahorro"
|
|
218
161
|
}, {
|
|
219
162
|
"id": 36,
|
|
220
163
|
"name": "Oxxo"
|
|
164
|
+
}, {
|
|
165
|
+
"id": 70,
|
|
166
|
+
"name": "Bodega Aurrera"
|
|
221
167
|
}],
|
|
222
168
|
"country": "México",
|
|
223
|
-
"upc": "
|
|
169
|
+
"upc": "16168153"
|
|
224
170
|
},
|
|
225
171
|
// location: {
|
|
226
|
-
//
|
|
227
|
-
//
|
|
228
|
-
//
|
|
229
|
-
//
|
|
230
|
-
//
|
|
172
|
+
// product: { articleId: 126855, versionId: 3 },
|
|
173
|
+
// state: {
|
|
174
|
+
// withChat: true,
|
|
175
|
+
// chatType: "product_status",
|
|
176
|
+
// },
|
|
177
|
+
// },
|
|
178
|
+
// EDICION IMAGENES
|
|
179
|
+
// user: {
|
|
180
|
+
// "id_user": 427,
|
|
181
|
+
// "name": "Especialista Edición",
|
|
182
|
+
// "last_name": null,
|
|
183
|
+
// "email": "kikije1467@mtlcz.com",
|
|
184
|
+
// "position": "Tester",
|
|
185
|
+
// "telephone": null,
|
|
186
|
+
// "country": null,
|
|
187
|
+
// "id_company": 254,
|
|
188
|
+
// "id_cognito": "c7e5a6a4-2b3f-4d54-af98-9e09a4cbc01e",
|
|
189
|
+
// "birth_Date": null,
|
|
190
|
+
// "about_me": null,
|
|
191
|
+
// "zip_code": null,
|
|
192
|
+
// "address": null,
|
|
193
|
+
// "job": null,
|
|
194
|
+
// "id_stripe": null,
|
|
195
|
+
// "id_role": 8,
|
|
196
|
+
// "active": 1,
|
|
197
|
+
// "is_retailer": 0,
|
|
198
|
+
// "email_notify": null,
|
|
199
|
+
// "is_user_tech": null,
|
|
200
|
+
// "is_onboarding": 0,
|
|
201
|
+
// "membership": {
|
|
202
|
+
// "id": 750,
|
|
203
|
+
// "start_date": "2022-01-07T21:32:54.000Z",
|
|
204
|
+
// "end_date": "2023-01-07T21:32:54.000Z",
|
|
205
|
+
// "planID": 6,
|
|
206
|
+
// "plan": "prod_KvGd6YSTJyR3AP",
|
|
207
|
+
// "name": "Plan Small",
|
|
208
|
+
// "user_limit": "10",
|
|
209
|
+
// "products_limit": "1000",
|
|
210
|
+
// "type": "Enterprise"
|
|
211
|
+
// },
|
|
212
|
+
// "src": "https://content-management-profile-prod.s3.amazonaws.com/id-427/427.png?1775592220312"
|
|
231
213
|
// },
|
|
232
|
-
//
|
|
233
|
-
//
|
|
234
|
-
//
|
|
235
|
-
//
|
|
236
|
-
//
|
|
237
|
-
//
|
|
238
|
-
//
|
|
239
|
-
//
|
|
240
|
-
//
|
|
241
|
-
//
|
|
242
|
-
//
|
|
243
|
-
//
|
|
244
|
-
//
|
|
245
|
-
//
|
|
246
|
-
//
|
|
247
|
-
//
|
|
248
|
-
//
|
|
249
|
-
//
|
|
250
|
-
//
|
|
251
|
-
//
|
|
252
|
-
//
|
|
253
|
-
//
|
|
254
|
-
//
|
|
255
|
-
//
|
|
256
|
-
//
|
|
257
|
-
//
|
|
258
|
-
//
|
|
259
|
-
//
|
|
260
|
-
//
|
|
261
|
-
//
|
|
262
|
-
//
|
|
263
|
-
//
|
|
264
|
-
//
|
|
265
|
-
//
|
|
266
|
-
//
|
|
214
|
+
//TEXTOS
|
|
215
|
+
// user: {
|
|
216
|
+
// id_user: 426,
|
|
217
|
+
// name: "Especialista Textos",
|
|
218
|
+
// last_name: null,
|
|
219
|
+
// email: "karafe3218@mom2kid.com",
|
|
220
|
+
// position: "Tester",
|
|
221
|
+
// telephone: null,
|
|
222
|
+
// country: null,
|
|
223
|
+
// id_company: 254,
|
|
224
|
+
// id_cognito: "8d010214-5bfa-43c3-96fb-c556dc05774b",
|
|
225
|
+
// birth_Date: null,
|
|
226
|
+
// about_me: null,
|
|
227
|
+
// zip_code: null,
|
|
228
|
+
// address: null,
|
|
229
|
+
// job: null,
|
|
230
|
+
// id_stripe: null,
|
|
231
|
+
// id_role: 7,
|
|
232
|
+
// active: 1,
|
|
233
|
+
// is_retailer: 0,
|
|
234
|
+
// email_notify: null,
|
|
235
|
+
// is_user_tech: null,
|
|
236
|
+
// is_onboarding: 0,
|
|
237
|
+
// membership: {
|
|
238
|
+
// id: 750,
|
|
239
|
+
// start_date: "2022-01-07T21:32:54.000Z",
|
|
240
|
+
// end_date: "2023-01-07T21:32:54.000Z",
|
|
241
|
+
// planID: 6,
|
|
242
|
+
// plan: "prod_KvGd6YSTJyR3AP",
|
|
243
|
+
// name: "Plan Small",
|
|
244
|
+
// user_limit: "10",
|
|
245
|
+
// products_limit: "1000",
|
|
246
|
+
// type: "Enterprise",
|
|
247
|
+
// },
|
|
248
|
+
// src: "https://content-management-profile-prod.s3.amazonaws.com/id-426/426.png?1768253179478",
|
|
267
249
|
// },
|
|
250
|
+
// AUDITORES
|
|
268
251
|
user: {
|
|
269
|
-
"id_user":
|
|
270
|
-
"name": "
|
|
271
|
-
"last_name":
|
|
272
|
-
"email": "
|
|
273
|
-
"position":
|
|
252
|
+
"id_user": 425,
|
|
253
|
+
"name": "Auditor QA",
|
|
254
|
+
"last_name": null,
|
|
255
|
+
"email": "ladiboh785@mi166.com",
|
|
256
|
+
"position": "Tester",
|
|
274
257
|
"telephone": null,
|
|
275
258
|
"country": null,
|
|
276
259
|
"id_company": 254,
|
|
277
|
-
"id_cognito": "
|
|
260
|
+
"id_cognito": "23a3f496-4e38-4e12-9bf5-7f90b77a2f35",
|
|
278
261
|
"birth_Date": null,
|
|
279
262
|
"about_me": null,
|
|
280
263
|
"zip_code": null,
|
|
281
264
|
"address": null,
|
|
282
265
|
"job": null,
|
|
283
266
|
"id_stripe": null,
|
|
284
|
-
"id_role":
|
|
267
|
+
"id_role": 6,
|
|
285
268
|
"active": 1,
|
|
286
269
|
"is_retailer": 0,
|
|
287
|
-
"email_notify":
|
|
288
|
-
"is_user_tech":
|
|
270
|
+
"email_notify": null,
|
|
271
|
+
"is_user_tech": null,
|
|
289
272
|
"is_onboarding": 0,
|
|
290
273
|
"membership": {
|
|
291
274
|
"id": 750,
|
|
@@ -298,6 +281,6 @@ RetailerProductEditionDefault.args = {
|
|
|
298
281
|
"products_limit": "1000",
|
|
299
282
|
"type": "Enterprise"
|
|
300
283
|
},
|
|
301
|
-
"src": "https://content-management-profile-prod.s3.amazonaws.com/id-
|
|
284
|
+
"src": "https://content-management-profile-prod.s3.amazonaws.com/id-425/425.png?1778260157973"
|
|
302
285
|
}
|
|
303
286
|
};
|