{"version":3,"file":"static/js/ca5e96db8cf5cc40c95e.bundle.js","mappings":";qMAWM,MAAOA,EAGTC,WAAAA,GAMO,KAAAC,YAAc,IAAM,OACpB,KAAAC,mBAAqB,IAAM,OAC3B,KAAAC,cAAgB,IAA0B,cAP7CC,KAAKC,YAAY,EACrB,EAoCJ,QAAeC,EAAAA,GAAoC,CAC/CC,OAbJC,eAAsBC,EAAuBC,GASzC,MAAO,CAAEC,cALcL,EAAAA,GAAqC,wEAAyE,OAAQ,wBAKpHM,WAC7B,EAKIC,GAAI,YACJJ,MAvBiBK,GACV,IAAIf,omBClCf,MAAMgB,EAAU,CAAEC,QAAS,CAAC,EAAGC,YAAa,CAAC,GAwCrC,CACI,MAAMC,EAAa,4BACnBH,EAAQE,YAAYC,GAAcC,EAAQ,MAxCxBD,KAClBH,EAAQE,YAAYC,IACpBH,EAAQE,YAAYC,GAAYE,SAChCL,EAAQE,YAAYC,GAAYE,QAAQC,WACxCN,EAAQE,YAAYC,GAAYE,QAAQC,UAAUR,GAClDE,EAAQE,YAAYF,EAAQE,YAAYC,GAAYE,QAAQC,UAAUR,IAAME,EAAQE,YAAYC,GAEhGI,OAAOC,KAAKR,EAAQE,YAAYC,IAAe,CAAC,GAAGM,SAAQC,IACnDV,EAAQE,YAAYC,GAAYO,IAChCV,EAAQE,YAAYC,GAAYO,GAAYJ,WAC5CN,EAAQE,YAAYC,GAAYO,GAAYJ,UAAUK,SACtDX,EAAQE,YAAYF,EAAQE,YAAYC,GAAYO,GAAYJ,UAAUR,IAAME,EAAQE,YAAYC,GAAYO,GACpH,GAER,EA2BIE,CAAiBT,EACrB,CAGJU,OAAOC,aAAeD,OAAOC,cAAgB,CAAC,EAC9CD,OAAOC,aAAab,QAAOc,EAAAA,EAAA,GACpBF,OAAOC,aAAab,SAAW,CAAC,GAChCD,EAAQC,SAGXY,OAAOC,aAAaE,mBAAqB,CAAC,EAC1CH,OAAOC,aAAaE,mBAA8B,UAACD,EAAA,GAC5Cf,EAAQE,iCCvDvBe,EAAOC,QAAUC,2BCAjBF,EAAOC,QAAUE","sources":["webpack://Msdyn365.Commerce.Online/./src/actions/get-achurl.action.ts?95f2","webpack://Msdyn365.Commerce.Online/./lib/__local__/module-registration.js?8a42","webpack://Msdyn365.Commerce.Online/external var \"React\"?0d3b","webpack://Msdyn365.Commerce.Online/external var \"ReactDOM\"?853b"],"sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation.\n * All rights reserved. See LICENSE in the project root for license information.\n */\n\nimport * as Msdyn365 from '@msdyn365-commerce/core';\n//import {getAchUrlAsync} from './DataActionExtension.g';\n/**\n * GetAchurl Input Action\n */\n\nexport class GetAchUrlInput implements Msdyn365.IActionInput {\n public PaymentData:string;\n // TODO: Construct the input needed to run the action\n constructor() {\n this.PaymentData='';\n }\n\n // TODO: Determine if the results of this get action should cache the results and if so provide\n // a cache object type and an appropriate cache key\n public getCacheKey = () => `TODO`;\n public getCacheObjectType = () => 'TODO';\n public dataCacheType = (): Msdyn365.CacheType => 'application';\n}\n\n// TODO: Create a data model here or import one to capture the response of the action\nexport interface IGetAchUrlData {\n secret: string;\n}\n\n/**\n * TODO: Use this function to create the input required to make the action call\n */\nconst createInput = (args: Msdyn365.ICreateActionContext): Msdyn365.IActionInput => {\n return new GetAchUrlInput();\n};\n\n/**\n * TODO: Use this function to call your action and process the results as needed\n */\nasync function action(input: GetAchUrlInput, ctx: Msdyn365.IActionContext): Promise {\n // const apiSettings = Msdyn365.msdyn365Commerce.apiSettings;\n\n // TODO: Uncomment the below line to get the value from a service\n const response = await Msdyn365.sendRequest('https://tmc-comret.sandbox.operations.dynamics.com/Commerce/GetAchUrl', 'post', '{paymentData: \"yy\"}');\n //return getAchUrlAsync({ callerContext: ctx, bypassCache:'get' }, 'wow').then(response=>{\n // return { secret: response};\n //});\n //return response;\n return { secret:response.statusText};\n}\n\nexport default Msdyn365.createObservableDataAction({\n action: >action,\n // TODO: Give your data action a unique id\n id: 'GetAchUrl',\n input: createInput\n // TODO: Uncomment the below line if this is a meant to be a batched data action\n // isBatched: true\n});\n","const binding = { modules: {}, dataActions: {} };\n\n const registerActionId = (actionPath) => {\n if (binding.dataActions[actionPath] &&\n binding.dataActions[actionPath].default &&\n binding.dataActions[actionPath].default.prototype &&\n binding.dataActions[actionPath].default.prototype.id) {\n binding.dataActions[binding.dataActions[actionPath].default.prototype.id] = binding.dataActions[actionPath];\n } else {\n Object.keys(binding.dataActions[actionPath] || {}).forEach(exportName => {\n if (binding.dataActions[actionPath][exportName] &&\n binding.dataActions[actionPath][exportName].prototype &&\n binding.dataActions[actionPath][exportName].prototype.Action) {\n binding.dataActions[binding.dataActions[actionPath][exportName].prototype.id] = binding.dataActions[actionPath][exportName];\n }\n })\n }\n };\n\n const registerSanitizedActionPath = (sanitizedActionPath, dataAction) => {\n if (process.env.NODE_ENV === 'development') {\n if (!dataAction.default) {\n throw new Error('Data action path does not have a default export');\n }\n if (!(dataAction.default.prototype.id && binding.dataActions[dataAction.default.prototype.id]) || !binding.dataActions[sanitizedActionPath]) {\n binding.dataActions[sanitizedActionPath] = dataAction;\n }\n } else {\n binding.dataActions[sanitizedActionPath] = dataAction;\n if (!binding.dataActions[sanitizedActionPath].default) {\n throw new Error('Data action path ' + sanitizedActionPath + ' does not have a default export');\n }\n binding.dataActions[sanitizedActionPath].default.prototype.RegistrationId = sanitizedActionPath;\n if (binding.dataActions[sanitizedActionPath].default.prototype.id) {\n binding.dataActions[binding.dataActions[sanitizedActionPath].default.prototype.id] = sanitizedActionPath;\n }\n }\n };\n \n\n { \n const actionPath = 'actions/get-achurl.action';\n binding.dataActions[actionPath] = require('partner/actions/get-achurl.action');\n registerActionId(actionPath);\n }\n\n \n window.__bindings__ = window.__bindings__ || {};\n window.__bindings__.modules = {\n ...window.__bindings__.modules || {},\n ...binding.modules\n };\n \n window.__bindings__.packageDataActions = {};\n window.__bindings__.packageDataActions['__local__'] = {\n ...binding.dataActions\n };","module.exports = React;","module.exports = ReactDOM;"],"names":["GetAchUrlInput","constructor","getCacheKey","getCacheObjectType","dataCacheType","this","PaymentData","Msdyn365","action","async","input","ctx","secret","statusText","id","args","binding","modules","dataActions","actionPath","require","default","prototype","Object","keys","forEach","exportName","Action","registerActionId","window","__bindings__","_objectSpread","packageDataActions","module","exports","React","ReactDOM"],"sourceRoot":""}