contentoh-components-library 21.4.29 → 21.4.31
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/assets/images/defaultImages/check_circle.svg +10 -0
- package/dist/components/molecules/StripeCardForm/paymentForm.js +6 -1
- package/dist/components/molecules/StripeCardForm/styles.js +2 -2
- package/dist/components/molecules/StripeCardSelector/index.js +6 -1
- package/dist/components/molecules/StripeCardSelector/styles.js +2 -2
- package/package.json +1 -1
- package/src/assets/images/defaultImages/check_circle.svg +10 -0
- package/src/components/molecules/StripeCardForm/paymentForm.js +3 -2
- package/src/components/molecules/StripeCardForm/styles.js +11 -1
- package/src/components/molecules/StripeCardSelector/index.js +2 -0
- package/src/components/molecules/StripeCardSelector/styles.js +10 -1
- package/.env.development +0 -39
- package/.env.production +0 -36
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="check_circle">
|
|
3
|
+
<mask id="mask0_204_774" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="14" height="14">
|
|
4
|
+
<rect id="Bounding box" width="14" height="14" fill="#D9D9D9"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_204_774)">
|
|
7
|
+
<path id="check_circle_2" d="M5.9675 10.185L10.92 5.2325L10.115 4.445L5.9675 8.5925L3.8675 6.4925L3.08 7.28L5.9675 10.185ZM7 14C6.04333 14 5.13917 13.8162 4.2875 13.4487C3.43583 13.0812 2.69208 12.5796 2.05625 11.9437C1.42042 11.3079 0.91875 10.5642 0.55125 9.7125C0.18375 8.86083 0 7.95667 0 7C0 6.03167 0.18375 5.12167 0.55125 4.27C0.91875 3.41833 1.42042 2.6775 2.05625 2.0475C2.69208 1.4175 3.43583 0.91875 4.2875 0.55125C5.13917 0.18375 6.04333 0 7 0C7.96833 0 8.87833 0.18375 9.73 0.55125C10.5817 0.91875 11.3225 1.4175 11.9525 2.0475C12.5825 2.6775 13.0812 3.41833 13.4487 4.27C13.8162 5.12167 14 6.03167 14 7C14 7.95667 13.8162 8.86083 13.4487 9.7125C13.0812 10.5642 12.5825 11.3079 11.9525 11.9437C11.3225 12.5796 10.5817 13.0812 9.73 13.4487C8.87833 13.8162 7.96833 14 7 14Z" fill="#8A6CAA"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -21,6 +21,8 @@ var _styles = require("./styles");
|
|
|
21
21
|
|
|
22
22
|
var _reactStripeJs = require("@stripe/react-stripe-js");
|
|
23
23
|
|
|
24
|
+
var _check_circle = _interopRequireDefault(require("../../../assets/images/defaultImages/check_circle.svg"));
|
|
25
|
+
|
|
24
26
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
25
27
|
|
|
26
28
|
var PaymentForm = function PaymentForm(_ref) {
|
|
@@ -143,7 +145,10 @@ var PaymentForm = function PaymentForm(_ref) {
|
|
|
143
145
|
|
|
144
146
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_styles.PaymentFormContainer, {
|
|
145
147
|
isSelected: isSelected,
|
|
146
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("
|
|
148
|
+
children: [isSelected ? /*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
|
|
149
|
+
src: _check_circle.default,
|
|
150
|
+
alt: "Seleccionado"
|
|
151
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)("h2", {
|
|
147
152
|
children: labelForm
|
|
148
153
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
149
154
|
className: "card-fields",
|
|
@@ -19,9 +19,9 @@ var Container = _styledComponents.default.div(_templateObject || (_templateObjec
|
|
|
19
19
|
|
|
20
20
|
exports.Container = Container;
|
|
21
21
|
|
|
22
|
-
var PaymentFormContainer = _styledComponents.default.form(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n padding: 20px;\n border: 1px solid #f0f0f0;\n border-radius: 10px;\n\n h2 {\n font-size: 15px;\n line-height: 20px;\n color: #262626;\n font-family: ", ";\n\n & + * {\n margin-top: 10px;\n }\n }\n\n .card-fields {\n display: flex;\n flex-wrap: wrap;\n gap: 10px;\n .element {\n display: flex;\n align-items: center;\n\n label {\n color: #808080;\n font-family: ", ";\n font-size: 12px;\n display: flex;\n\n & + * {\n margin-left: 6px;\n }\n }\n\n .card-input {\n border: 1px solid #f0f0f0 !important;\n border-radius: 5px;\n padding: 3px;\n font-family: ", ";\n font-size: 12px;\n flex: 1;\n }\n\n &.card-name {\n flex: 1 0 100%;\n label + * {\n margin-left: 6px;\n }\n }\n\n &.card-number {\n flex: 1 0 100%;\n label + * {\n margin-left: 43px;\n }\n }\n\n &.expiration-date,\n &.cvc-code {\n flex: 1 1 49%;\n label + * {\n margin-left: 9px;\n }\n }\n }\n }\n ", "\n"])), _variables.FontFamily.RobotoMedium, _variables.FontFamily.Lato, _variables.FontFamily.Lato, function (_ref) {
|
|
22
|
+
var PaymentFormContainer = _styledComponents.default.form(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n padding: 20px;\n border: 1px solid #f0f0f0;\n border-radius: 10px;\n\n h2 {\n font-size: 15px;\n line-height: 20px;\n color: #262626;\n font-family: ", ";\n\n & + * {\n margin-top: 10px;\n }\n }\n\n .card-fields {\n display: flex;\n flex-wrap: wrap;\n gap: 10px;\n .element {\n display: flex;\n align-items: center;\n\n label {\n color: #808080;\n font-family: ", ";\n font-size: 12px;\n display: flex;\n\n & + * {\n margin-left: 6px;\n }\n }\n\n .card-input {\n border: 1px solid #f0f0f0 !important;\n border-radius: 5px;\n padding: 3px;\n font-family: ", ";\n font-size: 12px;\n flex: 1;\n background-color: #fff;\n }\n\n &.card-name {\n flex: 1 0 100%;\n label + * {\n margin-left: 6px;\n }\n }\n\n &.card-number {\n flex: 1 0 100%;\n label + * {\n margin-left: 43px;\n }\n }\n\n &.expiration-date,\n &.cvc-code {\n flex: 1 1 49%;\n label + * {\n margin-left: 9px;\n }\n }\n }\n }\n position: relative;\n ", "\n img {\n position: absolute;\n top: 10px;\n right: 10px;\n }\n"])), _variables.FontFamily.RobotoMedium, _variables.FontFamily.Lato, _variables.FontFamily.Lato, function (_ref) {
|
|
23
23
|
var isSelected = _ref.isSelected;
|
|
24
|
-
return isSelected && "border-color: #
|
|
24
|
+
return isSelected && "border-color: #8A6CAA;\n background: #F7F7FC;";
|
|
25
25
|
});
|
|
26
26
|
|
|
27
27
|
exports.PaymentFormContainer = PaymentFormContainer;
|
|
@@ -27,6 +27,8 @@ var _Card = require("../../atoms/Card");
|
|
|
27
27
|
|
|
28
28
|
var _Loading = require("../../atoms/Loading");
|
|
29
29
|
|
|
30
|
+
var _check_circle = _interopRequireDefault(require("../../../assets/images/defaultImages/check_circle.svg"));
|
|
31
|
+
|
|
30
32
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
31
33
|
|
|
32
34
|
var stripeApiKey = (0, _stripeJs.loadStripe)("".concat(process.env.REACT_APP_KEY_STRIPE));
|
|
@@ -100,7 +102,10 @@ var CardSelector = function CardSelector(_ref) {
|
|
|
100
102
|
onClick: function onClick() {
|
|
101
103
|
return _onClick && _onClick();
|
|
102
104
|
},
|
|
103
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("
|
|
105
|
+
children: [isSelected ? /*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
|
|
106
|
+
src: _check_circle.default,
|
|
107
|
+
alt: "Seleccionado"
|
|
108
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)("h2", {
|
|
104
109
|
children: "Tarjetas guardadas"
|
|
105
110
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactStripeJs.Elements, {
|
|
106
111
|
stripe: stripeApiKey,
|
|
@@ -15,8 +15,8 @@ var _styles = require("../StripeCardForm/styles");
|
|
|
15
15
|
|
|
16
16
|
var _templateObject;
|
|
17
17
|
|
|
18
|
-
var Container = (0, _styledComponents.default)(_styles.PaymentFormContainer)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n ", "\n"])), function (_ref) {
|
|
18
|
+
var Container = (0, _styledComponents.default)(_styles.PaymentFormContainer)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n position: relative;\n ", "\n img {\n position: absolute;\n top: 10px;\n right: 10px;\n }\n"])), function (_ref) {
|
|
19
19
|
var isSelected = _ref.isSelected;
|
|
20
|
-
return isSelected && "border-color: #
|
|
20
|
+
return isSelected && "border-color: #8A6CAA;\n background: #F7F7FC;";
|
|
21
21
|
});
|
|
22
22
|
exports.Container = Container;
|
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="check_circle">
|
|
3
|
+
<mask id="mask0_204_774" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="14" height="14">
|
|
4
|
+
<rect id="Bounding box" width="14" height="14" fill="#D9D9D9"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_204_774)">
|
|
7
|
+
<path id="check_circle_2" d="M5.9675 10.185L10.92 5.2325L10.115 4.445L5.9675 8.5925L3.8675 6.4925L3.08 7.28L5.9675 10.185ZM7 14C6.04333 14 5.13917 13.8162 4.2875 13.4487C3.43583 13.0812 2.69208 12.5796 2.05625 11.9437C1.42042 11.3079 0.91875 10.5642 0.55125 9.7125C0.18375 8.86083 0 7.95667 0 7C0 6.03167 0.18375 5.12167 0.55125 4.27C0.91875 3.41833 1.42042 2.6775 2.05625 2.0475C2.69208 1.4175 3.43583 0.91875 4.2875 0.55125C5.13917 0.18375 6.04333 0 7 0C7.96833 0 8.87833 0.18375 9.73 0.55125C10.5817 0.91875 11.3225 1.4175 11.9525 2.0475C12.5825 2.6775 13.0812 3.41833 13.4487 4.27C13.8162 5.12167 14 6.03167 14 7C14 7.95667 13.8162 8.86083 13.4487 9.7125C13.0812 10.5642 12.5825 11.3079 11.9525 11.9437C11.3225 12.5796 10.5817 13.0812 9.73 13.4487C8.87833 13.8162 7.96833 14 7 14Z" fill="#8A6CAA"/>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useState } from "react";
|
|
1
|
+
import { useState, useEffect } from "react";
|
|
2
2
|
import { PaymentFormContainer } from "./styles";
|
|
3
3
|
import {
|
|
4
4
|
useStripe,
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
CardExpiryElement,
|
|
8
8
|
CardCvcElement,
|
|
9
9
|
} from "@stripe/react-stripe-js";
|
|
10
|
-
import
|
|
10
|
+
import check from "../../../assets/images/defaultImages/check_circle.svg";
|
|
11
11
|
|
|
12
12
|
export const PaymentForm = ({
|
|
13
13
|
labelForm = "Pago con tarjeta",
|
|
@@ -88,6 +88,7 @@ export const PaymentForm = ({
|
|
|
88
88
|
|
|
89
89
|
return (
|
|
90
90
|
<PaymentFormContainer isSelected={isSelected}>
|
|
91
|
+
{isSelected ? <img src={check} alt="Seleccionado" /> : null}
|
|
91
92
|
<h2>{labelForm}</h2>
|
|
92
93
|
<div className="card-fields">
|
|
93
94
|
<div className="element card-name">
|
|
@@ -45,6 +45,7 @@ export const PaymentFormContainer = styled.form`
|
|
|
45
45
|
font-family: ${FontFamily.Lato};
|
|
46
46
|
font-size: 12px;
|
|
47
47
|
flex: 1;
|
|
48
|
+
background-color: #fff;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
&.card-name {
|
|
@@ -70,5 +71,14 @@ export const PaymentFormContainer = styled.form`
|
|
|
70
71
|
}
|
|
71
72
|
}
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
+
position: relative;
|
|
75
|
+
${({ isSelected }) =>
|
|
76
|
+
isSelected &&
|
|
77
|
+
`border-color: #8A6CAA;
|
|
78
|
+
background: #F7F7FC;`}
|
|
79
|
+
img {
|
|
80
|
+
position: absolute;
|
|
81
|
+
top: 10px;
|
|
82
|
+
right: 10px;
|
|
83
|
+
}
|
|
74
84
|
`;
|
|
@@ -5,6 +5,7 @@ import { Elements } from "@stripe/react-stripe-js";
|
|
|
5
5
|
import { getAllCards } from "./utils";
|
|
6
6
|
import { Card } from "../../atoms/Card";
|
|
7
7
|
import { Loading } from "../../atoms/Loading";
|
|
8
|
+
import check from "../../../assets/images/defaultImages/check_circle.svg";
|
|
8
9
|
const stripeApiKey = loadStripe(`${process.env.REACT_APP_KEY_STRIPE}`);
|
|
9
10
|
|
|
10
11
|
export const CardSelector = ({
|
|
@@ -37,6 +38,7 @@ export const CardSelector = ({
|
|
|
37
38
|
|
|
38
39
|
return stripeLoaded ? (
|
|
39
40
|
<Container isSelected={isSelected} onClick={() => onClick && onClick()}>
|
|
41
|
+
{isSelected ? <img src={check} alt="Seleccionado" /> : null}
|
|
40
42
|
<h2>Tarjetas guardadas</h2>
|
|
41
43
|
<Elements stripe={stripeApiKey}>
|
|
42
44
|
{cards.map((card) => (
|
|
@@ -2,5 +2,14 @@ import styled from "styled-components";
|
|
|
2
2
|
import { PaymentFormContainer } from "../StripeCardForm/styles";
|
|
3
3
|
|
|
4
4
|
export const Container = styled(PaymentFormContainer)`
|
|
5
|
-
|
|
5
|
+
position: relative;
|
|
6
|
+
${({ isSelected }) =>
|
|
7
|
+
isSelected &&
|
|
8
|
+
`border-color: #8A6CAA;
|
|
9
|
+
background: #F7F7FC;`}
|
|
10
|
+
img {
|
|
11
|
+
position: absolute;
|
|
12
|
+
top: 10px;
|
|
13
|
+
right: 10px;
|
|
14
|
+
}
|
|
6
15
|
`;
|
package/.env.development
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
REACT_APP_ARTICLE_DATA_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/articles-data
|
|
2
|
-
REACT_APP_ARTICLE_DATA_DATASHEET_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/articles-data/datasheets
|
|
3
|
-
REACT_APP_ARTICLE_DATA_DESCRIPTION_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/articles-data/descriptions
|
|
4
|
-
REACT_APP_ARTICLE_DATA_IMAGES_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/articles-data/images
|
|
5
|
-
REACT_APP_ARTICLE_DATA_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/articles-data
|
|
6
|
-
REACT_APP_VALID_EXPORT_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/valid-export
|
|
7
|
-
REACT_APP_SERVICES_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/services
|
|
8
|
-
REACT_APP_EVALUATION_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/evaluations
|
|
9
|
-
REACT_APP_SEND_EVAL = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/eval-status
|
|
10
|
-
REACT_APP_COMMENTS_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/comments
|
|
11
|
-
REACT_APP_USER_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/users
|
|
12
|
-
REACT_APP_ASSIGNATIONS_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/assignations
|
|
13
|
-
REACT_APP_TASKS_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/tasks
|
|
14
|
-
REACT_APP_USER_TASKS_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/user-tasks
|
|
15
|
-
REACT_APP_CART = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/cart
|
|
16
|
-
REACT_APP_RETAILER_REQUEST = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/retailers-request
|
|
17
|
-
REACT_APP_VERSIONS_ENDPOINT = https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/versions
|
|
18
|
-
REACT_APP_RETAILER_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/retailers
|
|
19
|
-
REACT_APP_READ_ORDERS_BY_STATUS=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/read-orders-by-status
|
|
20
|
-
REACT_APP_CATEGORY_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/categories
|
|
21
|
-
REACT_APP_READ_PROVIDERS=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/providers
|
|
22
|
-
REACT_APP_PENDING_INVITATIONS=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/pending-invitations
|
|
23
|
-
REACT_APP_PRODUCTS_CHAT_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/products-chat
|
|
24
|
-
REACT_APP_TICKETS_CHAT_ENDPOINT=https://ocqbzaa4a2.execute-api.us-east-1.amazonaws.com/dev/ticket-chat
|
|
25
|
-
REACT_APP_GET_AUDIT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/version-manager
|
|
26
|
-
REACT_APP_READ_MESSAGES=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/read-messages
|
|
27
|
-
REACT_APP_CREATE_MESSAGES=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/create-messages
|
|
28
|
-
REACT_APP_CARDS_ENDPOINT=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/cards
|
|
29
|
-
REACT_APP_PAYMENTS=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/payments
|
|
30
|
-
REACT_APP_EVALUATION_REFACTOR=https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/refactor-change-status
|
|
31
|
-
|
|
32
|
-
REACT_APP_IMAGES_ENDPOINT=https://content-management-images.s3.amazonaws.com
|
|
33
|
-
REACT_APP_IMAGES_BUCKET=content-management-images
|
|
34
|
-
REACT_APP_IMAGES_PROFILE_BUCKET=content-management-profile
|
|
35
|
-
REACT_APP_KUTS3=AKIA5CPHLQTTS22HCGHW
|
|
36
|
-
REACT_APP_AKUTS3=RSpwEaM0fsLEgN7BJzRyCKqyU0lNExTsPUvxyNXm
|
|
37
|
-
REACT_APP_USER_POOL_ID=us-east-1_XMZQdqkGj
|
|
38
|
-
REACT_APP_USER_POOL_WEB_CLIENT_ID=5ac8tpgs6gbsq13frvrpieep40
|
|
39
|
-
REACT_APP_KEY_STRIPE=pk_test_51J0bb0HCkqMP7wBlGPoEHU6bVLszHT5qHa1uPZp4ThgaMFYbvOAcKfI8q1fsWhbiO02Zn78lgYwuElcwfrA9rnaF00fA4q5zcs
|
package/.env.production
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
REACT_APP_ARTICLE_DATA_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/articles-data
|
|
2
|
-
REACT_APP_ARTICLE_DATA_DATASHEET_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/articles-data/datasheets
|
|
3
|
-
REACT_APP_ARTICLE_DATA_DESCRIPTION_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/articles-data/descriptions
|
|
4
|
-
REACT_APP_ARTICLE_DATA_IMAGES_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/articles-data/images
|
|
5
|
-
REACT_APP_ARTICLE_DATA_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/articles-data
|
|
6
|
-
REACT_APP_VALID_EXPORT_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/valid-export
|
|
7
|
-
REACT_APP_SERVICES_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/services
|
|
8
|
-
REACT_APP_EVALUATION_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/evaluations
|
|
9
|
-
REACT_APP_SEND_EVAL = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/eval-status
|
|
10
|
-
REACT_APP_COMMENTS_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/comments
|
|
11
|
-
REACT_APP_USER_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/users
|
|
12
|
-
REACT_APP_ASSIGNATIONS_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/assignations
|
|
13
|
-
REACT_APP_TASKS_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/tasks
|
|
14
|
-
REACT_APP_USER_TASKS_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/user-tasks
|
|
15
|
-
REACT_APP_CART = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/cart
|
|
16
|
-
REACT_APP_RETAILER_REQUEST = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/retailers-request
|
|
17
|
-
REACT_APP_VERSIONS_ENDPOINT = https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/versions
|
|
18
|
-
REACT_APP_RETAILER_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/retailers
|
|
19
|
-
REACT_APP_READ_ORDERS_BY_STATUS=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/read-orders-by-status
|
|
20
|
-
REACT_APP_CATEGORY_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/categories
|
|
21
|
-
REACT_APP_READ_PROVIDERS=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/providers
|
|
22
|
-
REACT_APP_PENDING_INVITATIONS=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/pending-invitations
|
|
23
|
-
REACT_APP_PRODUCTS_CHAT_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/products-chat
|
|
24
|
-
REACT_APP_TICKETS_CHAT_ENDPOINT=https://0g5ugr1kzl.execute-api.us-east-1.amazonaws.com/prod/ticket-chat
|
|
25
|
-
REACT_APP_GET_AUDIT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/version-manager
|
|
26
|
-
REACT_APP_CARDS_ENDPOINT=https://3v43slee1m.execute-api.us-east-1.amazonaws.com/prod/cards
|
|
27
|
-
|
|
28
|
-
REACT_APP_IMAGES_ENDPOINT=https://content-management-images.s3.amazonaws.com
|
|
29
|
-
REACT_APP_IMAGES_BUCKET=content-management-images-prod
|
|
30
|
-
REACT_APP_IMAGES_PROFILE_BUCKET=content-management-profile-prod
|
|
31
|
-
REACT_APP_KUTS3=AKIA5CPHLQTTS22HCGHW
|
|
32
|
-
REACT_APP_AKUTS3=RSpwEaM0fsLEgN7BJzRyCKqyU0lNExTsPUvxyNXm
|
|
33
|
-
REACT_APP_USER_POOL_ID=us-east-1_XMZQdqkGj
|
|
34
|
-
REACT_APP_USER_POOL_WEB_CLIENT_ID=5ac8tpgs6gbsq13frvrpieep40
|
|
35
|
-
|
|
36
|
-
REACT_APP_KEY_STRIPE=pk_live_51J0bb0HCkqMP7wBlz50UUsw9MCwMrIUKyRVE5tTBLMLm4Tz44FWckOfeJ41kj3NEyX6EvPqti1kMFSWrP7SFj6UX00dJ2D3xsm
|