tt-entities 0.0.29 → 0.0.31
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/libs/tatayab-entities-library/entities/bundle-product.entity.d.ts +13 -0
- package/dist/libs/tatayab-entities-library/entities/bundle-product.entity.js +54 -0
- package/dist/libs/tatayab-entities-library/entities/bundle-product.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/entities/bundle-store.entity.d.ts +11 -0
- package/dist/libs/tatayab-entities-library/entities/bundle-store.entity.js +56 -0
- package/dist/libs/tatayab-entities-library/entities/bundle-store.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/entities/bundle.entity.d.ts +27 -0
- package/dist/libs/tatayab-entities-library/entities/bundle.entity.js +102 -0
- package/dist/libs/tatayab-entities-library/entities/bundle.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/entities/cart-item-bundle-selection.entity.d.ts +13 -0
- package/dist/libs/tatayab-entities-library/entities/cart-item-bundle-selection.entity.js +54 -0
- package/dist/libs/tatayab-entities-library/entities/cart-item-bundle-selection.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/entities/cart-item.entity.d.ts +26 -0
- package/dist/libs/tatayab-entities-library/entities/cart-item.entity.js +93 -0
- package/dist/libs/tatayab-entities-library/entities/cart-item.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/entities/cart.entity.d.ts +20 -0
- package/dist/libs/tatayab-entities-library/entities/cart.entity.js +68 -0
- package/dist/libs/tatayab-entities-library/entities/cart.entity.js.map +1 -0
- package/dist/libs/tatayab-entities-library/index.d.ts +6 -0
- package/dist/libs/tatayab-entities-library/index.js +28 -1
- package/dist/libs/tatayab-entities-library/index.js.map +1 -1
- package/dist/src/main.js +520 -6
- package/libs/tatayab-entities-library/src/entities/bundle-product.entity.ts +38 -0
- package/libs/tatayab-entities-library/src/entities/bundle-store.entity.ts +37 -0
- package/libs/tatayab-entities-library/src/entities/bundle.entity.ts +77 -0
- package/libs/tatayab-entities-library/src/entities/cart-item-bundle-selection.entity.ts +36 -0
- package/libs/tatayab-entities-library/src/entities/cart-item.entity.ts +75 -0
- package/libs/tatayab-entities-library/src/entities/cart.entity.ts +58 -0
- package/libs/tatayab-entities-library/src/index.ts +24 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ProductApp = exports.OsName = exports.CartItemBundleSelection = exports.CartItemType = exports.CartItem = exports.CartStatus = exports.Cart = exports.StorePaymentMethod = exports.PaymentMethodCountry = exports.PaymentMethodType = exports.PaymentMethod = exports.PaymentGatewayType = exports.PaymentGateway = exports.RolePermission = 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.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 = void 0;
|
|
4
5
|
exports.getDbModels = getDbModels;
|
|
5
6
|
const country_entity_1 = require("./entities/country.entity");
|
|
6
7
|
const area_entity_1 = require("./entities/area.entity");
|
|
@@ -21,6 +22,9 @@ const product_variant_entity_1 = require("./entities/product-variant.entity");
|
|
|
21
22
|
const product_variant_option_entity_1 = require("./entities/product-variant-option.entity");
|
|
22
23
|
const tag_entity_1 = require("./entities/tag.entity");
|
|
23
24
|
const product_tag_entity_1 = require("./entities/product-tag.entity");
|
|
25
|
+
const bundle_entity_1 = require("./entities/bundle.entity");
|
|
26
|
+
const bundle_product_entity_1 = require("./entities/bundle-product.entity");
|
|
27
|
+
const bundle_store_entity_1 = require("./entities/bundle-store.entity");
|
|
24
28
|
const store_entity_1 = require("./entities/store.entity");
|
|
25
29
|
const product_store_entity_1 = require("./entities/product-store.entity");
|
|
26
30
|
const inventory_entity_1 = require("./entities/inventory.entity");
|
|
@@ -38,6 +42,9 @@ const payment_gateway_entity_1 = require("./entities/payment-gateway.entity");
|
|
|
38
42
|
const payment_method_entity_1 = require("./entities/payment-method.entity");
|
|
39
43
|
const payment_method_country_entity_1 = require("./entities/payment-method-country.entity");
|
|
40
44
|
const store_payment_method_entity_1 = require("./entities/store-payment-method.entity");
|
|
45
|
+
const cart_entity_1 = require("./entities/cart.entity");
|
|
46
|
+
const cart_item_entity_1 = require("./entities/cart-item.entity");
|
|
47
|
+
const cart_item_bundle_selection_entity_1 = require("./entities/cart-item-bundle-selection.entity");
|
|
41
48
|
var apikey_entity_2 = require("./entities/apikey.entity");
|
|
42
49
|
Object.defineProperty(exports, "ApiKey", { enumerable: true, get: function () { return apikey_entity_2.ApiKey; } });
|
|
43
50
|
var country_entity_2 = require("./entities/country.entity");
|
|
@@ -77,6 +84,12 @@ var tag_entity_2 = require("./entities/tag.entity");
|
|
|
77
84
|
Object.defineProperty(exports, "Tag", { enumerable: true, get: function () { return tag_entity_2.Tag; } });
|
|
78
85
|
var product_tag_entity_2 = require("./entities/product-tag.entity");
|
|
79
86
|
Object.defineProperty(exports, "ProductTag", { enumerable: true, get: function () { return product_tag_entity_2.ProductTag; } });
|
|
87
|
+
var bundle_entity_2 = require("./entities/bundle.entity");
|
|
88
|
+
Object.defineProperty(exports, "Bundle", { enumerable: true, get: function () { return bundle_entity_2.Bundle; } });
|
|
89
|
+
var bundle_product_entity_2 = require("./entities/bundle-product.entity");
|
|
90
|
+
Object.defineProperty(exports, "BundleProduct", { enumerable: true, get: function () { return bundle_product_entity_2.BundleProduct; } });
|
|
91
|
+
var bundle_store_entity_2 = require("./entities/bundle-store.entity");
|
|
92
|
+
Object.defineProperty(exports, "BundleStore", { enumerable: true, get: function () { return bundle_store_entity_2.BundleStore; } });
|
|
80
93
|
var store_entity_2 = require("./entities/store.entity");
|
|
81
94
|
Object.defineProperty(exports, "Store", { enumerable: true, get: function () { return store_entity_2.Store; } });
|
|
82
95
|
var product_store_entity_2 = require("./entities/product-store.entity");
|
|
@@ -114,6 +127,14 @@ var payment_method_country_entity_2 = require("./entities/payment-method-country
|
|
|
114
127
|
Object.defineProperty(exports, "PaymentMethodCountry", { enumerable: true, get: function () { return payment_method_country_entity_2.PaymentMethodCountry; } });
|
|
115
128
|
var store_payment_method_entity_2 = require("./entities/store-payment-method.entity");
|
|
116
129
|
Object.defineProperty(exports, "StorePaymentMethod", { enumerable: true, get: function () { return store_payment_method_entity_2.StorePaymentMethod; } });
|
|
130
|
+
var cart_entity_2 = require("./entities/cart.entity");
|
|
131
|
+
Object.defineProperty(exports, "Cart", { enumerable: true, get: function () { return cart_entity_2.Cart; } });
|
|
132
|
+
Object.defineProperty(exports, "CartStatus", { enumerable: true, get: function () { return cart_entity_2.CartStatus; } });
|
|
133
|
+
var cart_item_entity_2 = require("./entities/cart-item.entity");
|
|
134
|
+
Object.defineProperty(exports, "CartItem", { enumerable: true, get: function () { return cart_item_entity_2.CartItem; } });
|
|
135
|
+
Object.defineProperty(exports, "CartItemType", { enumerable: true, get: function () { return cart_item_entity_2.CartItemType; } });
|
|
136
|
+
var cart_item_bundle_selection_entity_2 = require("./entities/cart-item-bundle-selection.entity");
|
|
137
|
+
Object.defineProperty(exports, "CartItemBundleSelection", { enumerable: true, get: function () { return cart_item_bundle_selection_entity_2.CartItemBundleSelection; } });
|
|
117
138
|
var osName_1 = require("./utils/enums/osName");
|
|
118
139
|
Object.defineProperty(exports, "OsName", { enumerable: true, get: function () { return osName_1.OsName; } });
|
|
119
140
|
var productApp_1 = require("./utils/enums/productApp");
|
|
@@ -151,6 +172,9 @@ function getDbModels() {
|
|
|
151
172
|
product_variant_option_entity_1.ProductVariantOption,
|
|
152
173
|
tag_entity_1.Tag,
|
|
153
174
|
product_tag_entity_1.ProductTag,
|
|
175
|
+
bundle_entity_1.Bundle,
|
|
176
|
+
bundle_product_entity_1.BundleProduct,
|
|
177
|
+
bundle_store_entity_1.BundleStore,
|
|
154
178
|
store_entity_1.Store,
|
|
155
179
|
product_store_entity_1.ProductStore,
|
|
156
180
|
inventory_entity_1.Inventory,
|
|
@@ -168,6 +192,9 @@ function getDbModels() {
|
|
|
168
192
|
payment_method_entity_1.PaymentMethod,
|
|
169
193
|
payment_method_country_entity_1.PaymentMethodCountry,
|
|
170
194
|
store_payment_method_entity_1.StorePaymentMethod,
|
|
195
|
+
cart_entity_1.Cart,
|
|
196
|
+
cart_item_entity_1.CartItem,
|
|
197
|
+
cart_item_bundle_selection_entity_1.CartItemBundleSelection,
|
|
171
198
|
];
|
|
172
199
|
}
|
|
173
200
|
//# 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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"}
|