UNPKG

1.77 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.util = exports.transaction = exports.task = exports.payment = exports.reservation = exports.report = exports.programMembership = exports.order = exports.offer = exports.notification = exports.iam = exports.delivery = exports.customer = exports.code = exports.account = void 0;
4// tslint:disable:max-classes-per-file completed-docs
5/**
6 * service module
7 */
8const AccountService = require("./service/account");
9const CodeService = require("./service/code");
10const CustomerService = require("./service/customer");
11const DeliveryService = require("./service/delivery");
12const IAMService = require("./service/iam");
13const NotificationService = require("./service/notification");
14const OfferService = require("./service/offer");
15const OrderService = require("./service/order");
16const PaymentService = require("./service/payment");
17const ProgramMembershipService = require("./service/programMembership");
18const ReportService = require("./service/report");
19const ReservationService = require("./service/reservation");
20const TaskService = require("./service/task");
21const TransactionService = require("./service/transaction");
22const UtilService = require("./service/util");
23exports.account = AccountService;
24exports.code = CodeService;
25exports.customer = CustomerService;
26exports.delivery = DeliveryService;
27exports.iam = IAMService;
28exports.notification = NotificationService;
29exports.offer = OfferService;
30exports.order = OrderService;
31exports.programMembership = ProgramMembershipService;
32exports.report = ReportService;
33exports.reservation = ReservationService;
34exports.payment = PaymentService;
35exports.task = TaskService;
36exports.transaction = TransactionService;
37exports.util = UtilService;