{"bugs":{"url":"https://github.com/SAP/cloud-sdk-js/issues"},"dist":{"shasum":"fa8c592787e3e5571554c0e43dd14e70a30d2be7","tarball":"https://registry.npmjs.org/@sap-cloud-sdk/core/-/core-1.54.2.tgz","fileCount":940,"integrity":"sha512-oF1nMYo9qAk4BDAypuAfhofxxeNKTqIroMfZAqgOb8vXxwtsZjS+bK03mptxE3cPnDhwUV0LaOeNy5foIv9oCw==","signatures":[{"sig":"MEUCIQDPKJWUj5FPQoOyPBvMJyEJFzdRstjxYLsIcWtVWLJgNQIgaLDkjF75ygBP6MuoL4E40Q7/FkQca91nUSSlWJr+ENs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1641822,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikJeRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZWg//Z5JBNH7x3V5pGI0lrHZC3lFk5h9b2ZxuodiytLo0NtgfrFm9\r\nm3fjv30sIBRAfGt4Wsy3FozhyWE/HW+Tre4+sU6APyCWeF74P62mZ3/GAUzq\r\n1ieY0KalhlbRs/w0ZnkFG3e8qqnvNGji4tiaCFWBNMXE3Kgo4ptmulu55okv\r\nbSQe0aei2rRHmBM5uTEW6zdoJwIkFAYncBJS0HN8AZPYuRC1vYVNRrSh+PlY\r\nJjGJmzpFLvkDWFahdZrOD2jWAVfoo5OGyKEinPzd0u6+eSIA66ZI0+6x0/Yk\r\nQTem+8x0cOvoz+0ga8OVwMMvY9adPIuSwUCIcJfZ4VsHYqM2f3hATFp8iHfO\r\nM/nS+KrYc/wgxf3i7up3QLC5iO5QOLR8isJ8uHc60WR9v6OXLD3tV3DxnXD0\r\n3kpULUW9ynhO1+1Ai3pq+Un/HB9CQ6r5fEsrtpIFtlgk8EU8CW/K4IVx4T4G\r\nuqvEqnrtAgcv19WzyVqsZ/TStHIny7FFUhyGHblzSN+OExbeA+oWXVmIzwJZ\r\nTDZYkamLviJKj9aUdPaIQZeShl701Fay9wTIw9c792U71witYyb1LG0Q1MPn\r\n/JI1gRNA7/kzdDo81HHxfF+RrCUFJU/7kUl0fUY81LyFIW5hRqab2iWMiDOH\r\nMrDs/LdM+/jxECk0cLrYm4rHzT5FLnh52RI=\r\n=qzg0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","name":"@sap-cloud-sdk/core","types":"./dist/index.d.ts","readme":"<!-- sap-cloud-sdk-logo -->\n<!-- This block is inserted by scripts/replace-common-readme.ts. Do not adjust it manually. -->\n<a href=\"https://sap.com/s4sdk\"><img src=\"https://help.sap.com/doc/2324e9c3b28748a4ae2ad08166d77675/1.0/en-US/logo-with-js.svg\" alt=\"SAP Cloud SDK for JavaScript Logo\" height=\"122.92\" width=\"226.773\"/></a>\n<!-- sap-cloud-sdk-logo-stop -->\n\n<!-- sap-cloud-sdk-2.0-announcement -->\n<!-- This block is inserted by scripts/replace-common-readme.ts. Do not adjust it manually. -->\n# Version 2 Release\n\nThe SAP Cloud SDK has released version 2.\nCheck the [upgrade guide](https://sap.github.io/cloud-sdk/docs/js/guides/upgrade-to-version-2) for more details.\nMake sure you understand our [release policy](https://sap.github.io/cloud-sdk/docs/js/release-policy).\n<!-- sap-cloud-sdk-2.0-announcement-stop -->\n\n# @sap-cloud-sdk/core\n\nThis package contains the core functionality of the SAP Cloud SDK as well as the SAP Business Technology Platform abstractions.\n\n## Installation\n\n```\n$ npm install @sap-cloud-sdk/core\n```\n\n## Usage\n\nThe core is the heart of the SAP Cloud SDK and contains the functionality that is essential to every project powered by the SDK.\nAny OData client built by the SAP Cloud SDK, be it the VDM or clients built by the generator are using the core.\nWe recommend to install this in addition to your clients.\n\nBelow is an example showing how you can build and execute your request with multiple filters by using an function called `and`.\n\n```\nimport { and } from '@sap-cloud-sdk/core';\nimport { BusinessPartner } from '@sap/cloud-sdk-vdm-business-partner-service';\n\n// Build your filters\nconst firstNameFilter = BusinessPartner.FIRST_NAME.equals('firstName');\nconst lastNameFilter = BusinessPartner.LAST_NAME.equals('lastName');\n\n// Execute your request with two filters\nBusinessPartner.requestBuilder()\n .getAll()\n .filter(and(firstNameFilter, lastNameFilter))\n .execute(yourDestination);\n```\n\nFor more detailed overview visit our [OData client documentation](https://sap.github.io/cloud-sdk/docs/js/features/odata/use-odata-v2-type-safe-client-for-javascript-typescript).\n\n<!-- sap-cloud-sdk-common-readme -->\n<!-- This block is inserted by scripts/replace-common-readme.ts. Do not adjust it manually. -->\n## Support\n\nThe recommended way to get in touch with us is to create an issue in our [github repository](https://github.com/SAP/cloud-sdk-js/issues).\nSelect the issue category `Bug`, `Feature` or `Question` depending on the nature of your request.\nWe try to provide fixes, features and answers as soon as possible.\n\n## Contribute\n\nIf you would like to contribute to the SAP Cloud SDK, please make yourself familiar with our [contributing guidelines](https://github.com/SAP/cloud-sdk-js/blob/main/CONTRIBUTING.md) and follow the given instructions.\n\n## Links\n\n- [Github](https://github.com/SAP/cloud-sdk-js)\n- [Github - Releases](https://github.com/SAP/cloud-sdk-js/releases)\n\n<br>\n\n- [SAP Cloud SDK Documentation portal](https://sap.github.io/cloud-sdk/)\n- [SAP Cloud SDK Documentation portal - Getting started guide](https://sap.github.io/cloud-sdk/docs/js/getting-started)\n- [SAP Cloud SDK Documentation portal - API documentation](https://sap.github.io/cloud-sdk/docs/js/api-reference-js-ts)\n\n<br>\n\n- [developers.sap.com - Product Overview](https://developers.sap.com/topics/cloud-sdk.html)\n- [developers.sap.com - Tutorials](https://developers.sap.com/tutorial-navigator.html?tag=products:technology-platform/sap-cloud-sdk/sap-cloud-sdk&tag=topic:javascript)\n\n## License\n\nThe SAP Cloud SDK is released under the [Apache License Version 2.0.](http://www.apache.org/licenses/)\n<!-- sap-cloud-sdk-common-readme-stop -->\n","gitHead":"7dea89d1e3fcc911061fbdbd2dd676e25ce4d393","license":"Apache-2.0","scripts":{"test":"yarn jest","compile":"yarn tsc -b","prepare":"yarn compile","coverage":"yarn jest --coverage","check:dependencies":"depcheck ."},"_npmUser":{"name":"marikaner","email":"marika.marszalkowski@sap.com"},"homepage":"https://sap.github.io/cloud-sdk/docs/js/overview-cloud-sdk-for-javascript","keywords":["sap-cloud-sdk","cloud-sdk","sap-cloud-platform","core"],"deprecated":"Version 1 of SAP Cloud SDK is no longer maintained. Check the upgrade guide for switching to version 2: https://sap.github.io/cloud-sdk/docs/js/guides/upgrade-to-version-2.","repository":{"url":"git+https://github.com/SAP/cloud-sdk-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v14.19.2+x64 (linux)","description":"SAP Cloud SDK for JavaScript core","directories":{},"maintainers":[{"name":"florian-richter","email":"florian.richter@sap.com"},{"name":"frankessenberger","email":"frank.essenberger@sap.com"},{"name":"jjtang","email":"junjie.tang@sap.com"},{"name":"marikaner","email":"marika.marszalkowski@sap.com"}],"_nodeVersion":"14.19.2","dependencies":{"uuid":"^8.2.0","voca":"^1.4.0","axios":"^0.26.0","moment":"^2.29.0","opossum":"^6.0.0","@sap/xsenv":"^3.0.0","@sap/xssec":"^3.2.7","bignumber.js":"^9.0.0","jsonwebtoken":"^8.5.1","http-proxy-agent":"^5.0.0","https-proxy-agent":"^5.0.0","@sap-cloud-sdk/util":"^1.54.2","@types/jsonwebtoken":"^8.3.8","@sap-cloud-sdk/analytics":"^1.54.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"nock":"^13.0.11","@types/opossum":"^6.2.0","@sap-cloud-sdk/test-util":"^1.54.2"},"_npmOperationalInternal":{"tmp":"tmp/core_1.54.2_1653643153010_0.32766932761991674","host":"s3://npm-registry-packages"},"_id":"@sap-cloud-sdk/core@1.54.2","version":"1.54.2"}