cmp-aws-database 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base-dynamoose-dao.d.ts +83 -0
- package/dist/base-dynamoose-dao.js +197 -0
- package/dist/base-dynamoose-model.d.ts +33 -0
- package/dist/base-dynamoose-model.js +14 -0
- package/dist/config/database-factory.js +2 -2
- package/dist/config/table-names.d.ts +6 -0
- package/dist/config/table-names.js +7 -1
- package/dist/customer-user/cart/cart-model.d.ts +1 -4
- package/dist/customer-user/cart/cart-model.js +5 -17
- package/dist/customer-user/content/content-model.d.ts +8 -0
- package/dist/customer-user/content/content-model.js +5 -1
- package/dist/customer-user/cutlery/cutlery-model.d.ts +1 -0
- package/dist/customer-user/cutlery/cutlery-model.js +5 -1
- package/dist/customer-user/order-module/plate-order/plate-order-model.d.ts +2 -0
- package/dist/customer-user/order-module/plate-order/plate-order-model.js +9 -1
- package/dist/customer-user/platter-fit-module/platter-fit-dao.d.ts +41 -0
- package/dist/customer-user/platter-fit-module/platter-fit-dao.js +107 -0
- package/dist/customer-user/platter-fit-module/platter-fit-model.d.ts +29 -0
- package/dist/customer-user/platter-fit-module/platter-fit-model.js +88 -0
- package/dist/customer-user/platter-ranking/platter-ranking-dao.d.ts +13 -0
- package/dist/customer-user/platter-ranking/platter-ranking-dao.js +32 -0
- package/dist/customer-user/platter-ranking/platter-ranking-model.d.ts +22 -0
- package/dist/customer-user/platter-ranking/platter-ranking-model.js +92 -0
- package/dist/customer-user/promo-codes/influencer-promo-dao.d.ts +33 -0
- package/dist/customer-user/promo-codes/influencer-promo-dao.js +94 -0
- package/dist/customer-user/promo-codes/influencer-promo-model.d.ts +19 -0
- package/dist/customer-user/promo-codes/influencer-promo-model.js +67 -0
- package/dist/customer-user/promo-codes/influencer-referral-dao.d.ts +34 -0
- package/dist/customer-user/promo-codes/influencer-referral-dao.js +115 -0
- package/dist/customer-user/promo-codes/influencer-referral-model.d.ts +13 -0
- package/dist/customer-user/promo-codes/influencer-referral-model.js +62 -0
- package/dist/customer-user/resume-journey/resume-journey-model.d.ts +1 -0
- package/dist/customer-user/resume-journey/resume-journey-model.js +5 -1
- package/index.js +62 -0
- package/package.json +1 -1
package/index.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
// Environment Configuration
|
|
2
|
+
export { envManager, EnvironmentManager } from './dist/config/environment-config';
|
|
3
|
+
export { DatabaseFactory } from './dist/config/database-factory';
|
|
4
|
+
export { TableNameManager, TABLE_NAMES, BASE_TABLE_NAMES } from './dist/config/table-names';
|
|
5
|
+
|
|
6
|
+
// Core Database Components
|
|
7
|
+
export { InternalUserModel } from './dist/internal-user/internal-user-model';
|
|
8
|
+
export { internalUserDao } from './dist/internal-user/internal-user-dao';
|
|
9
|
+
export { GenericDAO } from './dist/base-dao';
|
|
10
|
+
export { BaseModel } from './dist/base-model';
|
|
11
|
+
export { AddOnsModel } from './dist/customer-user/add-ons/add-ons-model';
|
|
12
|
+
export { addonsDao } from './dist/customer-user/add-ons/addons-dao';
|
|
13
|
+
export { BankDetailsModel } from './dist/customer-user/bank-details/bank-details-model';
|
|
14
|
+
export { bankDetailsDao } from './dist/customer-user/bank-details/bank-details-dao';
|
|
15
|
+
export { CartModel } from './dist/customer-user/cart/cart-model';
|
|
16
|
+
export { cartDAO } from './dist/customer-user/cart/cart-dao';
|
|
17
|
+
export { CartCategoriesModel } from './dist/customer-user/cart/cart-categories-model';
|
|
18
|
+
export { cartCategoriesDAO } from './dist/customer-user/cart/cart-categories-dao';
|
|
19
|
+
export { CategoryModel } from './dist/customer-user/category/category-model';
|
|
20
|
+
export { categoryTypesDAO } from './dist/customer-user/category/category-dao';
|
|
21
|
+
export { ContentModel } from './dist/customer-user/content/content-model';
|
|
22
|
+
export { contentDeliveryDAO } from './dist/customer-user/content/content-delivery-dao';
|
|
23
|
+
export { CouponsModel } from './dist/customer-user/coupons/coupons-model';
|
|
24
|
+
export { couponDAO } from './dist/customer-user/coupons/coupons-dao';
|
|
25
|
+
export { DefaultPlatterModel } from './dist/customer-user/default-platter/default-platters-model';
|
|
26
|
+
export { defaultPlatterDAO } from './dist/customer-user/default-platter/default-platter-dao';
|
|
27
|
+
export { DefaultPlatterCategoriesModel } from './dist/customer-user/default-platter/default-platters-category-model';
|
|
28
|
+
export { defaultPlattersCategoriesDAO } from './dist/customer-user/default-platter/default-platter-categories-dao';
|
|
29
|
+
export { DefaultPlattersItems } from './dist/customer-user/default-platter/default_platters_items';
|
|
30
|
+
export { defaultPlatterItemsDAO } from './dist/customer-user/default-platter/default-platter-items-dao';
|
|
31
|
+
export { EventExecutivesModel } from './dist/customer-user/event-executives/event-executive-model';
|
|
32
|
+
export { eventExecutivesDAO } from './dist/customer-user/event-executives/event-executive-dao';
|
|
33
|
+
export { ItemsModel } from './dist/customer-user/items/items-model';
|
|
34
|
+
export { menuItemsDAO } from './dist/customer-user/items/items-dao';
|
|
35
|
+
export { LeadModel } from './dist/customer-user/lead/lead-model';
|
|
36
|
+
export { leadDao } from './dist/customer-user/lead/lead-dao';
|
|
37
|
+
export { OccasionModel } from './dist/customer-user/occastion/occasion-model';
|
|
38
|
+
export { occasionDao } from './dist/customer-user/occastion/occasion-dao';
|
|
39
|
+
export { AddressModel } from './dist/customer-user/order-module/address/address-model';
|
|
40
|
+
export { addressDao } from './dist/customer-user/order-module/address/address-dao';
|
|
41
|
+
export { OrderModel } from './dist/customer-user/order-module/order/order-model';
|
|
42
|
+
export { orderDao } from './dist/customer-user/order-module/order/order-dao';
|
|
43
|
+
export { AddressOrderModel } from './dist/customer-user/order-module/order-address/address-order-model';
|
|
44
|
+
export { addressOrderDao } from './dist/customer-user/order-module/order-address/address-order-dao';
|
|
45
|
+
export { OrderReviewModel } from './dist/customer-user/order-module/order-review/order-review-model';
|
|
46
|
+
export { orderReviewDAO } from './dist/customer-user/order-module/order-review/order-review-dao';
|
|
47
|
+
export { PaymentModel } from './dist/customer-user/order-module/payment/payment-model';
|
|
48
|
+
export { paymentDao } from './dist/customer-user/order-module/payment/paymet-dao';
|
|
49
|
+
export { PlateModel } from './dist/customer-user/order-module/plate-order/plate-order-model';
|
|
50
|
+
export { plateOrderDAO } from './dist/customer-user/order-module/plate-order/plateOrderDao';
|
|
51
|
+
export { TrackingModel } from './dist/customer-user/order-module/tracking/tracking-model';
|
|
52
|
+
export { trackingDao } from './dist/customer-user/order-module/tracking/tracking-dao';
|
|
53
|
+
export { ReferalContentModel } from './dist/customer-user/referal-content/referal-content-model';
|
|
54
|
+
export { referalContentDao } from './dist/customer-user/referal-content/referal-content-dao';
|
|
55
|
+
export { UserModel } from './dist/customer-user/user/user-model';
|
|
56
|
+
export { userDAO } from './dist/customer-user/user/user-dao';
|
|
57
|
+
export { WalletModel } from './dist/customer-user/wallet/wallet-model';
|
|
58
|
+
export { walletDao } from './dist/customer-user/wallet/wallet-dao';
|
|
59
|
+
export { WalletTransactionModel } from './dist/customer-user/wallet-transaction/wallet-transaction-model';
|
|
60
|
+
export { walletTransactionDao } from './dist/customer-user/wallet-transaction/wallet-transaction-dao';
|
|
61
|
+
export { WithdrawnModel } from './dist/customer-user/withdrawn/withdrawn-model';
|
|
62
|
+
export { withdrawnDao } from './dist/customer-user/withdrawn/withdrawn-dao';
|