Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@expediagroup/fraudpreventionv2-sdk

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expediagroup/fraudpreventionv2-sdk - npm Package Compare versions

Comparing version 1.0.0-alpha.1693316306 to 1.0.0-alpha.1693318232

44

client/apis/FraudPreventionV2Client.ts

@@ -70,13 +70,13 @@ /*

* @param orderPurchaseScreenRequest
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)
* @return Promise<OrderPurchaseScreenResponse>
* @throws ExpediaGroupServiceBadRequestError
* @throws ExpediaGroupServiceUnauthorizedError
* @throws ExpediaGroupServiceForbiddenError
* @throws ExpediaGroupServiceNotFoundError
* @throws ExpediaGroupServiceTooManyRequestsError
* @throws ExpediaGroupServiceInternalServerError
* @throws ExpediaGroupServiceBadGatewayError
* @throws ExpediaGroupServiceServiceUnavailableError
* @throws ExpediaGroupServiceGatewayTimeoutError
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)<OrderPurchaseScreenResponse>
* @throws ExpediaGroupApiBadRequestError
* @throws ExpediaGroupApiUnauthorizedError
* @throws ExpediaGroupApiForbiddenError
* @throws ExpediaGroupApiNotFoundError
* @throws ExpediaGroupApiTooManyRequestsError
* @throws ExpediaGroupApiInternalServerError
* @throws ExpediaGroupApiBadGatewayError
* @throws ExpediaGroupApiServiceUnavailableError
* @throws ExpediaGroupApiGatewayTimeoutError
* @return Promise
*/

@@ -111,13 +111,13 @@ screen(

* @param orderPurchaseUpdateRequest An OrderPurchaseUpdate request may be of one of the following types &#x60;ORDER_UPDATE&#x60;, &#x60;CHARGEBACK_FEEDBACK&#x60;, &#x60;INSULT_FEEDBACK&#x60;, &#x60;REFUND_UPDATE&#x60;, &#x60;PAYMENT_UPDATE&#x60;.
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)
* @return Promise<OrderPurchaseUpdateResponse>
* @throws ExpediaGroupServiceBadRequestError
* @throws ExpediaGroupServiceUnauthorizedError
* @throws ExpediaGroupServiceForbiddenError
* @throws ExpediaGroupServiceOrderPurchaseUpdateNotFoundError
* @throws ExpediaGroupServiceTooManyRequestsError
* @throws ExpediaGroupServiceInternalServerError
* @throws ExpediaGroupServiceBadGatewayError
* @throws ExpediaGroupServiceServiceUnavailableError
* @throws ExpediaGroupServiceGatewayTimeoutError
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)<OrderPurchaseUpdateResponse>
* @throws ExpediaGroupApiBadRequestError
* @throws ExpediaGroupApiUnauthorizedError
* @throws ExpediaGroupApiForbiddenError
* @throws ExpediaGroupApiOrderPurchaseUpdateNotFoundError
* @throws ExpediaGroupApiTooManyRequestsError
* @throws ExpediaGroupApiInternalServerError
* @throws ExpediaGroupApiBadGatewayError
* @throws ExpediaGroupApiServiceUnavailableError
* @throws ExpediaGroupApiGatewayTimeoutError
* @return Promise
*/

@@ -124,0 +124,0 @@ update(

@@ -33,1 +33,2 @@ /*

export * from './models'
export * from './models/error/ApiError'

@@ -18,13 +18,13 @@ import { OrderPurchaseScreenRequest, OrderPurchaseScreenResponse, OrderPurchaseUpdateRequest, OrderPurchaseUpdateResponse } from '../../models';

* @param orderPurchaseScreenRequest
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)
* @return Promise<OrderPurchaseScreenResponse>
* @throws ExpediaGroupServiceBadRequestError
* @throws ExpediaGroupServiceUnauthorizedError
* @throws ExpediaGroupServiceForbiddenError
* @throws ExpediaGroupServiceNotFoundError
* @throws ExpediaGroupServiceTooManyRequestsError
* @throws ExpediaGroupServiceInternalServerError
* @throws ExpediaGroupServiceBadGatewayError
* @throws ExpediaGroupServiceServiceUnavailableError
* @throws ExpediaGroupServiceGatewayTimeoutError
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)<OrderPurchaseScreenResponse>
* @throws ExpediaGroupApiBadRequestError
* @throws ExpediaGroupApiUnauthorizedError
* @throws ExpediaGroupApiForbiddenError
* @throws ExpediaGroupApiNotFoundError
* @throws ExpediaGroupApiTooManyRequestsError
* @throws ExpediaGroupApiInternalServerError
* @throws ExpediaGroupApiBadGatewayError
* @throws ExpediaGroupApiServiceUnavailableError
* @throws ExpediaGroupApiGatewayTimeoutError
* @return Promise
*/

@@ -36,15 +36,15 @@ screen(orderPurchaseScreenRequest: OrderPurchaseScreenRequest, transactionId?: string): Promise<OrderPurchaseScreenResponse>;

* @param orderPurchaseUpdateRequest An OrderPurchaseUpdate request may be of one of the following types &#x60;ORDER_UPDATE&#x60;, &#x60;CHARGEBACK_FEEDBACK&#x60;, &#x60;INSULT_FEEDBACK&#x60;, &#x60;REFUND_UPDATE&#x60;, &#x60;PAYMENT_UPDATE&#x60;.
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)
* @return Promise<OrderPurchaseUpdateResponse>
* @throws ExpediaGroupServiceBadRequestError
* @throws ExpediaGroupServiceUnauthorizedError
* @throws ExpediaGroupServiceForbiddenError
* @throws ExpediaGroupServiceOrderPurchaseUpdateNotFoundError
* @throws ExpediaGroupServiceTooManyRequestsError
* @throws ExpediaGroupServiceInternalServerError
* @throws ExpediaGroupServiceBadGatewayError
* @throws ExpediaGroupServiceServiceUnavailableError
* @throws ExpediaGroupServiceGatewayTimeoutError
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)<OrderPurchaseUpdateResponse>
* @throws ExpediaGroupApiBadRequestError
* @throws ExpediaGroupApiUnauthorizedError
* @throws ExpediaGroupApiForbiddenError
* @throws ExpediaGroupApiOrderPurchaseUpdateNotFoundError
* @throws ExpediaGroupApiTooManyRequestsError
* @throws ExpediaGroupApiInternalServerError
* @throws ExpediaGroupApiBadGatewayError
* @throws ExpediaGroupApiServiceUnavailableError
* @throws ExpediaGroupApiGatewayTimeoutError
* @return Promise
*/
update(orderPurchaseUpdateRequest: OrderPurchaseUpdateRequest, transactionId?: string): Promise<OrderPurchaseUpdateResponse>;
}

