@bigbinary/neeto-integrations-frontend 3.1.2 → 3.1.4
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/Connect.js +2 -2
- package/dist/Daily.js +6 -5
- package/dist/Daily.js.map +1 -1
- package/dist/DailyForm.js +4 -4
- package/dist/Demo.js +1 -1
- package/dist/DisconnectAlert.js +2 -30
- package/dist/DisconnectAlert.js.map +1 -1
- package/dist/Finish.js +2 -2
- package/dist/{Form-7001e768.js → Form-B8iEPtJp.js} +4 -4
- package/dist/{Form-7001e768.js.map → Form-B8iEPtJp.js.map} +1 -1
- package/dist/{Form-f0bbc792.js → Form-DCVkfnek.js} +22 -36
- package/dist/{Form-f0bbc792.js.map → Form-DCVkfnek.js.map} +1 -1
- package/dist/GoogleCalendar.js +4 -19
- package/dist/GoogleCalendar.js.map +1 -1
- package/dist/Manage.js +2 -1
- package/dist/Manage.js.map +1 -1
- package/dist/Twilio.js +5 -5
- package/dist/Twilio.js.map +1 -1
- package/dist/ZapierForm.js +19 -15
- package/dist/ZapierForm.js.map +1 -1
- package/dist/Zoom.js +5 -4
- package/dist/Zoom.js.map +1 -1
- package/dist/cjs/Connect.js +8 -13
- package/dist/cjs/Connect.js.map +1 -1
- package/dist/cjs/Daily.js +11 -17
- package/dist/cjs/Daily.js.map +1 -1
- package/dist/cjs/DailyForm.js +4 -4
- package/dist/cjs/Demo.js +4 -9
- package/dist/cjs/Demo.js.map +1 -1
- package/dist/cjs/DisconnectAlert.js +5 -38
- package/dist/cjs/DisconnectAlert.js.map +1 -1
- package/dist/cjs/Finish.js +9 -14
- package/dist/cjs/Finish.js.map +1 -1
- package/dist/cjs/GoogleCalendar.js +11 -34
- package/dist/cjs/GoogleCalendar.js.map +1 -1
- package/dist/cjs/Manage.js +13 -20
- package/dist/cjs/Manage.js.map +1 -1
- package/dist/cjs/Modal.js +8 -14
- package/dist/cjs/Modal.js.map +1 -1
- package/dist/cjs/Twilio.js +24 -33
- package/dist/cjs/Twilio.js.map +1 -1
- package/dist/cjs/WalkthroughModal.js +7 -14
- package/dist/cjs/WalkthroughModal.js.map +1 -1
- package/dist/cjs/ZapierForm.js +41 -50
- package/dist/cjs/ZapierForm.js.map +1 -1
- package/dist/cjs/Zoom.js +10 -15
- package/dist/cjs/Zoom.js.map +1 -1
- package/dist/cjs/index.js +7 -7
- package/dist/{index-4bda54e6.js → index-MS1ts-9f.js} +1 -1
- package/dist/{index-4bda54e6.js.map → index-MS1ts-9f.js.map} +1 -1
- package/dist/{index-2f3a953b.js → index-dxk7jTL7.js} +1 -1
- package/dist/{index-2f3a953b.js.map → index-dxk7jTL7.js.map} +1 -1
- package/dist/index.js +7 -5
- package/dist/index.js.map +1 -1
- package/dist/{query-62fcdf0a.js → query-D2CcgTB0.js} +2 -2
- package/dist/{query-62fcdf0a.js.map → query-D2CcgTB0.js.map} +1 -1
- package/dist/{query-4f9552ab.js → query-MCAJv0II.js} +1 -1
- package/dist/{query-4f9552ab.js.map → query-MCAJv0II.js.map} +1 -1
- package/package.json +99 -81
- package/dist/defineProperty-e90a259c.js +0 -43
- package/dist/defineProperty-e90a259c.js.map +0 -1
- package/dist/defineProperty-f3094d6c.js +0 -45
- package/dist/defineProperty-f3094d6c.js.map +0 -1
- package/dist/slicedToArray-b4278ecd.js +0 -57
- package/dist/slicedToArray-b4278ecd.js.map +0 -1
- package/dist/slicedToArray-f320d9e7.js +0 -61
- package/dist/slicedToArray-f320d9e7.js.map +0 -1
package/dist/cjs/Zoom.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Zoom.js","sources":["../../app/javascript/src/apis/zoom.js","../../app/javascript/src/hooks/reactQuery/useZoomApi.js","../../app/javascript/src/components/Integrations/Zoom/index.jsx"],"sourcesContent":["import axios from \"axios\";\n\nimport {\n INTEGRATIONS_ENGINE_ZOOM_URL,\n INTEGRATION_DETAILS_URL,\n} from \"src/constants/urls\";\n\nconst show = () =>\n axios.get(INTEGRATION_DETAILS_URL, {\n params: { serviceName: \"Zoom\", integrableType: \"User\" },\n });\n\nconst destroy = () => axios.delete(`${INTEGRATIONS_ENGINE_ZOOM_URL}/oauth`);\n\nconst zoomApi = { show, destroy };\n\nexport default zoomApi;\n","import { useQuery } from \"@tanstack/react-query\";\nimport { DEFAULT_STALE_TIME } from \"neetocommons/constants\";\nimport { useMutationWithInvalidation } from \"neetocommons/react-utils\";\n\nimport zoomApi from \"apis/zoom\";\nimport { QUERY_KEYS } from \"src/constants/query\";\n\nexport const useShowZoom = () =>\n useQuery({\n queryKey: [QUERY_KEYS.ZOOM_DETAILS],\n queryFn: zoomApi.show,\n staleTime: DEFAULT_STALE_TIME,\n });\nexport const useDestroyZoom = ({ onSuccess }) =>\n useMutationWithInvalidation(zoomApi.destroy, {\n keysToInvalidate: [[QUERY_KEYS.ZOOM_DETAILS]],\n onSuccess: () => onSuccess?.(),\n });\n","import { useState } from \"react\";\n\nimport { isPresent, noop } from \"neetocist\";\nimport { Zoom as ZoomIcon } from \"neetoicons/misc\";\nimport { Spinner } from \"neetoui\";\nimport { Trans, useTranslation } from \"react-i18next\";\n\nimport ManageIntegrations from \"components/commons/Manage\";\nimport { useDestroyZoom, useShowZoom } from \"hooks/reactQuery/useZoomApi\";\n\nconst Zoom = ({ connectUrl = \"\", description = \"\", onDisconnect = noop }) => {\n const { t } = useTranslation();\n\n const [isDisconnectAlertOpen, setIsDisconnectAlertOpen] = useState(false);\n\n const { data: { metadata: { email = \"\" } = {} } = {}, isLoading } =\n useShowZoom();\n\n const { mutate: destroyIntegration, isPending: isDisconnecting } =\n useDestroyZoom({\n onSuccess: () => {\n setIsDisconnectAlertOpen(false);\n onDisconnect?.();\n },\n });\n\n const isConnected = isPresent(email);\n\n const handleDisconnect = () => destroyIntegration(\"zoom\");\n\n if (isLoading) {\n return (\n <div className=\"flex h-full w-full items-center justify-center\">\n <Spinner />\n </div>\n );\n }\n\n return (\n <ManageIntegrations\n {...{\n connectUrl,\n isConnected,\n isDisconnectAlertOpen,\n isDisconnecting,\n setIsDisconnectAlertOpen,\n }}\n Icon={ZoomIcon}\n integration=\"zoom\"\n description={\n isConnected ? (\n <Trans\n components={{ underline: <u className=\"font-medium\" /> }}\n i18nKey=\"neetoIntegrations.zoom.account\"\n values={{ email }}\n />\n ) : (\n description\n )\n }\n title={\n isConnected\n ? t(\"neetoIntegrations.zoom.connected\")\n : t(\"neetoIntegrations.zoom.connect\")\n }\n onClose={() => setIsDisconnectAlertOpen(false)}\n onDisconnect={() => handleDisconnect()}\n />\n );\n};\n\nexport default Zoom;\n"],"names":["show","axios","get","INTEGRATION_DETAILS_URL","params","serviceName","integrableType","destroy","concat","INTEGRATIONS_ENGINE_ZOOM_URL","zoomApi","useShowZoom","useQuery","queryKey","QUERY_KEYS","ZOOM_DETAILS","queryFn","staleTime","DEFAULT_STALE_TIME","useDestroyZoom","_ref","onSuccess","useMutationWithInvalidation","keysToInvalidate","Zoom","_ref$connectUrl","connectUrl","_ref$description","description","_ref$onDisconnect","onDisconnect","noop","_useTranslation","useTranslation","t","_useState","useState","_useState2","_slicedToArray","isDisconnectAlertOpen","setIsDisconnectAlertOpen","_useShowZoom","_useShowZoom$data","data","_useShowZoom$data2","_useShowZoom$data2$me","metadata","_useShowZoom$data2$me2","_useShowZoom$data2$me3","email","isLoading","_useDestroyZoom","destroyIntegration","mutate","isDisconnecting","isPending","isConnected","isPresent","handleDisconnect","_jsx","className","children","Spinner","ManageIntegrations","Icon","ZoomIcon","integration","Trans","components","underline","i18nKey","values","title","onClose"],"mappings":"
|
|
1
|
+
{"version":3,"file":"Zoom.js","sources":["../../app/javascript/src/apis/zoom.js","../../app/javascript/src/hooks/reactQuery/useZoomApi.js","../../app/javascript/src/components/Integrations/Zoom/index.jsx"],"sourcesContent":["import axios from \"axios\";\n\nimport {\n INTEGRATIONS_ENGINE_ZOOM_URL,\n INTEGRATION_DETAILS_URL,\n} from \"src/constants/urls\";\n\nconst show = () =>\n axios.get(INTEGRATION_DETAILS_URL, {\n params: { serviceName: \"Zoom\", integrableType: \"User\" },\n });\n\nconst destroy = () => axios.delete(`${INTEGRATIONS_ENGINE_ZOOM_URL}/oauth`);\n\nconst zoomApi = { show, destroy };\n\nexport default zoomApi;\n","import { useQuery } from \"@tanstack/react-query\";\nimport { DEFAULT_STALE_TIME } from \"neetocommons/constants\";\nimport { useMutationWithInvalidation } from \"neetocommons/react-utils\";\n\nimport zoomApi from \"apis/zoom\";\nimport { QUERY_KEYS } from \"src/constants/query\";\n\nexport const useShowZoom = () =>\n useQuery({\n queryKey: [QUERY_KEYS.ZOOM_DETAILS],\n queryFn: zoomApi.show,\n staleTime: DEFAULT_STALE_TIME,\n });\nexport const useDestroyZoom = ({ onSuccess }) =>\n useMutationWithInvalidation(zoomApi.destroy, {\n keysToInvalidate: [[QUERY_KEYS.ZOOM_DETAILS]],\n onSuccess: () => onSuccess?.(),\n });\n","import { useState } from \"react\";\n\nimport { isPresent, noop } from \"neetocist\";\nimport { Zoom as ZoomIcon } from \"neetoicons/misc\";\nimport { Spinner } from \"neetoui\";\nimport { Trans, useTranslation } from \"react-i18next\";\n\nimport ManageIntegrations from \"components/commons/Manage\";\nimport { useDestroyZoom, useShowZoom } from \"hooks/reactQuery/useZoomApi\";\n\nconst Zoom = ({ connectUrl = \"\", description = \"\", onDisconnect = noop }) => {\n const { t } = useTranslation();\n\n const [isDisconnectAlertOpen, setIsDisconnectAlertOpen] = useState(false);\n\n const { data: { metadata: { email = \"\" } = {} } = {}, isLoading } =\n useShowZoom();\n\n const { mutate: destroyIntegration, isPending: isDisconnecting } =\n useDestroyZoom({\n onSuccess: () => {\n setIsDisconnectAlertOpen(false);\n onDisconnect?.();\n },\n });\n\n const isConnected = isPresent(email);\n\n const handleDisconnect = () => destroyIntegration(\"zoom\");\n\n if (isLoading) {\n return (\n <div className=\"flex h-full w-full items-center justify-center\">\n <Spinner />\n </div>\n );\n }\n\n return (\n <ManageIntegrations\n {...{\n connectUrl,\n isConnected,\n isDisconnectAlertOpen,\n isDisconnecting,\n setIsDisconnectAlertOpen,\n }}\n Icon={ZoomIcon}\n integration=\"zoom\"\n description={\n isConnected ? (\n <Trans\n components={{ underline: <u className=\"font-medium\" /> }}\n i18nKey=\"neetoIntegrations.zoom.account\"\n values={{ email }}\n />\n ) : (\n description\n )\n }\n title={\n isConnected\n ? t(\"neetoIntegrations.zoom.connected\")\n : t(\"neetoIntegrations.zoom.connect\")\n }\n onClose={() => setIsDisconnectAlertOpen(false)}\n onDisconnect={() => handleDisconnect()}\n />\n );\n};\n\nexport default Zoom;\n"],"names":["show","axios","get","INTEGRATION_DETAILS_URL","params","serviceName","integrableType","destroy","concat","INTEGRATIONS_ENGINE_ZOOM_URL","zoomApi","useShowZoom","useQuery","queryKey","QUERY_KEYS","ZOOM_DETAILS","queryFn","staleTime","DEFAULT_STALE_TIME","useDestroyZoom","_ref","onSuccess","useMutationWithInvalidation","keysToInvalidate","Zoom","_ref$connectUrl","connectUrl","_ref$description","description","_ref$onDisconnect","onDisconnect","noop","_useTranslation","useTranslation","t","_useState","useState","_useState2","_slicedToArray","isDisconnectAlertOpen","setIsDisconnectAlertOpen","_useShowZoom","_useShowZoom$data","data","_useShowZoom$data2","_useShowZoom$data2$me","metadata","_useShowZoom$data2$me2","_useShowZoom$data2$me3","email","isLoading","_useDestroyZoom","destroyIntegration","mutate","isDisconnecting","isPending","isConnected","isPresent","handleDisconnect","_jsx","className","children","Spinner","ManageIntegrations","Icon","ZoomIcon","integration","Trans","components","underline","i18nKey","values","title","onClose"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAOA,IAAMA,IAAI,GAAG,SAAPA,IAAIA,GAAA;AAAA,EAAA,OACRC,KAAK,CAACC,GAAG,CAACC,6BAAuB,EAAE;AACjCC,IAAAA,MAAM,EAAE;AAAEC,MAAAA,WAAW,EAAE,MAAM;AAAEC,MAAAA,cAAc,EAAE,MAAA;AAAO,KAAA;AACxD,GAAC,CAAC,CAAA;AAAA,CAAA,CAAA;AAEJ,IAAMC,OAAO,GAAG,SAAVA,OAAOA,GAAA;AAAA,EAAA,OAASN,KAAK,CAAO,QAAA,CAAA,CAAA,EAAA,CAAAO,MAAA,CAAIC,kCAA4B,WAAQ,CAAC,CAAA;AAAA,CAAA,CAAA;AAE3E,IAAMC,OAAO,GAAG;AAAEV,EAAAA,IAAI,EAAJA,IAAI;AAAEO,EAAAA,OAAO,EAAPA,OAAAA;AAAQ,CAAC;;ACP1B,IAAMI,WAAW,GAAG,SAAdA,WAAWA,GAAA;AAAA,EAAA,OACtBC,mBAAQ,CAAC;AACPC,IAAAA,QAAQ,EAAE,CAACC,gBAAU,CAACC,YAAY,CAAC;IACnCC,OAAO,EAAEN,OAAO,CAACV,IAAI;AACrBiB,IAAAA,SAAS,EAAEC,4BAAAA;AACb,GAAC,CAAC,CAAA;AAAA,CAAA,CAAA;AACG,IAAMC,cAAc,GAAG,SAAjBA,cAAcA,CAAAC,IAAA,EAAA;AAAA,EAAA,IAAMC,UAAS,GAAAD,IAAA,CAATC,SAAS,CAAA;AAAA,EAAA,OACxCC,sCAA2B,CAACZ,OAAO,CAACH,OAAO,EAAE;AAC3CgB,IAAAA,gBAAgB,EAAE,CAAC,CAACT,gBAAU,CAACC,YAAY,CAAC,CAAC;IAC7CM,SAAS,EAAE,SAAXA,SAASA,GAAA;AAAA,MAAA,OAAQA,UAAS,KAATA,IAAAA,IAAAA,UAAS,KAATA,KAAAA,CAAAA,GAAAA,KAAAA,CAAAA,GAAAA,UAAS,EAAI,CAAA;AAAA,KAAA;AAChC,GAAC,CAAC,CAAA;AAAA,CAAA;;ACPJ,IAAMG,IAAI,GAAG,SAAPA,IAAIA,CAAAJ,IAAA,EAAmE;AAAA,EAAA,IAAAK,eAAA,GAAAL,IAAA,CAA7DM,UAAU;AAAVA,IAAAA,UAAU,GAAAD,eAAA,KAAG,KAAA,CAAA,GAAA,EAAE,GAAAA,eAAA;IAAAE,gBAAA,GAAAP,IAAA,CAAEQ,WAAW;AAAXA,IAAAA,WAAW,GAAAD,gBAAA,KAAG,KAAA,CAAA,GAAA,EAAE,GAAAA,gBAAA;IAAAE,iBAAA,GAAAT,IAAA,CAAEU,YAAY;AAAZA,IAAAA,YAAY,GAAAD,iBAAA,KAAGE,KAAAA,CAAAA,GAAAA,cAAI,GAAAF,iBAAA,CAAA;AACpE,EAAA,IAAAG,eAAA,GAAcC,2BAAc,EAAE;IAAtBC,CAAC,GAAAF,eAAA,CAADE,CAAC,CAAA;AAET,EAAA,IAAAC,SAAA,GAA0DC,cAAQ,CAAC,KAAK,CAAC;IAAAC,UAAA,GAAAC,cAAA,CAAAH,SAAA,EAAA,CAAA,CAAA;AAAlEI,IAAAA,qBAAqB,GAAAF,UAAA,CAAA,CAAA,CAAA;AAAEG,IAAAA,wBAAwB,GAAAH,UAAA,CAAA,CAAA,CAAA,CAAA;AAEtD,EAAA,IAAAI,YAAA,GACE9B,WAAW,EAAE;IAAA+B,iBAAA,GAAAD,YAAA,CADPE,IAAI;AAAAC,IAAAA,kBAAA,GAAAF,iBAAA,KAAA,KAAA,CAAA,GAAsC,EAAE,GAAAA,iBAAA;IAAAG,qBAAA,GAAAD,kBAAA,CAApCE,QAAQ;AAAAC,IAAAA,sBAAA,GAAAF,qBAAA,KAAA,KAAA,CAAA,GAAmB,EAAE,GAAAA,qBAAA;IAAAG,sBAAA,GAAAD,sBAAA,CAAjBE,KAAK;AAALA,IAAAA,KAAK,GAAAD,sBAAA,KAAG,KAAA,CAAA,GAAA,EAAE,GAAAA,sBAAA;IAAgBE,SAAS,GAAAT,YAAA,CAATS,SAAS,CAAA;EAG/D,IAAAC,eAAA,GACEhC,cAAc,CAAC;AACbE,MAAAA,SAAS,EAAE,SAAXA,SAASA,GAAQ;QACfmB,wBAAwB,CAAC,KAAK,CAAC,CAAA;AAC/BV,QAAAA,YAAY,KAAZA,IAAAA,IAAAA,YAAY,KAAZA,KAAAA,CAAAA,GAAAA,KAAAA,CAAAA,GAAAA,YAAY,EAAI,CAAA;AAClB,OAAA;AACF,KAAC,CAAC;IANYsB,kBAAkB,GAAAD,eAAA,CAA1BE,MAAM;IAAiCC,eAAe,GAAAH,eAAA,CAA1BI,SAAS,CAAA;AAQ7C,EAAA,IAAMC,WAAW,GAAGC,mBAAS,CAACR,KAAK,CAAC,CAAA;AAEpC,EAAA,IAAMS,gBAAgB,GAAG,SAAnBA,gBAAgBA,GAAA;IAAA,OAASN,kBAAkB,CAAC,MAAM,CAAC,CAAA;AAAA,GAAA,CAAA;AAEzD,EAAA,IAAIF,SAAS,EAAE;AACb,IAAA,oBACES,cAAA,CAAA,KAAA,EAAA;AAAKC,MAAAA,SAAS,EAAC,gDAAgD;AAAAC,MAAAA,QAAA,eAC7DF,cAAA,CAACG,OAAO,EAAE,EAAA,CAAA;AAAC,KACR,CAAC,CAAA;AAEV,GAAA;EAEA,oBACEH,cAAA,CAACI,MAAkB,EAAA;AAEfrC,IAAAA,UAAU,EAAVA,UAAU;AACV8B,IAAAA,WAAW,EAAXA,WAAW;AACXjB,IAAAA,qBAAqB,EAArBA,qBAAqB;AACrBe,IAAAA,eAAe,EAAfA,eAAe;AACfd,IAAAA,wBAAwB,EAAxBA,wBAAwB;AAE1BwB,IAAAA,IAAI,EAAEC,QAAS;AACfC,IAAAA,WAAW,EAAC,MAAM;AAClBtC,IAAAA,WAAW,EACT4B,WAAW,gBACTG,cAAA,CAACQ,kBAAK,EAAA;AACJC,MAAAA,UAAU,EAAE;AAAEC,QAAAA,SAAS,eAAEV,cAAA,CAAA,GAAA,EAAA;AAAGC,UAAAA,SAAS,EAAC,aAAA;SAAe,CAAA;OAAI;AACzDU,MAAAA,OAAO,EAAC,gCAAgC;AACxCC,MAAAA,MAAM,EAAE;AAAEtB,QAAAA,KAAK,EAALA,KAAAA;AAAM,OAAA;KACjB,CAAC,GAEFrB,WAEH;IACD4C,KAAK,EACHhB,WAAW,GACPtB,CAAC,CAAC,kCAAkC,CAAC,GACrCA,CAAC,CAAC,gCAAgC,CACvC;IACDuC,OAAO,EAAE,SAATA,OAAOA,GAAA;MAAA,OAAQjC,wBAAwB,CAAC,KAAK,CAAC,CAAA;KAAC;IAC/CV,YAAY,EAAE,SAAdA,YAAYA,GAAA;MAAA,OAAQ4B,gBAAgB,EAAE,CAAA;AAAA,KAAA;AAAC,GACxC,CAAC,CAAA;AAEN;;;;"}
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var Manage = require('./Manage.js');
|
|
6
4
|
var DisconnectAlert = require('./DisconnectAlert.js');
|
|
7
5
|
var Daily = require('./Daily.js');
|
|
8
|
-
var DailyForm = require('../Form-
|
|
6
|
+
var DailyForm = require('../Form-DCVkfnek.js');
|
|
9
7
|
var GoogleCalendar = require('./GoogleCalendar.js');
|
|
10
8
|
var Twilio = require('./Twilio.js');
|
|
11
9
|
var Zoom = require('./Zoom.js');
|
|
@@ -14,7 +12,7 @@ var Connect = require('./Connect.js');
|
|
|
14
12
|
var Demo = require('./Demo.js');
|
|
15
13
|
var Finish = require('./Finish.js');
|
|
16
14
|
var WalkthroughModal = require('./WalkthroughModal.js');
|
|
17
|
-
require('
|
|
15
|
+
require('@babel/runtime/helpers/defineProperty');
|
|
18
16
|
require('classnames');
|
|
19
17
|
require('@bigbinary/neeto-cist');
|
|
20
18
|
require('@bigbinary/neeto-commons-frontend/react-utils');
|
|
@@ -24,10 +22,11 @@ require('@bigbinary/neetoui/Tooltip');
|
|
|
24
22
|
require('@bigbinary/neetoui/Typography');
|
|
25
23
|
require('react-i18next');
|
|
26
24
|
require('react/jsx-runtime');
|
|
25
|
+
require('@babel/runtime/helpers/objectWithoutProperties');
|
|
27
26
|
require('@bigbinary/neeto-commons-frontend/react-utils/withT');
|
|
28
27
|
require('@bigbinary/neetoui/Alert');
|
|
29
28
|
require('i18next');
|
|
30
|
-
require('
|
|
29
|
+
require('@babel/runtime/helpers/slicedToArray');
|
|
31
30
|
require('react');
|
|
32
31
|
require('@bigbinary/neeto-commons-frontend/utils');
|
|
33
32
|
require('@bigbinary/neeto-icons/misc/Daily');
|
|
@@ -43,8 +42,9 @@ require('react-router-dom');
|
|
|
43
42
|
require('@tanstack/react-query');
|
|
44
43
|
require('@bigbinary/neeto-commons-frontend/constants');
|
|
45
44
|
require('axios');
|
|
46
|
-
require('../query-
|
|
45
|
+
require('../query-MCAJv0II.js');
|
|
47
46
|
require('yup');
|
|
47
|
+
require('@babel/runtime/helpers/toConsumableArray');
|
|
48
48
|
require('@bigbinary/neeto-icons/misc/GoogleCalendar');
|
|
49
49
|
require('@bigbinary/neeto-icons/misc/Google');
|
|
50
50
|
require('@bigbinary/neetoui/Callout');
|
|
@@ -52,7 +52,7 @@ require('ramda');
|
|
|
52
52
|
require('@bigbinary/neetoui/formik/Select');
|
|
53
53
|
require('@bigbinary/neeto-icons/misc/Zoom');
|
|
54
54
|
require('@bigbinary/neetoui/Modal');
|
|
55
|
-
require('../index-
|
|
55
|
+
require('../index-dxk7jTL7.js');
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-MS1ts-9f.js","sources":["../node_modules/prop-types/lib/ReactPropTypesSecret.js","../node_modules/prop-types/factoryWithThrowingShims.js","../node_modules/prop-types/index.js"],"sourcesContent":["/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n"],"names":["ReactPropTypesSecret","ReactPropTypesSecret_1","require$$0","emptyFunction","emptyFunctionWithReset","resetWarningCache","factoryWithThrowingShims","shim","props","propName","componentName","location","propFullName","secret","err","Error","name","isRequired","getShim","ReactPropTypes","array","bigint","bool","func","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","propTypesModule","exports"],"mappings":";;;;;;;;;;;;AASA,IAAIA,sBAAoB,GAAG,8CAA8C,CAAA;AAEzE,IAAAC,sBAAc,GAAGD,sBAAoB;;;;;;;;ACFrC,IAAIA,oBAAoB,GAAGE,sBAAqC,CAAA;AAEhE,SAASC,aAAaA,GAAG,EAAE;AAC3B,SAASC,sBAAsBA,GAAG,EAAE;AACpCA,sBAAsB,CAACC,iBAAiB,GAAGF,aAAa,CAAA;AAExD,IAAAG,wBAAc,GAAG,SAAjBA,wBAAcA,GAAc;AAC1B,EAAA,SAASC,IAAIA,CAACC,KAAK,EAAEC,QAAQ,EAAEC,aAAa,EAAEC,QAAQ,EAAEC,YAAY,EAAEC,MAAM,EAAE;IAC5E,IAAIA,MAAM,KAAKb,oBAAoB,EAAE;AACzC;AACM,MAAA,OAAA;AACD,KAAA;IACD,IAAIc,GAAG,GAAG,IAAIC,KAAK,CACjB,sFAAsF,GACtF,+CAA+C,GAC/C,gDACN,CAAK,CAAA;IACDD,GAAG,CAACE,IAAI,GAAG,qBAAqB,CAAA;AAChC,IAAA,MAAMF,GAAG,CAAA;AACb,GAAA;EACEP,IAAI,CAACU,UAAU,GAAGV,IAAI,CAAA;EACtB,SAASW,OAAOA,GAAG;AACjB,IAAA,OAAOX,IAAI,CAAA;AACf,GAAA;AACA;AACA;AACE,EAAA,IAAIY,cAAc,GAAG;AACnBC,IAAAA,KAAK,EAAEb,IAAI;AACXc,IAAAA,MAAM,EAAEd,IAAI;AACZe,IAAAA,IAAI,EAAEf,IAAI;AACVgB,IAAAA,IAAI,EAAEhB,IAAI;AACViB,IAAAA,MAAM,EAAEjB,IAAI;AACZkB,IAAAA,MAAM,EAAElB,IAAI;AACZmB,IAAAA,MAAM,EAAEnB,IAAI;AACZoB,IAAAA,MAAM,EAAEpB,IAAI;AAEZqB,IAAAA,GAAG,EAAErB,IAAI;AACTsB,IAAAA,OAAO,EAAEX,OAAO;AAChBY,IAAAA,OAAO,EAAEvB,IAAI;AACbwB,IAAAA,WAAW,EAAExB,IAAI;AACjByB,IAAAA,UAAU,EAAEd,OAAO;AACnBe,IAAAA,IAAI,EAAE1B,IAAI;AACV2B,IAAAA,QAAQ,EAAEhB,OAAO;AACjBiB,IAAAA,KAAK,EAAEjB,OAAO;AACdkB,IAAAA,SAAS,EAAElB,OAAO;AAClBmB,IAAAA,KAAK,EAAEnB,OAAO;AACdoB,IAAAA,KAAK,EAAEpB,OAAO;AAEdqB,IAAAA,cAAc,EAAEnC,sBAAsB;AACtCC,IAAAA,iBAAiB,EAAEF,aAAAA;GACpB,CAAA;EAEDgB,cAAc,CAACqB,SAAS,GAAGrB,cAAc,CAAA;AAEzC,EAAA,OAAOA,cAAc,CAAA;AACvB,CAAC;;;;;;;;AClDM;AACP;AACA;AACEsB,EAAAA,SAAc,CAAAC,OAAA,GAAGxC,wBAAqC,EAAE,CAAA;AAC1D,CAAA;;;;;;","x_google_ignoreList":[0,1,2]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-dxk7jTL7.js","sources":["../node_modules/prop-types/lib/ReactPropTypesSecret.js","../node_modules/prop-types/factoryWithThrowingShims.js","../node_modules/prop-types/index.js"],"sourcesContent":["/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n"],"names":["ReactPropTypesSecret","ReactPropTypesSecret_1","require$$0","emptyFunction","emptyFunctionWithReset","resetWarningCache","factoryWithThrowingShims","shim","props","propName","componentName","location","propFullName","secret","err","Error","name","isRequired","getShim","ReactPropTypes","array","bigint","bool","func","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","propTypesModule","exports"],"mappings":";;;;;;;;;;;;;;AASA,IAAIA,sBAAoB,GAAG,8CAA8C,CAAA;AAEzE,IAAAC,sBAAc,GAAGD,sBAAoB;;;;;;;;ACFrC,IAAIA,oBAAoB,GAAGE,sBAAqC,CAAA;AAEhE,SAASC,aAAaA,GAAG,EAAE;AAC3B,SAASC,sBAAsBA,GAAG,EAAE;AACpCA,sBAAsB,CAACC,iBAAiB,GAAGF,aAAa,CAAA;AAExD,IAAAG,wBAAc,GAAG,SAAjBA,wBAAcA,GAAc;AAC1B,EAAA,SAASC,IAAIA,CAACC,KAAK,EAAEC,QAAQ,EAAEC,aAAa,EAAEC,QAAQ,EAAEC,YAAY,EAAEC,MAAM,EAAE;IAC5E,IAAIA,MAAM,KAAKb,oBAAoB,EAAE;AACzC;AACM,MAAA,OAAA;AACD,KAAA;IACD,IAAIc,GAAG,GAAG,IAAIC,KAAK,CACjB,sFAAsF,GACtF,+CAA+C,GAC/C,gDACN,CAAK,CAAA;IACDD,GAAG,CAACE,IAAI,GAAG,qBAAqB,CAAA;AAChC,IAAA,MAAMF,GAAG,CAAA;AACb,GAAA;EACEP,IAAI,CAACU,UAAU,GAAGV,IAAI,CAAA;EACtB,SAASW,OAAOA,GAAG;AACjB,IAAA,OAAOX,IAAI,CAAA;AACf,GAAA;AACA;AACA;AACE,EAAA,IAAIY,cAAc,GAAG;AACnBC,IAAAA,KAAK,EAAEb,IAAI;AACXc,IAAAA,MAAM,EAAEd,IAAI;AACZe,IAAAA,IAAI,EAAEf,IAAI;AACVgB,IAAAA,IAAI,EAAEhB,IAAI;AACViB,IAAAA,MAAM,EAAEjB,IAAI;AACZkB,IAAAA,MAAM,EAAElB,IAAI;AACZmB,IAAAA,MAAM,EAAEnB,IAAI;AACZoB,IAAAA,MAAM,EAAEpB,IAAI;AAEZqB,IAAAA,GAAG,EAAErB,IAAI;AACTsB,IAAAA,OAAO,EAAEX,OAAO;AAChBY,IAAAA,OAAO,EAAEvB,IAAI;AACbwB,IAAAA,WAAW,EAAExB,IAAI;AACjByB,IAAAA,UAAU,EAAEd,OAAO;AACnBe,IAAAA,IAAI,EAAE1B,IAAI;AACV2B,IAAAA,QAAQ,EAAEhB,OAAO;AACjBiB,IAAAA,KAAK,EAAEjB,OAAO;AACdkB,IAAAA,SAAS,EAAElB,OAAO;AAClBmB,IAAAA,KAAK,EAAEnB,OAAO;AACdoB,IAAAA,KAAK,EAAEpB,OAAO;AAEdqB,IAAAA,cAAc,EAAEnC,sBAAsB;AACtCC,IAAAA,iBAAiB,EAAEF,aAAAA;GACpB,CAAA;EAEDgB,cAAc,CAACqB,SAAS,GAAGrB,cAAc,CAAA;AAEzC,EAAA,OAAOA,cAAc,CAAA;AACvB,CAAC;;;;;;;;AClDM;AACP;AACA;AACEsB,EAAAA,SAAc,CAAAC,OAAA,GAAGxC,wBAAqC,EAAE,CAAA;AAC1D,CAAA;;;;;;","x_google_ignoreList":[0,1,2]}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { default as Manage } from './Manage.js';
|
|
2
2
|
export { default as DisconnectAlert } from './DisconnectAlert.js';
|
|
3
3
|
export { default as Daily } from './Daily.js';
|
|
4
|
-
export { F as DailyForm } from './Form-
|
|
4
|
+
export { F as DailyForm } from './Form-B8iEPtJp.js';
|
|
5
5
|
export { default as GoogleCalendar } from './GoogleCalendar.js';
|
|
6
6
|
export { default as Twilio } from './Twilio.js';
|
|
7
7
|
export { default as Zoom } from './Zoom.js';
|
|
@@ -10,7 +10,7 @@ export { default as Connect } from './Connect.js';
|
|
|
10
10
|
export { default as Demo } from './Demo.js';
|
|
11
11
|
export { default as Finish } from './Finish.js';
|
|
12
12
|
export { default as WalkthroughModal } from './WalkthroughModal.js';
|
|
13
|
-
import '
|
|
13
|
+
import '@babel/runtime/helpers/defineProperty';
|
|
14
14
|
import 'classnames';
|
|
15
15
|
import '@bigbinary/neeto-cist';
|
|
16
16
|
import '@bigbinary/neeto-commons-frontend/react-utils';
|
|
@@ -20,10 +20,11 @@ import '@bigbinary/neetoui/Tooltip';
|
|
|
20
20
|
import '@bigbinary/neetoui/Typography';
|
|
21
21
|
import 'react-i18next';
|
|
22
22
|
import 'react/jsx-runtime';
|
|
23
|
+
import '@babel/runtime/helpers/objectWithoutProperties';
|
|
23
24
|
import '@bigbinary/neeto-commons-frontend/react-utils/withT';
|
|
24
25
|
import '@bigbinary/neetoui/Alert';
|
|
25
26
|
import 'i18next';
|
|
26
|
-
import '
|
|
27
|
+
import '@babel/runtime/helpers/slicedToArray';
|
|
27
28
|
import 'react';
|
|
28
29
|
import '@bigbinary/neeto-commons-frontend/utils';
|
|
29
30
|
import '@bigbinary/neeto-icons/misc/Daily';
|
|
@@ -39,8 +40,9 @@ import 'react-router-dom';
|
|
|
39
40
|
import '@tanstack/react-query';
|
|
40
41
|
import '@bigbinary/neeto-commons-frontend/constants';
|
|
41
42
|
import 'axios';
|
|
42
|
-
import './query-
|
|
43
|
+
import './query-D2CcgTB0.js';
|
|
43
44
|
import 'yup';
|
|
45
|
+
import '@babel/runtime/helpers/toConsumableArray';
|
|
44
46
|
import '@bigbinary/neeto-icons/misc/GoogleCalendar';
|
|
45
47
|
import '@bigbinary/neeto-icons/misc/Google';
|
|
46
48
|
import '@bigbinary/neetoui/Callout';
|
|
@@ -48,5 +50,5 @@ import 'ramda';
|
|
|
48
50
|
import '@bigbinary/neetoui/formik/Select';
|
|
49
51
|
import '@bigbinary/neeto-icons/misc/Zoom';
|
|
50
52
|
import '@bigbinary/neetoui/Modal';
|
|
51
|
-
import './index-
|
|
53
|
+
import './index-MS1ts-9f.js';
|
|
52
54
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -11,5 +11,5 @@ var QUERY_KEYS = {
|
|
|
11
11
|
ZOOM_DETAILS: "zoom-details"
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
export {
|
|
15
|
-
//# sourceMappingURL=query-
|
|
14
|
+
export { INTEGRATION_DETAILS_URL as I, QUERY_KEYS as Q, TWILIO_CONFIGURATION_BASE_URL as T, INTEGRATIONS_ENGINE_ZOOM_URL as a, INTEGRATIONS_ENGINE_DAILY_URL as b };
|
|
15
|
+
//# sourceMappingURL=query-D2CcgTB0.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-
|
|
1
|
+
{"version":3,"file":"query-D2CcgTB0.js","sources":["../app/javascript/src/constants/urls.js","../app/javascript/src/constants/query.js"],"sourcesContent":["export const INTEGRATIONS_ENGINE_BASE_URL = \"/neeto_integrations\";\nexport const TWILIO_CONFIGURATION_BASE_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/twilio/sms_configurations`;\nexport const INTEGRATIONS_ENGINE_DAILY_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/daily`;\nexport const INTEGRATIONS_ENGINE_ZOOM_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/zoom`;\nexport const INTEGRATION_DETAILS_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/status`;\n","export const QUERY_KEYS = {\n TWILIO_SMS_CONFIGURATION: \"twilio-sms-configuration\",\n TWILIO_PHONE_NUMBERS: \"twilio-phone-numbers\",\n DAILY_CO_DETAILS: \"daily-co-details\",\n ZOOM_DETAILS: \"zoom-details\",\n};\n"],"names":["INTEGRATIONS_ENGINE_BASE_URL","TWILIO_CONFIGURATION_BASE_URL","concat","INTEGRATIONS_ENGINE_DAILY_URL","INTEGRATIONS_ENGINE_ZOOM_URL","INTEGRATION_DETAILS_URL","QUERY_KEYS","TWILIO_SMS_CONFIGURATION","TWILIO_PHONE_NUMBERS","DAILY_CO_DETAILS","ZOOM_DETAILS"],"mappings":"AAAO,IAAMA,4BAA4B,GAAG,qBAAqB,CAAA;IACpDC,6BAA6B,GAAA,EAAA,CAAAC,MAAA,CAAMF,4BAA4B,EAA4B,4BAAA,EAAA;IAC3FG,6BAA6B,GAAA,EAAA,CAAAD,MAAA,CAAMF,4BAA4B,EAAQ,QAAA,EAAA;IACvEI,4BAA4B,GAAA,EAAA,CAAAF,MAAA,CAAMF,4BAA4B,EAAO,OAAA,EAAA;IACrEK,uBAAuB,GAAA,EAAA,CAAAH,MAAA,CAAMF,4BAA4B,EAAS,SAAA;;ACJxE,IAAMM,UAAU,GAAG;AACxBC,EAAAA,wBAAwB,EAAE,0BAA0B;AACpDC,EAAAA,oBAAoB,EAAE,sBAAsB;AAC5CC,EAAAA,gBAAgB,EAAE,kBAAkB;AACpCC,EAAAA,YAAY,EAAE,cAAA;AAChB;;;;"}
|
|
@@ -18,4 +18,4 @@ exports.INTEGRATIONS_ENGINE_ZOOM_URL = INTEGRATIONS_ENGINE_ZOOM_URL;
|
|
|
18
18
|
exports.INTEGRATION_DETAILS_URL = INTEGRATION_DETAILS_URL;
|
|
19
19
|
exports.QUERY_KEYS = QUERY_KEYS;
|
|
20
20
|
exports.TWILIO_CONFIGURATION_BASE_URL = TWILIO_CONFIGURATION_BASE_URL;
|
|
21
|
-
//# sourceMappingURL=query-
|
|
21
|
+
//# sourceMappingURL=query-MCAJv0II.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-
|
|
1
|
+
{"version":3,"file":"query-MCAJv0II.js","sources":["../app/javascript/src/constants/urls.js","../app/javascript/src/constants/query.js"],"sourcesContent":["export const INTEGRATIONS_ENGINE_BASE_URL = \"/neeto_integrations\";\nexport const TWILIO_CONFIGURATION_BASE_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/twilio/sms_configurations`;\nexport const INTEGRATIONS_ENGINE_DAILY_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/daily`;\nexport const INTEGRATIONS_ENGINE_ZOOM_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/zoom`;\nexport const INTEGRATION_DETAILS_URL = `${INTEGRATIONS_ENGINE_BASE_URL}/status`;\n","export const QUERY_KEYS = {\n TWILIO_SMS_CONFIGURATION: \"twilio-sms-configuration\",\n TWILIO_PHONE_NUMBERS: \"twilio-phone-numbers\",\n DAILY_CO_DETAILS: \"daily-co-details\",\n ZOOM_DETAILS: \"zoom-details\",\n};\n"],"names":["INTEGRATIONS_ENGINE_BASE_URL","TWILIO_CONFIGURATION_BASE_URL","concat","INTEGRATIONS_ENGINE_DAILY_URL","INTEGRATIONS_ENGINE_ZOOM_URL","INTEGRATION_DETAILS_URL","QUERY_KEYS","TWILIO_SMS_CONFIGURATION","TWILIO_PHONE_NUMBERS","DAILY_CO_DETAILS","ZOOM_DETAILS"],"mappings":";;AAAO,IAAMA,4BAA4B,GAAG,qBAAqB,CAAA;IACpDC,6BAA6B,GAAA,EAAA,CAAAC,MAAA,CAAMF,4BAA4B,EAA4B,4BAAA,EAAA;IAC3FG,6BAA6B,GAAA,EAAA,CAAAD,MAAA,CAAMF,4BAA4B,EAAQ,QAAA,EAAA;IACvEI,4BAA4B,GAAA,EAAA,CAAAF,MAAA,CAAMF,4BAA4B,EAAO,OAAA,EAAA;IACrEK,uBAAuB,GAAA,EAAA,CAAAH,MAAA,CAAMF,4BAA4B,EAAS,SAAA;;ACJxE,IAAMM,UAAU,GAAG;AACxBC,EAAAA,wBAAwB,EAAE,0BAA0B;AACpDC,EAAAA,oBAAoB,EAAE,sBAAsB;AAC5CC,EAAAA,gBAAgB,EAAE,kBAAkB;AACpCC,EAAAA,YAAY,EAAE,cAAA;AAChB;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-integrations-frontend",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "UI for integrations in neeto products",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-integrations-nano",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "NODE_ENV=production rollup -c --environment production",
|
|
31
|
+
"build": "NODE_ENV=production rollup --bundleConfigAsCjs -c --environment production",
|
|
32
32
|
"build-preview": "NODE_ENV=production webpack",
|
|
33
33
|
"prepare": "husky install",
|
|
34
34
|
"release": "yarn build && yalc push --sig"
|
|
@@ -50,26 +50,25 @@
|
|
|
50
50
|
]
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@babel/core": "7.
|
|
54
|
-
"@babel/eslint-parser": "7.
|
|
55
|
-
"@babel/plugin-transform-runtime": "7.
|
|
56
|
-
"@babel/preset-env": "7.
|
|
57
|
-
"@babel/preset-react": "7.
|
|
58
|
-
"@babel/preset-typescript": "7.
|
|
59
|
-
"@babel/runtime": "7.
|
|
60
|
-
"@bigbinary/babel-preset-neeto": "1.0.
|
|
53
|
+
"@babel/core": "^7.19.1",
|
|
54
|
+
"@babel/eslint-parser": "7.17.0",
|
|
55
|
+
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
56
|
+
"@babel/preset-env": "7.17.10",
|
|
57
|
+
"@babel/preset-react": "7.16.7",
|
|
58
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
59
|
+
"@babel/runtime": "7.19.0",
|
|
60
|
+
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
61
61
|
"@bigbinary/eslint-plugin-neeto": "1.5.4",
|
|
62
|
-
"@bigbinary/neeto-audit-frontend": "2.0.14",
|
|
63
62
|
"@bigbinary/neeto-cist": "1.0.12",
|
|
64
|
-
"@bigbinary/neeto-commons-frontend": "4.
|
|
65
|
-
"@bigbinary/neeto-filters-frontend": "4.3.
|
|
66
|
-
"@bigbinary/neeto-icons": "1.20.
|
|
67
|
-
"@bigbinary/neeto-molecules": "3.
|
|
68
|
-
"@bigbinary/neetoui": "8.2.
|
|
63
|
+
"@bigbinary/neeto-commons-frontend": "4.8.6",
|
|
64
|
+
"@bigbinary/neeto-filters-frontend": "4.3.5",
|
|
65
|
+
"@bigbinary/neeto-icons": "1.20.8",
|
|
66
|
+
"@bigbinary/neeto-molecules": "3.7.24",
|
|
67
|
+
"@bigbinary/neetoui": "8.2.25",
|
|
69
68
|
"@emotion/is-prop-valid": "1.2.0",
|
|
70
69
|
"@faker-js/faker": "8.2.0",
|
|
71
|
-
"@honeybadger-io/js": "6.
|
|
72
|
-
"@honeybadger-io/react": "6.1.
|
|
70
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
71
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
73
72
|
"@rollup/plugin-alias": "5.0.1",
|
|
74
73
|
"@rollup/plugin-babel": "6.0.4",
|
|
75
74
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
@@ -79,121 +78,142 @@
|
|
|
79
78
|
"@svgr/rollup": "8.1.0",
|
|
80
79
|
"@tanstack/react-query": "5.40.0",
|
|
81
80
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
82
|
-
"antd": "5.
|
|
83
|
-
"autoprefixer": "10.4.
|
|
81
|
+
"antd": "5.16.0",
|
|
82
|
+
"autoprefixer": "^10.4.5",
|
|
84
83
|
"axios": "1.7.4",
|
|
85
|
-
"babel-loader": "
|
|
86
|
-
"babel-plugin-istanbul": "6.1.1",
|
|
84
|
+
"babel-loader": "^8.2.5",
|
|
85
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
87
86
|
"babel-plugin-js-logger": "1.0.17",
|
|
88
87
|
"babel-plugin-macros": "3.1.0",
|
|
89
88
|
"babel-plugin-preval": "^5.1.0",
|
|
90
89
|
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
91
90
|
"babel-preset-react": "6.24.1",
|
|
92
|
-
"babel-preset-typescript": "7.0.0-alpha.19",
|
|
91
|
+
"babel-preset-typescript": "^7.0.0-alpha.19",
|
|
93
92
|
"browserify-zlib": "0.2.0",
|
|
94
|
-
"buffer": "6.0.3",
|
|
95
|
-
"classnames": "2.3.
|
|
96
|
-
"crypto-browserify": "3.12.0",
|
|
93
|
+
"buffer": "^6.0.3",
|
|
94
|
+
"classnames": "2.3.1",
|
|
95
|
+
"crypto-browserify": "^3.12.0",
|
|
97
96
|
"css-loader": "6.8.1",
|
|
98
|
-
"dompurify": "
|
|
97
|
+
"dompurify": "^2.4.0",
|
|
99
98
|
"dotenv-webpack": "^8.0.1",
|
|
100
|
-
"eslint": "8.
|
|
99
|
+
"eslint": "8.14.0",
|
|
101
100
|
"eslint-config-prettier": "8.5.0",
|
|
102
|
-
"eslint-plugin-cypress": "2.
|
|
103
|
-
"eslint-plugin-import": "2.
|
|
101
|
+
"eslint-plugin-cypress": "2.12.1",
|
|
102
|
+
"eslint-plugin-import": "2.26.0",
|
|
104
103
|
"eslint-plugin-jam3": "0.2.3",
|
|
105
104
|
"eslint-plugin-json": "3.1.0",
|
|
106
105
|
"eslint-plugin-prettier": "4.0.0",
|
|
107
|
-
"eslint-plugin-promise": "6.
|
|
108
|
-
"eslint-plugin-react": "7.
|
|
109
|
-
"eslint-plugin-react-hooks": "4.
|
|
106
|
+
"eslint-plugin-promise": "6.0.0",
|
|
107
|
+
"eslint-plugin-react": "7.29.4",
|
|
108
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
110
109
|
"eslint-plugin-security": "^1.7.1",
|
|
111
110
|
"eslint-plugin-sonarjs": "^0.21.0",
|
|
112
|
-
"eslint-plugin-unused-imports": "
|
|
111
|
+
"eslint-plugin-unused-imports": "2.0.0",
|
|
113
112
|
"eslint-plugin-xss": "^0.1.12",
|
|
114
|
-
"formik": "2.
|
|
113
|
+
"formik": "2.2.9",
|
|
115
114
|
"html-webpack-plugin": "5.5.3",
|
|
116
115
|
"https-browserify": "1.0.0",
|
|
117
|
-
"husky": "
|
|
118
|
-
"i18next": "
|
|
116
|
+
"husky": "7.0.4",
|
|
117
|
+
"i18next": "22.5.1",
|
|
119
118
|
"i18next-browser-languagedetector": "7.0.1",
|
|
120
119
|
"js-logger": "1.6.1",
|
|
121
|
-
"lint-staged": "
|
|
120
|
+
"lint-staged": "12.4.1",
|
|
122
121
|
"mini-css-extract-plugin": "2.7.6",
|
|
123
122
|
"mixpanel-browser": "2.47.0",
|
|
124
123
|
"os-browserify": "0.3.0",
|
|
125
|
-
"path-browserify": "1.0.1",
|
|
126
|
-
"postcss": "8.4.31",
|
|
127
|
-
"postcss-import": "15.
|
|
128
|
-
"postcss-loader": "7.
|
|
129
|
-
"postcss-preset-env": "
|
|
124
|
+
"path-browserify": "^1.0.1",
|
|
125
|
+
"postcss": "^8.4.31",
|
|
126
|
+
"postcss-import": "^15.0.0",
|
|
127
|
+
"postcss-loader": "^7.0.1",
|
|
128
|
+
"postcss-preset-env": "7.8.2",
|
|
130
129
|
"prettier": "2.6.2",
|
|
131
130
|
"prettier-plugin-tailwindcss": "0.1.10",
|
|
132
131
|
"process": "0.11.10",
|
|
133
|
-
"qs": "6.11.2",
|
|
134
|
-
"ramda": "0.29.
|
|
132
|
+
"qs": "^6.11.2",
|
|
133
|
+
"ramda": "0.29.0",
|
|
135
134
|
"react": "18.2.0",
|
|
136
135
|
"react-dom": "18.2.0",
|
|
137
|
-
"react-helmet": "6.1.0",
|
|
138
|
-
"react-i18next": "
|
|
136
|
+
"react-helmet": "^6.1.0",
|
|
137
|
+
"react-i18next": "12.3.1",
|
|
139
138
|
"react-query": "3.39.3",
|
|
140
|
-
"react-router-dom": "5.3.
|
|
141
|
-
"react-toastify": "8.2
|
|
139
|
+
"react-router-dom": "5.3.3",
|
|
140
|
+
"react-toastify": "8.0.2",
|
|
142
141
|
"react-transition-group": "4.4.5",
|
|
143
142
|
"react_ujs": "^3.1.1",
|
|
144
|
-
"rollup": "
|
|
143
|
+
"rollup": "^4.24.0",
|
|
145
144
|
"rollup-plugin-analyzer": "4.0.0",
|
|
146
145
|
"rollup-plugin-cleaner": "1.0.0",
|
|
147
146
|
"rollup-plugin-copy": "^3.5.0",
|
|
148
147
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
149
148
|
"rollup-plugin-styles": "4.0.0",
|
|
150
|
-
"sass": "1.
|
|
151
|
-
"sass-loader": "13.
|
|
149
|
+
"sass": "^1.54.9",
|
|
150
|
+
"sass-loader": "^13.0.2",
|
|
152
151
|
"shakapacker": "6.6.0",
|
|
153
|
-
"
|
|
152
|
+
"source-map-loader": "4.0.1",
|
|
153
|
+
"stream-browserify": "^3.0.0",
|
|
154
154
|
"stream-http": "3.2.0",
|
|
155
|
-
"style-loader": "3.3.
|
|
156
|
-
"tailwindcss": "3.4.1",
|
|
155
|
+
"style-loader": "^3.3.1",
|
|
156
|
+
"tailwindcss": "^3.4.1",
|
|
157
157
|
"tty-browserify": "0.0.1",
|
|
158
|
-
"url": "0.11.
|
|
159
|
-
"util": "0.12.5",
|
|
158
|
+
"url": "^0.11.0",
|
|
159
|
+
"util": "^0.12.5",
|
|
160
160
|
"vm-browserify": "1.1.2",
|
|
161
161
|
"webpack": "5.88.1",
|
|
162
162
|
"webpack-assets-manifest": "5.1.0",
|
|
163
163
|
"webpack-cli": "5.1.4",
|
|
164
164
|
"webpack-dev-server": "4.15.1",
|
|
165
|
-
"yup": "
|
|
165
|
+
"yup": "0.32.11",
|
|
166
|
+
"zustand": "4.3.2"
|
|
166
167
|
},
|
|
167
168
|
"peerDependencies": {
|
|
168
|
-
"@
|
|
169
|
-
"@bigbinary/neeto-
|
|
170
|
-
"@bigbinary/neeto-
|
|
171
|
-
"@bigbinary/neeto-
|
|
172
|
-
"@bigbinary/neeto-
|
|
173
|
-
"@bigbinary/
|
|
174
|
-
"@
|
|
175
|
-
"@honeybadger-io/
|
|
169
|
+
"@babel/runtime": "7.19.0",
|
|
170
|
+
"@bigbinary/neeto-cist": "1.0.12",
|
|
171
|
+
"@bigbinary/neeto-commons-frontend": "4.8.6",
|
|
172
|
+
"@bigbinary/neeto-filters-frontend": "4.3.5",
|
|
173
|
+
"@bigbinary/neeto-icons": "1.20.8",
|
|
174
|
+
"@bigbinary/neeto-molecules": "3.7.24",
|
|
175
|
+
"@bigbinary/neetoui": "8.2.25",
|
|
176
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
177
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
176
178
|
"@tanstack/react-query": "5.40.0",
|
|
177
179
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
180
|
+
"antd": "5.16.0",
|
|
178
181
|
"axios": "1.7.4",
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
182
|
+
"buffer": "^6.0.3",
|
|
183
|
+
"classnames": "2.3.1",
|
|
184
|
+
"crypto-browserify": "^3.12.0",
|
|
185
|
+
"dompurify": "^2.4.0",
|
|
186
|
+
"formik": "2.2.9",
|
|
187
|
+
"https-browserify": "1.0.0",
|
|
188
|
+
"i18next": "22.5.1",
|
|
189
|
+
"js-logger": "1.6.1",
|
|
183
190
|
"mixpanel-browser": "^2.45.0",
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
191
|
+
"os-browserify": "0.3.0",
|
|
192
|
+
"path-browserify": "^1.0.1",
|
|
193
|
+
"qs": "^6.11.2",
|
|
194
|
+
"ramda": "0.29.0",
|
|
195
|
+
"react": "18.2.0",
|
|
196
|
+
"react-dom": "18.2.0",
|
|
187
197
|
"react-helmet": "^6.1.0",
|
|
188
|
-
"react-i18next": "
|
|
198
|
+
"react-i18next": "12.3.1",
|
|
189
199
|
"react-query": "^3.39.3",
|
|
190
|
-
"react-router-dom": "
|
|
191
|
-
"react-toastify": "
|
|
192
|
-
"
|
|
200
|
+
"react-router-dom": "5.3.3",
|
|
201
|
+
"react-toastify": "8.0.2",
|
|
202
|
+
"source-map-loader": "4.0.1",
|
|
203
|
+
"stream-browserify": "^3.0.0",
|
|
204
|
+
"stream-http": "3.2.0",
|
|
205
|
+
"tailwindcss": "^3.4.1",
|
|
206
|
+
"tty-browserify": "0.0.1",
|
|
207
|
+
"url": "^0.11.0",
|
|
208
|
+
"util": "^0.12.5",
|
|
209
|
+
"vm-browserify": "1.1.2",
|
|
210
|
+
"yup": "0.32.11",
|
|
193
211
|
"zustand": "4.3.2"
|
|
194
212
|
},
|
|
195
213
|
"resolutions": {
|
|
196
|
-
"postcss": "^8"
|
|
214
|
+
"postcss": "^8",
|
|
215
|
+
"wrap-ansi": "7.0.0",
|
|
216
|
+
"string-width": "4.1.0"
|
|
197
217
|
},
|
|
198
218
|
"engines": {
|
|
199
219
|
"node": ">=18.12",
|
|
@@ -202,8 +222,6 @@
|
|
|
202
222
|
},
|
|
203
223
|
"dependencies": {
|
|
204
224
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
205
|
-
"react-router-nav-prompt": "0.4.1"
|
|
206
|
-
"source-map-loader": "^4.0.1",
|
|
207
|
-
"zustand": "4.3.2"
|
|
225
|
+
"react-router-nav-prompt": "0.4.1"
|
|
208
226
|
}
|
|
209
227
|
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
function _typeof(o) {
|
|
2
|
-
"@babel/helpers - typeof";
|
|
3
|
-
|
|
4
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
5
|
-
return typeof o;
|
|
6
|
-
} : function (o) {
|
|
7
|
-
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
8
|
-
}, _typeof(o);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
function _toPrimitive(input, hint) {
|
|
12
|
-
if (_typeof(input) !== "object" || input === null) return input;
|
|
13
|
-
var prim = input[Symbol.toPrimitive];
|
|
14
|
-
if (prim !== undefined) {
|
|
15
|
-
var res = prim.call(input, hint || "default");
|
|
16
|
-
if (_typeof(res) !== "object") return res;
|
|
17
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
18
|
-
}
|
|
19
|
-
return (hint === "string" ? String : Number)(input);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
function _toPropertyKey(arg) {
|
|
23
|
-
var key = _toPrimitive(arg, "string");
|
|
24
|
-
return _typeof(key) === "symbol" ? key : String(key);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
function _defineProperty(obj, key, value) {
|
|
28
|
-
key = _toPropertyKey(key);
|
|
29
|
-
if (key in obj) {
|
|
30
|
-
Object.defineProperty(obj, key, {
|
|
31
|
-
value: value,
|
|
32
|
-
enumerable: true,
|
|
33
|
-
configurable: true,
|
|
34
|
-
writable: true
|
|
35
|
-
});
|
|
36
|
-
} else {
|
|
37
|
-
obj[key] = value;
|
|
38
|
-
}
|
|
39
|
-
return obj;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export { _defineProperty as _ };
|
|
43
|
-
//# sourceMappingURL=defineProperty-e90a259c.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"defineProperty-e90a259c.js","sources":["../node_modules/@babel/runtime/helpers/esm/typeof.js","../node_modules/@babel/runtime/helpers/esm/toPrimitive.js","../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js","../node_modules/@babel/runtime/helpers/esm/defineProperty.js"],"sourcesContent":["export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","import _typeof from \"./typeof.js\";\nexport default function _toPrimitive(input, hint) {\n if (_typeof(input) !== \"object\" || input === null) return input;\n var prim = input[Symbol.toPrimitive];\n if (prim !== undefined) {\n var res = prim.call(input, hint || \"default\");\n if (_typeof(res) !== \"object\") return res;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (hint === \"string\" ? String : Number)(input);\n}","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nexport default function _toPropertyKey(arg) {\n var key = toPrimitive(arg, \"string\");\n return _typeof(key) === \"symbol\" ? key : String(key);\n}","import toPropertyKey from \"./toPropertyKey.js\";\nexport default function _defineProperty(obj, key, value) {\n key = toPropertyKey(key);\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n return obj;\n}"],"names":["_typeof","o","Symbol","iterator","constructor","prototype","_toPrimitive","input","hint","prim","toPrimitive","undefined","res","call","TypeError","String","Number","_toPropertyKey","arg","key","_defineProperty","obj","value","toPropertyKey","Object","defineProperty","enumerable","configurable","writable"],"mappings":"AAAe,SAASA,OAAOA,CAACC,CAAC,EAAE;EACjC,yBAAyB,CAAA;;AAEzB,EAAA,OAAOD,OAAO,GAAG,UAAU,IAAI,OAAOE,MAAM,IAAI,QAAQ,IAAI,OAAOA,MAAM,CAACC,QAAQ,GAAG,UAAUF,CAAC,EAAE;AAChG,IAAA,OAAO,OAAOA,CAAC,CAAA;GAChB,GAAG,UAAUA,CAAC,EAAE;IACf,OAAOA,CAAC,IAAI,UAAU,IAAI,OAAOC,MAAM,IAAID,CAAC,CAACG,WAAW,KAAKF,MAAM,IAAID,CAAC,KAAKC,MAAM,CAACG,SAAS,GAAG,QAAQ,GAAG,OAAOJ,CAAC,CAAA;AACrH,GAAC,EAAED,OAAO,CAACC,CAAC,CAAC,CAAA;AACf;;ACPe,SAASK,YAAYA,CAACC,KAAK,EAAEC,IAAI,EAAE;AAChD,EAAA,IAAIR,OAAO,CAACO,KAAK,CAAC,KAAK,QAAQ,IAAIA,KAAK,KAAK,IAAI,EAAE,OAAOA,KAAK,CAAA;AAC/D,EAAA,IAAIE,IAAI,GAAGF,KAAK,CAACL,MAAM,CAACQ,WAAW,CAAC,CAAA;EACpC,IAAID,IAAI,KAAKE,SAAS,EAAE;IACtB,IAAIC,GAAG,GAAGH,IAAI,CAACI,IAAI,CAACN,KAAK,EAAEC,IAAI,IAAI,SAAS,CAAC,CAAA;IAC7C,IAAIR,OAAO,CAACY,GAAG,CAAC,KAAK,QAAQ,EAAE,OAAOA,GAAG,CAAA;AACzC,IAAA,MAAM,IAAIE,SAAS,CAAC,8CAA8C,CAAC,CAAA;AACrE,GAAA;EACA,OAAO,CAACN,IAAI,KAAK,QAAQ,GAAGO,MAAM,GAAGC,MAAM,EAAET,KAAK,CAAC,CAAA;AACrD;;ACRe,SAASU,cAAcA,CAACC,GAAG,EAAE;AAC1C,EAAA,IAAIC,GAAG,GAAGT,YAAW,CAACQ,GAAG,EAAE,QAAQ,CAAC,CAAA;AACpC,EAAA,OAAOlB,OAAO,CAACmB,GAAG,CAAC,KAAK,QAAQ,GAAGA,GAAG,GAAGJ,MAAM,CAACI,GAAG,CAAC,CAAA;AACtD;;ACJe,SAASC,eAAeA,CAACC,GAAG,EAAEF,GAAG,EAAEG,KAAK,EAAE;AACvDH,EAAAA,GAAG,GAAGI,cAAa,CAACJ,GAAG,CAAC,CAAA;EACxB,IAAIA,GAAG,IAAIE,GAAG,EAAE;AACdG,IAAAA,MAAM,CAACC,cAAc,CAACJ,GAAG,EAAEF,GAAG,EAAE;AAC9BG,MAAAA,KAAK,EAAEA,KAAK;AACZI,MAAAA,UAAU,EAAE,IAAI;AAChBC,MAAAA,YAAY,EAAE,IAAI;AAClBC,MAAAA,QAAQ,EAAE,IAAA;AACZ,KAAC,CAAC,CAAA;AACJ,GAAC,MAAM;AACLP,IAAAA,GAAG,CAACF,GAAG,CAAC,GAAGG,KAAK,CAAA;AAClB,GAAA;AACA,EAAA,OAAOD,GAAG,CAAA;AACZ;;;;"}
|