├── .dockerignore ├── .gitignore ├── .husky └── pre-commit ├── .idea ├── .gitignore ├── biap-client-node-js.iml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dataSources.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Dockerfile ├── README.md ├── package.json ├── src ├── accounts │ ├── accounts.routes.js │ ├── billings │ │ ├── billing.controller.js │ │ ├── billing.service.js │ │ └── db │ │ │ └── billing.js │ ├── deliveryAddress │ │ ├── db │ │ │ └── deliveryAddress.js │ │ ├── deliveryAddress.controller.js │ │ └── deliveryAddress.service.js │ └── map │ │ └── map.controller.js ├── app.js ├── database │ ├── elasticSearch.js │ └── mongooseConnector.js ├── discovery │ ├── v1 │ │ ├── bppSearch.service.js │ │ ├── search.controller.js │ │ ├── search.routes.js │ │ └── search.service.js │ └── v2 │ │ ├── bppSearch.service.js │ │ ├── search.controller.js │ │ ├── search.routes.js │ │ └── search.service.js ├── factories │ └── ContextFactory.js ├── fulfillment │ ├── v1 │ │ ├── bppTrack.service.js │ │ ├── track.controller.js │ │ ├── track.routes.js │ │ └── track.service.js │ └── v2 │ │ ├── bppTrack.service.js │ │ ├── track.controller.js │ │ ├── track.routes.js │ │ └── track.service.js ├── lib │ ├── authentication │ │ ├── index.js │ │ ├── json-web-token.js │ │ ├── strategies │ │ │ ├── passport-email-local.js │ │ │ ├── passport-jwt.js │ │ │ ├── passport-phone-local.js │ │ │ └── passport-username-local.js │ │ └── token.js │ ├── authorisation │ │ ├── authorisation.js │ │ ├── enums │ │ │ ├── action.js │ │ │ └── possession.js │ │ └── index.js │ ├── errors │ │ ├── bad-request-parameter.error.js │ │ ├── conflict.error.js │ │ ├── custom.error.js │ │ ├── duplicate-record-found.error.js │ │ ├── errors.js │ │ ├── index.js │ │ ├── no-record-found.error.js │ │ ├── precondition-required.error.js │ │ ├── unauthenticated.error.js │ │ └── unauthorised.error.js │ ├── firebase │ │ ├── initializeFirebase.js │ │ └── validateToken.js │ └── logger │ │ └── index.js ├── middlewares │ ├── appVersionValidator.js │ ├── authentication.js │ ├── authorisation.js │ ├── index.js │ └── juspayAuthentication.js ├── migrations │ ├── changeFulfillmentType │ │ └── changeFulfillmentType.js │ └── migrations.routes.js ├── order │ ├── upload │ │ ├── upload.controller.js │ │ └── upload.service.js │ ├── v1 │ │ ├── cancel │ │ │ ├── bppCancel.service.js │ │ │ ├── cancelOrder.controller.js │ │ │ └── cancelOrder.service.js │ │ ├── complaint │ │ │ ├── complaintOrder.controller.js │ │ │ └── complaintOrder.service.js │ │ ├── confirm │ │ │ ├── bppConfirm.service.js │ │ │ ├── confirmOrder.controller.js │ │ │ └── confirmOrder.service.js │ │ ├── db │ │ │ ├── complaints.js │ │ │ ├── dbService.js │ │ │ ├── order.js │ │ │ ├── orderRequestLog.js │ │ │ └── retrial.js │ │ ├── history │ │ │ ├── orderHistory.controller.js │ │ │ └── orderHistory.service.js │ │ ├── init │ │ │ ├── bppInit.service.js │ │ │ ├── initOrder.controller.js │ │ │ └── initOrder.service.js │ │ ├── order.routes.js │ │ ├── select │ │ │ ├── bppSelect.service.js │ │ │ ├── selectOrder.controller.js │ │ │ └── selectOrder.service.js │ │ ├── status │ │ │ ├── bppOrderStatus.service.js │ │ │ ├── orderStatus.controller.js │ │ │ └── orderStatus.service.js │ │ └── update │ │ │ ├── bppUpdate.service.js │ │ │ ├── updateOrder.controller.js │ │ │ └── updateOrder.service.js │ └── v2 │ │ ├── cancel │ │ ├── bppCancel.service.js │ │ ├── cancelOrder.controller.js │ │ └── cancelOrder.service.js │ │ ├── cart │ │ └── v2 │ │ │ ├── cart.controller.js │ │ │ ├── cart.routes.js │ │ │ └── cart.service.js │ │ ├── complaint │ │ ├── complaintOrder.controller.js │ │ └── complaintOrder.service.js │ │ ├── confirm │ │ ├── bppConfirm.service.js │ │ ├── confirmOrder.controller.js │ │ └── confirmOrder.service.js │ │ ├── db │ │ ├── cart.js │ │ ├── fulfillmentHistory.js │ │ ├── fulfillments copy.js │ │ ├── fulfillments.js │ │ ├── items.js │ │ ├── onsearch.json │ │ ├── orderHistory.js │ │ ├── rating.js │ │ └── settlement.js │ │ ├── history │ │ ├── orderHistory.controller.js │ │ └── orderHistory.service.js │ │ ├── init │ │ ├── bppInit.service.js │ │ ├── initOrder.controller.js │ │ └── initOrder.service.js │ │ ├── order.routes.js │ │ ├── rating │ │ ├── bppRating.service.js │ │ ├── rating.service.js │ │ └── ratingcontroller.js │ │ ├── select │ │ ├── bppSelect.service.js │ │ ├── selectOrder.controller.js │ │ └── selectOrder.service.js │ │ ├── status │ │ ├── bppOrderStatus.service.js │ │ ├── orderStatus.controller.js │ │ └── orderStatus.service.js │ │ └── update │ │ ├── bppUpdate.service.js │ │ ├── updateOrder.controller.js │ │ └── updateOrder.service.js ├── payment │ ├── juspay.service.js │ ├── payment.controller.js │ └── payment.routes.js ├── razorPay │ ├── db │ │ ├── refund.js │ │ └── transaction.js │ ├── razorPay.controller.js │ ├── razorPay.service.js │ └── razorpay.routes.js ├── sse │ ├── v1 │ │ ├── configureSse.service.js │ │ ├── sse.controller.js │ │ ├── sse.routes.js │ │ ├── sseEvent.service.js │ │ └── sseProtocol.service.js │ └── v2 │ │ ├── configureSse.service.js │ │ ├── sse.controller.js │ │ ├── sse.routes.js │ │ ├── sseEvent.service.js │ │ └── sseProtocol.service.js ├── support │ ├── v1 │ │ ├── bppSupport.service.js │ │ ├── support.controller.js │ │ ├── support.routes.js │ │ └── support.service.js │ └── v2 │ │ ├── bppSupport.service.js │ │ ├── support.controller.js │ │ ├── support.routes.js │ │ └── support.service.js └── utils │ ├── FetchRequest.js │ ├── HttpRequest.js │ ├── accessSecretKey.js │ ├── apiUtil.js │ ├── bhashini │ ├── bhashini.js │ └── translate.js │ ├── bppApis │ ├── index.js │ └── routes.js │ ├── categories.js │ ├── cityCode.js │ ├── constants.js │ ├── cryptic.js │ ├── elasticSearch │ └── catalogService.js │ ├── envHelper.js │ ├── juspayApis.js │ ├── logErrors.js │ ├── mappedCityCode.js │ ├── messages.js │ ├── ondcApis │ ├── index.js │ └── routes.js │ ├── protocolApis │ ├── index.js │ └── routes.js │ ├── registryApis │ ├── index.js │ ├── registryUtil.js │ └── routes.js │ ├── retailsErrorCode.js │ ├── router.js │ ├── s3Utils.js │ ├── sms │ ├── smsTemplates.js │ └── smsUtils.js │ ├── sse.js │ ├── stringHelper.js │ └── urlHelper.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | README.md 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/biap-client-node-js.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/biap-client-node-js.iml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/package.json -------------------------------------------------------------------------------- /src/accounts/accounts.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/accounts.routes.js -------------------------------------------------------------------------------- /src/accounts/billings/billing.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/billings/billing.controller.js -------------------------------------------------------------------------------- /src/accounts/billings/billing.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/billings/billing.service.js -------------------------------------------------------------------------------- /src/accounts/billings/db/billing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/billings/db/billing.js -------------------------------------------------------------------------------- /src/accounts/deliveryAddress/db/deliveryAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/deliveryAddress/db/deliveryAddress.js -------------------------------------------------------------------------------- /src/accounts/deliveryAddress/deliveryAddress.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/deliveryAddress/deliveryAddress.controller.js -------------------------------------------------------------------------------- /src/accounts/deliveryAddress/deliveryAddress.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/deliveryAddress/deliveryAddress.service.js -------------------------------------------------------------------------------- /src/accounts/map/map.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/accounts/map/map.controller.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/app.js -------------------------------------------------------------------------------- /src/database/elasticSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/database/elasticSearch.js -------------------------------------------------------------------------------- /src/database/mongooseConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/database/mongooseConnector.js -------------------------------------------------------------------------------- /src/discovery/v1/bppSearch.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v1/bppSearch.service.js -------------------------------------------------------------------------------- /src/discovery/v1/search.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v1/search.controller.js -------------------------------------------------------------------------------- /src/discovery/v1/search.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v1/search.routes.js -------------------------------------------------------------------------------- /src/discovery/v1/search.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v1/search.service.js -------------------------------------------------------------------------------- /src/discovery/v2/bppSearch.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v2/bppSearch.service.js -------------------------------------------------------------------------------- /src/discovery/v2/search.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v2/search.controller.js -------------------------------------------------------------------------------- /src/discovery/v2/search.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v2/search.routes.js -------------------------------------------------------------------------------- /src/discovery/v2/search.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/discovery/v2/search.service.js -------------------------------------------------------------------------------- /src/factories/ContextFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/factories/ContextFactory.js -------------------------------------------------------------------------------- /src/fulfillment/v1/bppTrack.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v1/bppTrack.service.js -------------------------------------------------------------------------------- /src/fulfillment/v1/track.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v1/track.controller.js -------------------------------------------------------------------------------- /src/fulfillment/v1/track.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v1/track.routes.js -------------------------------------------------------------------------------- /src/fulfillment/v1/track.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v1/track.service.js -------------------------------------------------------------------------------- /src/fulfillment/v2/bppTrack.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v2/bppTrack.service.js -------------------------------------------------------------------------------- /src/fulfillment/v2/track.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v2/track.controller.js -------------------------------------------------------------------------------- /src/fulfillment/v2/track.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v2/track.routes.js -------------------------------------------------------------------------------- /src/fulfillment/v2/track.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/fulfillment/v2/track.service.js -------------------------------------------------------------------------------- /src/lib/authentication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/index.js -------------------------------------------------------------------------------- /src/lib/authentication/json-web-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/json-web-token.js -------------------------------------------------------------------------------- /src/lib/authentication/strategies/passport-email-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/strategies/passport-email-local.js -------------------------------------------------------------------------------- /src/lib/authentication/strategies/passport-jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/strategies/passport-jwt.js -------------------------------------------------------------------------------- /src/lib/authentication/strategies/passport-phone-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/strategies/passport-phone-local.js -------------------------------------------------------------------------------- /src/lib/authentication/strategies/passport-username-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/strategies/passport-username-local.js -------------------------------------------------------------------------------- /src/lib/authentication/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authentication/token.js -------------------------------------------------------------------------------- /src/lib/authorisation/authorisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authorisation/authorisation.js -------------------------------------------------------------------------------- /src/lib/authorisation/enums/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authorisation/enums/action.js -------------------------------------------------------------------------------- /src/lib/authorisation/enums/possession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authorisation/enums/possession.js -------------------------------------------------------------------------------- /src/lib/authorisation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/authorisation/index.js -------------------------------------------------------------------------------- /src/lib/errors/bad-request-parameter.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/bad-request-parameter.error.js -------------------------------------------------------------------------------- /src/lib/errors/conflict.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/conflict.error.js -------------------------------------------------------------------------------- /src/lib/errors/custom.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/custom.error.js -------------------------------------------------------------------------------- /src/lib/errors/duplicate-record-found.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/duplicate-record-found.error.js -------------------------------------------------------------------------------- /src/lib/errors/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/errors.js -------------------------------------------------------------------------------- /src/lib/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/index.js -------------------------------------------------------------------------------- /src/lib/errors/no-record-found.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/no-record-found.error.js -------------------------------------------------------------------------------- /src/lib/errors/precondition-required.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/precondition-required.error.js -------------------------------------------------------------------------------- /src/lib/errors/unauthenticated.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/unauthenticated.error.js -------------------------------------------------------------------------------- /src/lib/errors/unauthorised.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/errors/unauthorised.error.js -------------------------------------------------------------------------------- /src/lib/firebase/initializeFirebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/firebase/initializeFirebase.js -------------------------------------------------------------------------------- /src/lib/firebase/validateToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/firebase/validateToken.js -------------------------------------------------------------------------------- /src/lib/logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/lib/logger/index.js -------------------------------------------------------------------------------- /src/middlewares/appVersionValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/middlewares/appVersionValidator.js -------------------------------------------------------------------------------- /src/middlewares/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/middlewares/authentication.js -------------------------------------------------------------------------------- /src/middlewares/authorisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/middlewares/authorisation.js -------------------------------------------------------------------------------- /src/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/middlewares/index.js -------------------------------------------------------------------------------- /src/middlewares/juspayAuthentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/middlewares/juspayAuthentication.js -------------------------------------------------------------------------------- /src/migrations/changeFulfillmentType/changeFulfillmentType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/migrations/changeFulfillmentType/changeFulfillmentType.js -------------------------------------------------------------------------------- /src/migrations/migrations.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/migrations/migrations.routes.js -------------------------------------------------------------------------------- /src/order/upload/upload.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/upload/upload.controller.js -------------------------------------------------------------------------------- /src/order/upload/upload.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/upload/upload.service.js -------------------------------------------------------------------------------- /src/order/v1/cancel/bppCancel.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/cancel/bppCancel.service.js -------------------------------------------------------------------------------- /src/order/v1/cancel/cancelOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/cancel/cancelOrder.controller.js -------------------------------------------------------------------------------- /src/order/v1/cancel/cancelOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/cancel/cancelOrder.service.js -------------------------------------------------------------------------------- /src/order/v1/complaint/complaintOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/complaint/complaintOrder.controller.js -------------------------------------------------------------------------------- /src/order/v1/complaint/complaintOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/complaint/complaintOrder.service.js -------------------------------------------------------------------------------- /src/order/v1/confirm/bppConfirm.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/confirm/bppConfirm.service.js -------------------------------------------------------------------------------- /src/order/v1/confirm/confirmOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/confirm/confirmOrder.controller.js -------------------------------------------------------------------------------- /src/order/v1/confirm/confirmOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/confirm/confirmOrder.service.js -------------------------------------------------------------------------------- /src/order/v1/db/complaints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/db/complaints.js -------------------------------------------------------------------------------- /src/order/v1/db/dbService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/db/dbService.js -------------------------------------------------------------------------------- /src/order/v1/db/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/db/order.js -------------------------------------------------------------------------------- /src/order/v1/db/orderRequestLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/db/orderRequestLog.js -------------------------------------------------------------------------------- /src/order/v1/db/retrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/db/retrial.js -------------------------------------------------------------------------------- /src/order/v1/history/orderHistory.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/history/orderHistory.controller.js -------------------------------------------------------------------------------- /src/order/v1/history/orderHistory.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/history/orderHistory.service.js -------------------------------------------------------------------------------- /src/order/v1/init/bppInit.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/init/bppInit.service.js -------------------------------------------------------------------------------- /src/order/v1/init/initOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/init/initOrder.controller.js -------------------------------------------------------------------------------- /src/order/v1/init/initOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/init/initOrder.service.js -------------------------------------------------------------------------------- /src/order/v1/order.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/order.routes.js -------------------------------------------------------------------------------- /src/order/v1/select/bppSelect.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/select/bppSelect.service.js -------------------------------------------------------------------------------- /src/order/v1/select/selectOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/select/selectOrder.controller.js -------------------------------------------------------------------------------- /src/order/v1/select/selectOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/select/selectOrder.service.js -------------------------------------------------------------------------------- /src/order/v1/status/bppOrderStatus.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/status/bppOrderStatus.service.js -------------------------------------------------------------------------------- /src/order/v1/status/orderStatus.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/status/orderStatus.controller.js -------------------------------------------------------------------------------- /src/order/v1/status/orderStatus.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/status/orderStatus.service.js -------------------------------------------------------------------------------- /src/order/v1/update/bppUpdate.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/update/bppUpdate.service.js -------------------------------------------------------------------------------- /src/order/v1/update/updateOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/update/updateOrder.controller.js -------------------------------------------------------------------------------- /src/order/v1/update/updateOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v1/update/updateOrder.service.js -------------------------------------------------------------------------------- /src/order/v2/cancel/bppCancel.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/cancel/bppCancel.service.js -------------------------------------------------------------------------------- /src/order/v2/cancel/cancelOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/cancel/cancelOrder.controller.js -------------------------------------------------------------------------------- /src/order/v2/cancel/cancelOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/cancel/cancelOrder.service.js -------------------------------------------------------------------------------- /src/order/v2/cart/v2/cart.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/cart/v2/cart.controller.js -------------------------------------------------------------------------------- /src/order/v2/cart/v2/cart.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/cart/v2/cart.routes.js -------------------------------------------------------------------------------- /src/order/v2/cart/v2/cart.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/cart/v2/cart.service.js -------------------------------------------------------------------------------- /src/order/v2/complaint/complaintOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/complaint/complaintOrder.controller.js -------------------------------------------------------------------------------- /src/order/v2/complaint/complaintOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/complaint/complaintOrder.service.js -------------------------------------------------------------------------------- /src/order/v2/confirm/bppConfirm.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/confirm/bppConfirm.service.js -------------------------------------------------------------------------------- /src/order/v2/confirm/confirmOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/confirm/confirmOrder.controller.js -------------------------------------------------------------------------------- /src/order/v2/confirm/confirmOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/confirm/confirmOrder.service.js -------------------------------------------------------------------------------- /src/order/v2/db/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/cart.js -------------------------------------------------------------------------------- /src/order/v2/db/fulfillmentHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/fulfillmentHistory.js -------------------------------------------------------------------------------- /src/order/v2/db/fulfillments copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/fulfillments copy.js -------------------------------------------------------------------------------- /src/order/v2/db/fulfillments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/fulfillments.js -------------------------------------------------------------------------------- /src/order/v2/db/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/items.js -------------------------------------------------------------------------------- /src/order/v2/db/onsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/onsearch.json -------------------------------------------------------------------------------- /src/order/v2/db/orderHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/orderHistory.js -------------------------------------------------------------------------------- /src/order/v2/db/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/rating.js -------------------------------------------------------------------------------- /src/order/v2/db/settlement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/db/settlement.js -------------------------------------------------------------------------------- /src/order/v2/history/orderHistory.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/history/orderHistory.controller.js -------------------------------------------------------------------------------- /src/order/v2/history/orderHistory.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/history/orderHistory.service.js -------------------------------------------------------------------------------- /src/order/v2/init/bppInit.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/init/bppInit.service.js -------------------------------------------------------------------------------- /src/order/v2/init/initOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/init/initOrder.controller.js -------------------------------------------------------------------------------- /src/order/v2/init/initOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/init/initOrder.service.js -------------------------------------------------------------------------------- /src/order/v2/order.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/order.routes.js -------------------------------------------------------------------------------- /src/order/v2/rating/bppRating.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/rating/bppRating.service.js -------------------------------------------------------------------------------- /src/order/v2/rating/rating.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/rating/rating.service.js -------------------------------------------------------------------------------- /src/order/v2/rating/ratingcontroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/rating/ratingcontroller.js -------------------------------------------------------------------------------- /src/order/v2/select/bppSelect.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/select/bppSelect.service.js -------------------------------------------------------------------------------- /src/order/v2/select/selectOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/select/selectOrder.controller.js -------------------------------------------------------------------------------- /src/order/v2/select/selectOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/select/selectOrder.service.js -------------------------------------------------------------------------------- /src/order/v2/status/bppOrderStatus.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/status/bppOrderStatus.service.js -------------------------------------------------------------------------------- /src/order/v2/status/orderStatus.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/status/orderStatus.controller.js -------------------------------------------------------------------------------- /src/order/v2/status/orderStatus.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/status/orderStatus.service.js -------------------------------------------------------------------------------- /src/order/v2/update/bppUpdate.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/update/bppUpdate.service.js -------------------------------------------------------------------------------- /src/order/v2/update/updateOrder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/update/updateOrder.controller.js -------------------------------------------------------------------------------- /src/order/v2/update/updateOrder.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/order/v2/update/updateOrder.service.js -------------------------------------------------------------------------------- /src/payment/juspay.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/payment/juspay.service.js -------------------------------------------------------------------------------- /src/payment/payment.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/payment/payment.controller.js -------------------------------------------------------------------------------- /src/payment/payment.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/payment/payment.routes.js -------------------------------------------------------------------------------- /src/razorPay/db/refund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/razorPay/db/refund.js -------------------------------------------------------------------------------- /src/razorPay/db/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/razorPay/db/transaction.js -------------------------------------------------------------------------------- /src/razorPay/razorPay.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/razorPay/razorPay.controller.js -------------------------------------------------------------------------------- /src/razorPay/razorPay.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/razorPay/razorPay.service.js -------------------------------------------------------------------------------- /src/razorPay/razorpay.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/razorPay/razorpay.routes.js -------------------------------------------------------------------------------- /src/sse/v1/configureSse.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v1/configureSse.service.js -------------------------------------------------------------------------------- /src/sse/v1/sse.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v1/sse.controller.js -------------------------------------------------------------------------------- /src/sse/v1/sse.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v1/sse.routes.js -------------------------------------------------------------------------------- /src/sse/v1/sseEvent.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v1/sseEvent.service.js -------------------------------------------------------------------------------- /src/sse/v1/sseProtocol.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v1/sseProtocol.service.js -------------------------------------------------------------------------------- /src/sse/v2/configureSse.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v2/configureSse.service.js -------------------------------------------------------------------------------- /src/sse/v2/sse.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v2/sse.controller.js -------------------------------------------------------------------------------- /src/sse/v2/sse.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v2/sse.routes.js -------------------------------------------------------------------------------- /src/sse/v2/sseEvent.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v2/sseEvent.service.js -------------------------------------------------------------------------------- /src/sse/v2/sseProtocol.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/sse/v2/sseProtocol.service.js -------------------------------------------------------------------------------- /src/support/v1/bppSupport.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v1/bppSupport.service.js -------------------------------------------------------------------------------- /src/support/v1/support.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v1/support.controller.js -------------------------------------------------------------------------------- /src/support/v1/support.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v1/support.routes.js -------------------------------------------------------------------------------- /src/support/v1/support.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v1/support.service.js -------------------------------------------------------------------------------- /src/support/v2/bppSupport.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v2/bppSupport.service.js -------------------------------------------------------------------------------- /src/support/v2/support.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v2/support.controller.js -------------------------------------------------------------------------------- /src/support/v2/support.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v2/support.routes.js -------------------------------------------------------------------------------- /src/support/v2/support.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/support/v2/support.service.js -------------------------------------------------------------------------------- /src/utils/FetchRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/FetchRequest.js -------------------------------------------------------------------------------- /src/utils/HttpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/HttpRequest.js -------------------------------------------------------------------------------- /src/utils/accessSecretKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/accessSecretKey.js -------------------------------------------------------------------------------- /src/utils/apiUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/apiUtil.js -------------------------------------------------------------------------------- /src/utils/bhashini/bhashini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/bhashini/bhashini.js -------------------------------------------------------------------------------- /src/utils/bhashini/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/bhashini/translate.js -------------------------------------------------------------------------------- /src/utils/bppApis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/bppApis/index.js -------------------------------------------------------------------------------- /src/utils/bppApis/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/bppApis/routes.js -------------------------------------------------------------------------------- /src/utils/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/categories.js -------------------------------------------------------------------------------- /src/utils/cityCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/cityCode.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/cryptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/cryptic.js -------------------------------------------------------------------------------- /src/utils/elasticSearch/catalogService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/elasticSearch/catalogService.js -------------------------------------------------------------------------------- /src/utils/envHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/envHelper.js -------------------------------------------------------------------------------- /src/utils/juspayApis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/juspayApis.js -------------------------------------------------------------------------------- /src/utils/logErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/logErrors.js -------------------------------------------------------------------------------- /src/utils/mappedCityCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/mappedCityCode.js -------------------------------------------------------------------------------- /src/utils/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/messages.js -------------------------------------------------------------------------------- /src/utils/ondcApis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/ondcApis/index.js -------------------------------------------------------------------------------- /src/utils/ondcApis/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/ondcApis/routes.js -------------------------------------------------------------------------------- /src/utils/protocolApis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/protocolApis/index.js -------------------------------------------------------------------------------- /src/utils/protocolApis/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/protocolApis/routes.js -------------------------------------------------------------------------------- /src/utils/registryApis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/registryApis/index.js -------------------------------------------------------------------------------- /src/utils/registryApis/registryUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/registryApis/registryUtil.js -------------------------------------------------------------------------------- /src/utils/registryApis/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/registryApis/routes.js -------------------------------------------------------------------------------- /src/utils/retailsErrorCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/retailsErrorCode.js -------------------------------------------------------------------------------- /src/utils/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/router.js -------------------------------------------------------------------------------- /src/utils/s3Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/s3Utils.js -------------------------------------------------------------------------------- /src/utils/sms/smsTemplates.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/sms/smsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/sms/smsUtils.js -------------------------------------------------------------------------------- /src/utils/sse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/sse.js -------------------------------------------------------------------------------- /src/utils/stringHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/stringHelper.js -------------------------------------------------------------------------------- /src/utils/urlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/src/utils/urlHelper.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONDC-Official/biap-client-node-js/HEAD/yarn.lock --------------------------------------------------------------------------------