@@ -74,13 +74,13 @@ "use strict";

* @param orderPurchaseScreenRequest
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)
* @return Promise<OrderPurchaseScreenResponse>
* @throws ExpediaGroupServiceBadRequestError
* @throws ExpediaGroupServiceUnauthorizedError
* @throws ExpediaGroupServiceForbiddenError
* @throws ExpediaGroupServiceNotFoundError
* @throws ExpediaGroupServiceTooManyRequestsError
* @throws ExpediaGroupServiceInternalServerError
* @throws ExpediaGroupServiceBadGatewayError
* @throws ExpediaGroupServiceServiceUnavailableError
* @throws ExpediaGroupServiceGatewayTimeoutError
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)<OrderPurchaseScreenResponse>
* @throws ExpediaGroupApiBadRequestError
* @throws ExpediaGroupApiUnauthorizedError
* @throws ExpediaGroupApiForbiddenError
* @throws ExpediaGroupApiNotFoundError
* @throws ExpediaGroupApiTooManyRequestsError
* @throws ExpediaGroupApiInternalServerError
* @throws ExpediaGroupApiBadGatewayError
* @throws ExpediaGroupApiServiceUnavailableError
* @throws ExpediaGroupApiGatewayTimeoutError
* @return Promise
*/

@@ -112,13 +112,13 @@ FraudPreventionV2Client.prototype.screen = function (orderPurchaseScreenRequest, transactionId) {

* @param orderPurchaseUpdateRequest An OrderPurchaseUpdate request may be of one of the following types &#x60;ORDER_UPDATE&#x60;, &#x60;CHARGEBACK_FEEDBACK&#x60;, &#x60;INSULT_FEEDBACK&#x60;, &#x60;REFUND_UPDATE&#x60;, &#x60;PAYMENT_UPDATE&#x60;.
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)
* @return Promise<OrderPurchaseUpdateResponse>
* @throws ExpediaGroupServiceBadRequestError
* @throws ExpediaGroupServiceUnauthorizedError
* @throws ExpediaGroupServiceForbiddenError
* @throws ExpediaGroupServiceOrderPurchaseUpdateNotFoundError
* @throws ExpediaGroupServiceTooManyRequestsError
* @throws ExpediaGroupServiceInternalServerError
* @throws ExpediaGroupServiceBadGatewayError
* @throws ExpediaGroupServiceServiceUnavailableError
* @throws ExpediaGroupServiceGatewayTimeoutError
* @param transactionId A unique ID to uniquely identify a request/response cycle (optional, defaults to a random generated UUID)<OrderPurchaseUpdateResponse>
* @throws ExpediaGroupApiBadRequestError
* @throws ExpediaGroupApiUnauthorizedError
* @throws ExpediaGroupApiForbiddenError
* @throws ExpediaGroupApiOrderPurchaseUpdateNotFoundError
* @throws ExpediaGroupApiTooManyRequestsError
* @throws ExpediaGroupApiInternalServerError
* @throws ExpediaGroupApiBadGatewayError
* @throws ExpediaGroupApiServiceUnavailableError
* @throws ExpediaGroupApiGatewayTimeoutError
* @return Promise
*/

@@ -125,0 +125,0 @@ FraudPreventionV2Client.prototype.update = function (orderPurchaseUpdateRequest, transactionId) {

export * from './client';
export { ClientConfigurations, ExpediaGroupApiError, ExpediaGroupAuthError, ExpediaGroupError, ExpediaGroupLogger, ExpediaGroupServiceError, Logger, LoggerProvider, } from './core';
export * from './models';
export * from './models/error/ApiError';

@@ -46,1 +46,2 @@ "use strict";

__exportStar(require("./models"), exports);
__exportStar(require("./models/error/ApiError"), exports);
{
"name": "@expediagroup/fraudpreventionv2-sdk",
"version": "1.0.0-alpha.1693316306",
"version": "1.0.0-alpha.1693318232",
"description": "ExpediaGroup FraudPreventionV2 SDK v1.0.0 Core Modules of EG Travel SDK",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc