tt-entities 0.1.0 → 0.1.1
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.
|
@@ -61,6 +61,10 @@ export { UserTransaction, TransactionType, TransactionCategory, } from './entiti
|
|
|
61
61
|
export { PurchaseOrderOrderItem } from './entities/purchase-order-order-item.entity';
|
|
62
62
|
export { PurchaseOrderReceipt } from './entities/purchase-order-receipt.entity';
|
|
63
63
|
export { PurchaseOrderReceiptItem } from './entities/purchase-order-receipt-item.entity';
|
|
64
|
+
export { OrderItemChangeLog, OrderEditScenario, } from './entities/order-item-change-log.entity';
|
|
65
|
+
export { OrderPayment, OrderPaymentStatus, OrderPaymentType, } from './entities/order-payment.entity';
|
|
66
|
+
export { OrderEditSession } from './entities/order-edit-session.entity';
|
|
67
|
+
export { OrderEditItem } from './entities/order-edit-item.entity';
|
|
64
68
|
export { OsName } from './utils/enums/osName';
|
|
65
69
|
export { ProductApp } from './utils/enums/productApp';
|
|
66
70
|
export { VersionType } from './utils/enums/versiontype';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Permission = exports.PurchaseOrderItemStatus = exports.PurchaseOrderItem = exports.PurchaseOrder = exports.VendorProduct = exports.Vendor = exports.ShippingRule = exports.StockMovement = exports.InventoryStock = exports.StoreInventory = exports.Inventory = exports.ProductStore = exports.Store = exports.BundleStore = exports.BundleProduct = exports.Bundle = exports.ProductTag = exports.Tag = exports.ProductVariantOption = exports.ProductVariant = exports.MediaType = exports.ProductMedia = exports.Product = exports.VariantOption = exports.VariantType = exports.Brand = exports.Category = exports.UserWalletBalance = exports.RefundStatus = exports.RefundMethod = exports.Refund = exports.RunSheetOrderStatus = exports.RunSheetOrder = exports.RunSheetStatus = exports.RunSheet = exports.AppConfig = exports.BannerStatus = exports.BannerPlacement = exports.Banner = exports.FavoriteCatalogItemType = exports.UserFavoriteCatalog = exports.UserFavorite = exports.UserAddress = exports.UserDevice = exports.User = exports.SysUser = exports.SysRole = exports.Area = exports.Country = exports.ApiKey = void 0;
|
|
4
|
-
exports.StockMovementType = exports.PurchaseOrderStatus = exports.Gender = exports.Status = exports.Language = exports.VersionType = exports.ProductApp = exports.OsName = exports.PurchaseOrderReceiptItem = exports.PurchaseOrderReceipt = exports.PurchaseOrderOrderItem = exports.TransactionCategory = exports.TransactionType = exports.UserTransaction = exports.OrderStatusHistory = exports.OrderItemBundleSelection = exports.OrderItemFulfillmentStatus = exports.OrderItemType = exports.OrderItem = exports.Order = exports.OrderStatusCode = exports.OrderStatus = exports.CouponUser = exports.CouponProduct = exports.CouponStore = exports.CouponOsTarget = exports.CouponAppliesTo = exports.CouponDiscountType = exports.Coupon = exports.CartItemBundleSelection = exports.CartItemType = exports.CartItem = exports.CartStatus = exports.Cart = exports.StorePaymentMethod = exports.PaymentMethodCountry = exports.PaymentMethodType = exports.PaymentMethod = exports.PaymentGatewayType = exports.PaymentGateway = exports.RolePermission = void 0;
|
|
4
|
+
exports.StockMovementType = exports.PurchaseOrderStatus = exports.Gender = exports.Status = exports.Language = exports.VersionType = exports.ProductApp = exports.OsName = exports.OrderEditItem = exports.OrderEditSession = exports.OrderPaymentType = exports.OrderPaymentStatus = exports.OrderPayment = exports.OrderEditScenario = exports.OrderItemChangeLog = exports.PurchaseOrderReceiptItem = exports.PurchaseOrderReceipt = exports.PurchaseOrderOrderItem = exports.TransactionCategory = exports.TransactionType = exports.UserTransaction = exports.OrderStatusHistory = exports.OrderItemBundleSelection = exports.OrderItemFulfillmentStatus = exports.OrderItemType = exports.OrderItem = exports.Order = exports.OrderStatusCode = exports.OrderStatus = exports.CouponUser = exports.CouponProduct = exports.CouponStore = exports.CouponOsTarget = exports.CouponAppliesTo = exports.CouponDiscountType = exports.Coupon = exports.CartItemBundleSelection = exports.CartItemType = exports.CartItem = exports.CartStatus = exports.Cart = exports.StorePaymentMethod = exports.PaymentMethodCountry = exports.PaymentMethodType = exports.PaymentMethod = exports.PaymentGatewayType = exports.PaymentGateway = exports.RolePermission = void 0;
|
|
5
5
|
exports.getDbModels = getDbModels;
|
|
6
6
|
const country_entity_1 = require("./entities/country.entity");
|
|
7
7
|
const area_entity_1 = require("./entities/area.entity");
|
|
@@ -65,6 +65,10 @@ const refund_entity_1 = require("./entities/refund.entity");
|
|
|
65
65
|
const purchase_order_receipt_entity_1 = require("./entities/purchase-order-receipt.entity");
|
|
66
66
|
const purchase_order_receipt_item_entity_1 = require("./entities/purchase-order-receipt-item.entity");
|
|
67
67
|
const user_wallet_balance_entity_1 = require("./entities/user-wallet-balance.entity");
|
|
68
|
+
const order_item_change_log_entity_1 = require("./entities/order-item-change-log.entity");
|
|
69
|
+
const order_payment_entity_1 = require("./entities/order-payment.entity");
|
|
70
|
+
const order_edit_session_entity_1 = require("./entities/order-edit-session.entity");
|
|
71
|
+
const order_edit_item_entity_1 = require("./entities/order-edit-item.entity");
|
|
68
72
|
var apikey_entity_2 = require("./entities/apikey.entity");
|
|
69
73
|
Object.defineProperty(exports, "ApiKey", { enumerable: true, get: function () { return apikey_entity_2.ApiKey; } });
|
|
70
74
|
var country_entity_2 = require("./entities/country.entity");
|
|
@@ -210,6 +214,17 @@ var purchase_order_receipt_entity_2 = require("./entities/purchase-order-receipt
|
|
|
210
214
|
Object.defineProperty(exports, "PurchaseOrderReceipt", { enumerable: true, get: function () { return purchase_order_receipt_entity_2.PurchaseOrderReceipt; } });
|
|
211
215
|
var purchase_order_receipt_item_entity_2 = require("./entities/purchase-order-receipt-item.entity");
|
|
212
216
|
Object.defineProperty(exports, "PurchaseOrderReceiptItem", { enumerable: true, get: function () { return purchase_order_receipt_item_entity_2.PurchaseOrderReceiptItem; } });
|
|
217
|
+
var order_item_change_log_entity_2 = require("./entities/order-item-change-log.entity");
|
|
218
|
+
Object.defineProperty(exports, "OrderItemChangeLog", { enumerable: true, get: function () { return order_item_change_log_entity_2.OrderItemChangeLog; } });
|
|
219
|
+
Object.defineProperty(exports, "OrderEditScenario", { enumerable: true, get: function () { return order_item_change_log_entity_2.OrderEditScenario; } });
|
|
220
|
+
var order_payment_entity_2 = require("./entities/order-payment.entity");
|
|
221
|
+
Object.defineProperty(exports, "OrderPayment", { enumerable: true, get: function () { return order_payment_entity_2.OrderPayment; } });
|
|
222
|
+
Object.defineProperty(exports, "OrderPaymentStatus", { enumerable: true, get: function () { return order_payment_entity_2.OrderPaymentStatus; } });
|
|
223
|
+
Object.defineProperty(exports, "OrderPaymentType", { enumerable: true, get: function () { return order_payment_entity_2.OrderPaymentType; } });
|
|
224
|
+
var order_edit_session_entity_2 = require("./entities/order-edit-session.entity");
|
|
225
|
+
Object.defineProperty(exports, "OrderEditSession", { enumerable: true, get: function () { return order_edit_session_entity_2.OrderEditSession; } });
|
|
226
|
+
var order_edit_item_entity_2 = require("./entities/order-edit-item.entity");
|
|
227
|
+
Object.defineProperty(exports, "OrderEditItem", { enumerable: true, get: function () { return order_edit_item_entity_2.OrderEditItem; } });
|
|
213
228
|
var osName_1 = require("./utils/enums/osName");
|
|
214
229
|
Object.defineProperty(exports, "OsName", { enumerable: true, get: function () { return osName_1.OsName; } });
|
|
215
230
|
var productApp_1 = require("./utils/enums/productApp");
|
|
@@ -290,6 +305,10 @@ function getDbModels() {
|
|
|
290
305
|
refund_entity_1.Refund,
|
|
291
306
|
purchase_order_receipt_entity_1.PurchaseOrderReceipt,
|
|
292
307
|
purchase_order_receipt_item_entity_1.PurchaseOrderReceiptItem,
|
|
308
|
+
order_item_change_log_entity_1.OrderItemChangeLog,
|
|
309
|
+
order_payment_entity_1.OrderPayment,
|
|
310
|
+
order_edit_session_entity_1.OrderEditSession,
|
|
311
|
+
order_edit_item_entity_1.OrderEditItem,
|
|
293
312
|
];
|
|
294
313
|
}
|
|
295
314
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../libs/tatayab-entities-library/src/index.ts"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../libs/tatayab-entities-library/src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -81,6 +81,10 @@ import { Refund } from './entities/refund.entity';
|
|
|
81
81
|
import { PurchaseOrderReceipt } from './entities/purchase-order-receipt.entity';
|
|
82
82
|
import { PurchaseOrderReceiptItem } from './entities/purchase-order-receipt-item.entity';
|
|
83
83
|
import { UserWalletBalance } from './entities/user-wallet-balance.entity';
|
|
84
|
+
import { OrderItemChangeLog } from './entities/order-item-change-log.entity';
|
|
85
|
+
import { OrderPayment } from './entities/order-payment.entity';
|
|
86
|
+
import { OrderEditSession } from './entities/order-edit-session.entity';
|
|
87
|
+
import { OrderEditItem } from './entities/order-edit-item.entity';
|
|
84
88
|
|
|
85
89
|
// =============================================================================
|
|
86
90
|
// EXPORTS
|
|
@@ -116,8 +120,6 @@ export {
|
|
|
116
120
|
export { Refund, RefundMethod, RefundStatus } from './entities/refund.entity';
|
|
117
121
|
export { UserWalletBalance } from './entities/user-wallet-balance.entity';
|
|
118
122
|
|
|
119
|
-
|
|
120
|
-
|
|
121
123
|
// ─── Catalogue ────────────────────────────────────────────────────────────────
|
|
122
124
|
export { Category } from './entities/category.entity';
|
|
123
125
|
export { Brand } from './entities/brand.entity';
|
|
@@ -204,6 +206,17 @@ export {
|
|
|
204
206
|
export { PurchaseOrderOrderItem } from './entities/purchase-order-order-item.entity';
|
|
205
207
|
export { PurchaseOrderReceipt } from './entities/purchase-order-receipt.entity';
|
|
206
208
|
export { PurchaseOrderReceiptItem } from './entities/purchase-order-receipt-item.entity';
|
|
209
|
+
export {
|
|
210
|
+
OrderItemChangeLog,
|
|
211
|
+
OrderEditScenario,
|
|
212
|
+
} from './entities/order-item-change-log.entity';
|
|
213
|
+
export {
|
|
214
|
+
OrderPayment,
|
|
215
|
+
OrderPaymentStatus,
|
|
216
|
+
OrderPaymentType,
|
|
217
|
+
} from './entities/order-payment.entity';
|
|
218
|
+
export { OrderEditSession } from './entities/order-edit-session.entity';
|
|
219
|
+
export { OrderEditItem } from './entities/order-edit-item.entity';
|
|
207
220
|
|
|
208
221
|
// ─── Enums ────────────────────────────────────────────────────────────────────
|
|
209
222
|
export { OsName } from './utils/enums/osName';
|
|
@@ -307,5 +320,10 @@ export function getDbModels(): ModelCtor[] {
|
|
|
307
320
|
Refund,
|
|
308
321
|
PurchaseOrderReceipt,
|
|
309
322
|
PurchaseOrderReceiptItem,
|
|
323
|
+
|
|
324
|
+
OrderItemChangeLog,
|
|
325
|
+
OrderPayment,
|
|
326
|
+
OrderEditSession,
|
|
327
|
+
OrderEditItem,
|
|
310
328
|
];
|
|
311
329
|
}
|