UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

42 lines 2.04 kB
"use strict"; /* * ###### * ###### * ############ ####( ###### #####. ###### ############ ############ * ############# #####( ###### #####. ###### ############# ############# * ###### #####( ###### #####. ###### ##### ###### ##### ###### * ###### ###### #####( ###### #####. ###### ##### ##### ##### ###### * ###### ###### #####( ###### #####. ###### ##### ##### ###### * ############# ############# ############# ############# ##### ###### * ############ ############ ############# ############ ##### ###### * ###### * ############# * ############ * Adyen NodeJS API Library * Copyright (c) 2026 Adyen B.V. * This file is open source and available under the MIT license. * See the LICENSE file for more info. */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.EncryptedCloudDeviceApi = void 0; const cloudDeviceApi_1 = require("./cloudDeviceApi"); const encryptedCloudDeviceApi_1 = require("./encryptedCloudDeviceApi"); const service_1 = __importDefault(require("../../service")); var encryptedCloudDeviceApi_2 = require("./encryptedCloudDeviceApi"); Object.defineProperty(exports, "EncryptedCloudDeviceApi", { enumerable: true, get: function () { return encryptedCloudDeviceApi_2.EncryptedCloudDeviceApi; } }); class CloudDeviceAPI extends service_1.default { constructor(client) { super(client); } get CloudDeviceApi() { return new cloudDeviceApi_1.CloudDeviceApi(this.client); } getEncryptedCloudDeviceApi(encryptionCredentialDetails) { return new encryptedCloudDeviceApi_1.EncryptedCloudDeviceApi(this.client, encryptionCredentialDetails); } } exports.default = CloudDeviceAPI; //# sourceMappingURL=index.js.map