UNPKG

gohl

Version:

Go Highlevel Node Js ease of use library implementation to their API

24 lines 1.33 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Payments = void 0; const payments_integrations_1 = require("./payments.integrations"); const payments_orderfulfillments_1 = require("./payments.orderfulfillments"); const payments_transactions_1 = require("./payments.transactions"); const payments_subscriptions_1 = require("./payments.subscriptions"); const payments_coupons_1 = require("./payments.coupons"); const payments_customproviders_1 = require("./payments.customproviders"); const payments_orders_1 = require("./payments.orders"); class Payments { constructor(authData) { this.authData = authData; this.integrations = new payments_integrations_1.PaymentIntegrations(authData); this.orders = new payments_orders_1.PaymentOrders(authData); this.fulfillments = new payments_orderfulfillments_1.PaymentOrderFulfillments(authData); this.transactions = new payments_transactions_1.PaymentTransactions(authData); this.subscriptions = new payments_subscriptions_1.PaymentSubscriptions(authData); this.coupons = new payments_coupons_1.PaymentCoupons(authData); this.customProviders = new payments_customproviders_1.PaymentCustomProviders(authData); } } exports.Payments = Payments; //# sourceMappingURL=payments.js.map