@infrab4a/connect 5.6.0-beta.0 → 5.6.0-beta.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.
- package/index.cjs.js +39 -0
- package/index.esm.js +37 -1
- package/package.json +1 -1
- package/src/domain/catalog/models/index.d.ts +1 -0
- package/src/domain/catalog/models/product-stock-entry.d.ts +16 -0
- package/src/domain/catalog/repositories/index.d.ts +1 -0
- package/src/domain/catalog/repositories/product-stock-entry.repository.d.ts +4 -0
- package/src/infra/hasura-graphql/models/index.d.ts +1 -0
- package/src/infra/hasura-graphql/models/product-stock-entry-hasura-graphql.d.ts +3 -0
- package/src/infra/hasura-graphql/repositories/catalog/index.d.ts +1 -0
- package/src/infra/hasura-graphql/repositories/catalog/product-stock-entry-hasura-graphql.repository.d.ts +8 -0
package/index.cjs.js
CHANGED
|
@@ -977,6 +977,12 @@ class ProductPriceLog extends BaseModel {
|
|
|
977
977
|
}
|
|
978
978
|
}
|
|
979
979
|
|
|
980
|
+
class ProductStockEntry extends BaseModel {
|
|
981
|
+
static get identifiersFields() {
|
|
982
|
+
return ['id'];
|
|
983
|
+
}
|
|
984
|
+
}
|
|
985
|
+
|
|
980
986
|
class ProductStockNotification extends BaseModel {
|
|
981
987
|
static get identifiersFields() {
|
|
982
988
|
return ['id'];
|
|
@@ -6024,6 +6030,9 @@ tslib.__decorate([
|
|
|
6024
6030
|
tslib.__metadata("design:type", Object)
|
|
6025
6031
|
], ProductErrorsHasuraGraphQL.prototype, "product", void 0);
|
|
6026
6032
|
|
|
6033
|
+
class ProductStockEntryHasuraGraphQL extends ProductStockEntry {
|
|
6034
|
+
}
|
|
6035
|
+
|
|
6027
6036
|
class CategoryCollectionChildrenHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
6028
6037
|
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
|
6029
6038
|
super({
|
|
@@ -8746,6 +8755,33 @@ tslib.__decorate([
|
|
|
8746
8755
|
tslib.__metadata("design:returntype", void 0)
|
|
8747
8756
|
], ProductReviewHasuraGraphQLRepository.prototype, "disaproveReview", null);
|
|
8748
8757
|
|
|
8758
|
+
class ProductStockEntryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
8759
|
+
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
|
8760
|
+
super({
|
|
8761
|
+
tableName: 'product_millenium_stock_entry',
|
|
8762
|
+
model: ProductStockEntry,
|
|
8763
|
+
endpoint,
|
|
8764
|
+
authOptions,
|
|
8765
|
+
interceptors,
|
|
8766
|
+
cache,
|
|
8767
|
+
fields: [
|
|
8768
|
+
'id',
|
|
8769
|
+
{ productId: { columnName: 'product_id' } },
|
|
8770
|
+
{ codProduct: { columnName: 'cod_product' } },
|
|
8771
|
+
{ productDescription: { columnName: 'product_description' } },
|
|
8772
|
+
{ eventDescription: { columnName: 'event_description' } },
|
|
8773
|
+
{ invoiceValue: { columnName: 'invoice_value' } },
|
|
8774
|
+
'price',
|
|
8775
|
+
'quantity',
|
|
8776
|
+
{ invoiceId: { columnName: 'invoice_id' } },
|
|
8777
|
+
{ nfeKey: { columnName: 'nfe_key' } },
|
|
8778
|
+
'batch',
|
|
8779
|
+
{ createdAt: { columnName: 'created_at' } },
|
|
8780
|
+
],
|
|
8781
|
+
});
|
|
8782
|
+
}
|
|
8783
|
+
}
|
|
8784
|
+
|
|
8749
8785
|
class ProductStockNotificationHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
8750
8786
|
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
|
8751
8787
|
super({
|
|
@@ -11341,6 +11377,9 @@ exports.ProductPriceLog = ProductPriceLog;
|
|
|
11341
11377
|
exports.ProductPriceLogHasuraGraphQLRepository = ProductPriceLogHasuraGraphQLRepository;
|
|
11342
11378
|
exports.ProductReview = ProductReview;
|
|
11343
11379
|
exports.ProductReviewHasuraGraphQLRepository = ProductReviewHasuraGraphQLRepository;
|
|
11380
|
+
exports.ProductStockEntry = ProductStockEntry;
|
|
11381
|
+
exports.ProductStockEntryHasuraGraphQL = ProductStockEntryHasuraGraphQL;
|
|
11382
|
+
exports.ProductStockEntryHasuraGraphQLRepository = ProductStockEntryHasuraGraphQLRepository;
|
|
11344
11383
|
exports.ProductStockNotification = ProductStockNotification;
|
|
11345
11384
|
exports.ProductStockNotificationHasuraGraphQLRepository = ProductStockNotificationHasuraGraphQLRepository;
|
|
11346
11385
|
exports.ProductVariantFirestoreRepository = ProductVariantFirestoreRepository;
|
package/index.esm.js
CHANGED
|
@@ -953,6 +953,12 @@ class ProductPriceLog extends BaseModel {
|
|
|
953
953
|
}
|
|
954
954
|
}
|
|
955
955
|
|
|
956
|
+
class ProductStockEntry extends BaseModel {
|
|
957
|
+
static get identifiersFields() {
|
|
958
|
+
return ['id'];
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
|
|
956
962
|
class ProductStockNotification extends BaseModel {
|
|
957
963
|
static get identifiersFields() {
|
|
958
964
|
return ['id'];
|
|
@@ -6000,6 +6006,9 @@ __decorate([
|
|
|
6000
6006
|
__metadata("design:type", Object)
|
|
6001
6007
|
], ProductErrorsHasuraGraphQL.prototype, "product", void 0);
|
|
6002
6008
|
|
|
6009
|
+
class ProductStockEntryHasuraGraphQL extends ProductStockEntry {
|
|
6010
|
+
}
|
|
6011
|
+
|
|
6003
6012
|
class CategoryCollectionChildrenHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
6004
6013
|
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
|
6005
6014
|
super({
|
|
@@ -8722,6 +8731,33 @@ __decorate([
|
|
|
8722
8731
|
__metadata("design:returntype", void 0)
|
|
8723
8732
|
], ProductReviewHasuraGraphQLRepository.prototype, "disaproveReview", null);
|
|
8724
8733
|
|
|
8734
|
+
class ProductStockEntryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
8735
|
+
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
|
8736
|
+
super({
|
|
8737
|
+
tableName: 'product_millenium_stock_entry',
|
|
8738
|
+
model: ProductStockEntry,
|
|
8739
|
+
endpoint,
|
|
8740
|
+
authOptions,
|
|
8741
|
+
interceptors,
|
|
8742
|
+
cache,
|
|
8743
|
+
fields: [
|
|
8744
|
+
'id',
|
|
8745
|
+
{ productId: { columnName: 'product_id' } },
|
|
8746
|
+
{ codProduct: { columnName: 'cod_product' } },
|
|
8747
|
+
{ productDescription: { columnName: 'product_description' } },
|
|
8748
|
+
{ eventDescription: { columnName: 'event_description' } },
|
|
8749
|
+
{ invoiceValue: { columnName: 'invoice_value' } },
|
|
8750
|
+
'price',
|
|
8751
|
+
'quantity',
|
|
8752
|
+
{ invoiceId: { columnName: 'invoice_id' } },
|
|
8753
|
+
{ nfeKey: { columnName: 'nfe_key' } },
|
|
8754
|
+
'batch',
|
|
8755
|
+
{ createdAt: { columnName: 'created_at' } },
|
|
8756
|
+
],
|
|
8757
|
+
});
|
|
8758
|
+
}
|
|
8759
|
+
}
|
|
8760
|
+
|
|
8725
8761
|
class ProductStockNotificationHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
8726
8762
|
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
|
8727
8763
|
super({
|
|
@@ -11073,4 +11109,4 @@ class ProductsVertexSearch {
|
|
|
11073
11109
|
}
|
|
11074
11110
|
}
|
|
11075
11111
|
|
|
11076
|
-
export { AccessoryImportances, Address, AdyenCardAxiosAdapter, AdyenPaymentMethodFactory, AntifraudBankSlipService, AntifraudCardService, AntifraudGlampointsService, AntifraudPixService, AntifraudProviderFactory, AntifraudProviders, Area, Authentication, AuthenticationFirebaseAuthService, AxiosAdapter, Base, BaseModel, BeardProblems, BeardSizes, BeautyProductImportances, BeautyProfile, BeautyQuestionsHelper, BillingStatus, BodyProblems, BodyShapes, BodyTattoos, BrandCategory, BrandCategoryFirestoreRepository, BrandEquityOptions, BusinessError, BusinessUnitEnum, Buy2Win, Buy2WinFirestoreRepository, Campaign, CampaignBanner, CampaignDashboard, CampaignDashboardFirestoreRepository, CampaignHashtag, CampaignHashtagFirestoreRepository, Category, CategoryCollectionChildren, CategoryCollectionChildrenHasuraGraphQLRepository, CategoryFilter, CategoryFilterHasuraGraphQLRepository, CategoryFirestoreRepository, CategoryHasuraGraphQL, CategoryHasuraGraphQLRepository, CategoryProduct, CategoryProductHasuraGraphQLRepository, Checkout, CheckoutFirestoreRepository, CheckoutSubscription, CheckoutSubscriptionFirestoreRepository, CheckoutTypes, ClassNameHelper, ConnectBaseDocumentSnapshot, ConnectCollectionService, ConnectDocumentService, ConnectFirestoreService, Coupon, CouponCategories, CouponCategory, CouponChannels, CouponFirestoreRepository, CouponOldCategories, CouponSubtypes, CouponTypes, Debug, DebugDecoratorHelper, DebugHelper, DebugNamespaces, DuplicatedResultsError, Edition, EditionStatus, ErrorsCode, Exclusivities, FaceSkinOilinesses, FaceSkinProblems, FaceSkinTones, FamilyIncomes, Filter, FilterHasuraGraphQLRepository, FilterOption, FilterOptionHasuraGraphQLRepository, FilterType, FirebaseFileUploaderService, FragranceImportances, FraudValidationError, GenderDestination, GlampointsPaymentMethodFactory, GlampointsPaymentService, Group, GroupFirestoreRepository, HairColors, HairProblems, HairStrands, HairTypes, Home, HomeFirestoreRepository, InvalidArgumentError, InvalidCheckoutError, KitProduct, KitProductHasuraGraphQL, Lead, LeadFirestoreRepository, LegacyOrderFirestoreRepository, LineItem, Log, LogDocument, LogFirestoreRepository, Logger, MercadoPagoBankSlipAxiosAdapter, MercadoPagoCardAxiosAdapter, MercadoPagoErrorHelper, MercadoPagoPaymentMethodFactory, MercadoPagoPixAxiosAdapter, MercadoPagoRequestHelper, MercadoPagoResponseHelper, MercadoPagoStatusDetailEnum, MercadoPagoStatusEnum, NotFoundError, ObsEmitter, OfficePosition, Order, OrderBlocked, OrderBlockedFirestoreRepository, OrderBlockedType, OrderFirestoreRepository, OrderPaymentStatus, OrderStatus, PagarMeV5OrderStatus, PagarMeV5PaymentStatus, PagarmeBankSlipAxiosAdapter, PagarmeCardAxiosAdapter, PagarmePaymentMethodFactory, PagarmePaymentStatus, PagarmePixAxiosAdapter, PagarmeV5BankSlipAxiosAdapter, PagarmeV5CardAxiosAdapter, PagarmeV5PixAxiosAdapter, Payment, PaymentError, PaymentFirestoreRepository, PaymentMethods, PaymentProviderFactory, PaymentProviders, PaymentTransaction, PaymentType, PersonTypes, Plans, Product, ProductCatalogHasuraGraphQL, ProductCatalogHasuraGraphQLRepository, ProductErrors, ProductErrorsHasuraGraphQL, ProductErrorsHasuraGraphQLRepository, ProductFirestoreRepository, ProductGroup, ProductGroupHasuraGraphQLRepository, ProductHasuraGraphQL, ProductHasuraGraphQLRepository, ProductLabelEnum, ProductPriceLog, ProductPriceLogHasuraGraphQLRepository, ProductReview, ProductReviewHasuraGraphQLRepository, ProductSpents, ProductStockNotification, ProductStockNotificationHasuraGraphQLRepository, ProductVariantFirestoreRepository, ProductsIndex, ProductsVertexSearch, QuestionsFilters, RecoveryPassword, ReflectHelper, Register, RegisterFirebaseAuthService, RequiredArgumentError, RestCacheAdapter, RoundProductPricesHelper, Sequence, SequenceFirestoreRepository, ShippingMethod, ShopConfigs, ShopConfigsFirestoreRepository, ShopMenu, ShopMenuFirestoreRepository, ShopPageName, ShopSettings, ShopSettingsFirestoreRepository, Shops, SignInMethods, SignOut, Status, StockLimitError, StockOutError, Subscription, SubscriptionEditionFirestoreRepository, SubscriptionFirestoreRepository, SubscriptionMaterialization, SubscriptionMaterializationFirestoreRepository, SubscriptionPayment, SubscriptionPaymentFirestoreRepository, SubscriptionPlan, SubscriptionPlanFirestoreRepository, SubscriptionProductFirestoreRepository, SubscriptionSummary, SubscriptionSummaryFirestoreRepository, Trace, TransactionPaymentMethods, UnauthorizedError, UpdateOptionActions, UpdateUserImage, User, UserAddress, UserAddressFirestoreRepository, UserAlreadyRegisteredError, UserBeautyProfileFirestoreRepository, UserFirestoreRepository, UserPaymentMethod, UserPaymentMethodFirestoreRepository, UserType, Variant, VariantHasuraGraphQL, VariantHasuraGraphQLRepository, VertexAxiosAdapter, WeakPasswordError, Where, Wishlist, WishlistHasuraGraphQLRepository, WishlistLogType, deserialize, getClass, is, isDebuggable, isUUID, parseDateTime, registerClass, resolveClass, serialize, withCreateFirestore, withCreateHasuraGraphQL, withCrudFirestore, withCrudHasuraGraphQL, withDeleteFirestore, withDeleteHasuraGraphQL, withFindFirestore, withFindHasuraGraphQL, withFirestore, withGetFirestore, withGetHasuraGraphQL, withHasuraGraphQL, withHelpers, withSubCollection, withUpdateFirestore, withUpdateHasuraGraphQL };
|
|
11112
|
+
export { AccessoryImportances, Address, AdyenCardAxiosAdapter, AdyenPaymentMethodFactory, AntifraudBankSlipService, AntifraudCardService, AntifraudGlampointsService, AntifraudPixService, AntifraudProviderFactory, AntifraudProviders, Area, Authentication, AuthenticationFirebaseAuthService, AxiosAdapter, Base, BaseModel, BeardProblems, BeardSizes, BeautyProductImportances, BeautyProfile, BeautyQuestionsHelper, BillingStatus, BodyProblems, BodyShapes, BodyTattoos, BrandCategory, BrandCategoryFirestoreRepository, BrandEquityOptions, BusinessError, BusinessUnitEnum, Buy2Win, Buy2WinFirestoreRepository, Campaign, CampaignBanner, CampaignDashboard, CampaignDashboardFirestoreRepository, CampaignHashtag, CampaignHashtagFirestoreRepository, Category, CategoryCollectionChildren, CategoryCollectionChildrenHasuraGraphQLRepository, CategoryFilter, CategoryFilterHasuraGraphQLRepository, CategoryFirestoreRepository, CategoryHasuraGraphQL, CategoryHasuraGraphQLRepository, CategoryProduct, CategoryProductHasuraGraphQLRepository, Checkout, CheckoutFirestoreRepository, CheckoutSubscription, CheckoutSubscriptionFirestoreRepository, CheckoutTypes, ClassNameHelper, ConnectBaseDocumentSnapshot, ConnectCollectionService, ConnectDocumentService, ConnectFirestoreService, Coupon, CouponCategories, CouponCategory, CouponChannels, CouponFirestoreRepository, CouponOldCategories, CouponSubtypes, CouponTypes, Debug, DebugDecoratorHelper, DebugHelper, DebugNamespaces, DuplicatedResultsError, Edition, EditionStatus, ErrorsCode, Exclusivities, FaceSkinOilinesses, FaceSkinProblems, FaceSkinTones, FamilyIncomes, Filter, FilterHasuraGraphQLRepository, FilterOption, FilterOptionHasuraGraphQLRepository, FilterType, FirebaseFileUploaderService, FragranceImportances, FraudValidationError, GenderDestination, GlampointsPaymentMethodFactory, GlampointsPaymentService, Group, GroupFirestoreRepository, HairColors, HairProblems, HairStrands, HairTypes, Home, HomeFirestoreRepository, InvalidArgumentError, InvalidCheckoutError, KitProduct, KitProductHasuraGraphQL, Lead, LeadFirestoreRepository, LegacyOrderFirestoreRepository, LineItem, Log, LogDocument, LogFirestoreRepository, Logger, MercadoPagoBankSlipAxiosAdapter, MercadoPagoCardAxiosAdapter, MercadoPagoErrorHelper, MercadoPagoPaymentMethodFactory, MercadoPagoPixAxiosAdapter, MercadoPagoRequestHelper, MercadoPagoResponseHelper, MercadoPagoStatusDetailEnum, MercadoPagoStatusEnum, NotFoundError, ObsEmitter, OfficePosition, Order, OrderBlocked, OrderBlockedFirestoreRepository, OrderBlockedType, OrderFirestoreRepository, OrderPaymentStatus, OrderStatus, PagarMeV5OrderStatus, PagarMeV5PaymentStatus, PagarmeBankSlipAxiosAdapter, PagarmeCardAxiosAdapter, PagarmePaymentMethodFactory, PagarmePaymentStatus, PagarmePixAxiosAdapter, PagarmeV5BankSlipAxiosAdapter, PagarmeV5CardAxiosAdapter, PagarmeV5PixAxiosAdapter, Payment, PaymentError, PaymentFirestoreRepository, PaymentMethods, PaymentProviderFactory, PaymentProviders, PaymentTransaction, PaymentType, PersonTypes, Plans, Product, ProductCatalogHasuraGraphQL, ProductCatalogHasuraGraphQLRepository, ProductErrors, ProductErrorsHasuraGraphQL, ProductErrorsHasuraGraphQLRepository, ProductFirestoreRepository, ProductGroup, ProductGroupHasuraGraphQLRepository, ProductHasuraGraphQL, ProductHasuraGraphQLRepository, ProductLabelEnum, ProductPriceLog, ProductPriceLogHasuraGraphQLRepository, ProductReview, ProductReviewHasuraGraphQLRepository, ProductSpents, ProductStockEntry, ProductStockEntryHasuraGraphQL, ProductStockEntryHasuraGraphQLRepository, ProductStockNotification, ProductStockNotificationHasuraGraphQLRepository, ProductVariantFirestoreRepository, ProductsIndex, ProductsVertexSearch, QuestionsFilters, RecoveryPassword, ReflectHelper, Register, RegisterFirebaseAuthService, RequiredArgumentError, RestCacheAdapter, RoundProductPricesHelper, Sequence, SequenceFirestoreRepository, ShippingMethod, ShopConfigs, ShopConfigsFirestoreRepository, ShopMenu, ShopMenuFirestoreRepository, ShopPageName, ShopSettings, ShopSettingsFirestoreRepository, Shops, SignInMethods, SignOut, Status, StockLimitError, StockOutError, Subscription, SubscriptionEditionFirestoreRepository, SubscriptionFirestoreRepository, SubscriptionMaterialization, SubscriptionMaterializationFirestoreRepository, SubscriptionPayment, SubscriptionPaymentFirestoreRepository, SubscriptionPlan, SubscriptionPlanFirestoreRepository, SubscriptionProductFirestoreRepository, SubscriptionSummary, SubscriptionSummaryFirestoreRepository, Trace, TransactionPaymentMethods, UnauthorizedError, UpdateOptionActions, UpdateUserImage, User, UserAddress, UserAddressFirestoreRepository, UserAlreadyRegisteredError, UserBeautyProfileFirestoreRepository, UserFirestoreRepository, UserPaymentMethod, UserPaymentMethodFirestoreRepository, UserType, Variant, VariantHasuraGraphQL, VariantHasuraGraphQLRepository, VertexAxiosAdapter, WeakPasswordError, Where, Wishlist, WishlistHasuraGraphQLRepository, WishlistLogType, deserialize, getClass, is, isDebuggable, isUUID, parseDateTime, registerClass, resolveClass, serialize, withCreateFirestore, withCreateHasuraGraphQL, withCrudFirestore, withCrudHasuraGraphQL, withDeleteFirestore, withDeleteHasuraGraphQL, withFindFirestore, withFindHasuraGraphQL, withFirestore, withGetFirestore, withGetHasuraGraphQL, withHasuraGraphQL, withHelpers, withSubCollection, withUpdateFirestore, withUpdateHasuraGraphQL };
|
package/package.json
CHANGED
|
@@ -13,6 +13,7 @@ export * from './product-errors';
|
|
|
13
13
|
export * from './product-group';
|
|
14
14
|
export * from './product-price-log';
|
|
15
15
|
export * from './product-review';
|
|
16
|
+
export * from './product-stock-entry';
|
|
16
17
|
export * from './product-stock-notification';
|
|
17
18
|
export * from './types';
|
|
18
19
|
export * from './variant';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseModel, GenericIdentifier } from '../../generic/model';
|
|
2
|
+
export declare class ProductStockEntry extends BaseModel<ProductStockEntry> {
|
|
3
|
+
id: number;
|
|
4
|
+
productId: string;
|
|
5
|
+
codProduct: string;
|
|
6
|
+
productDescription: string;
|
|
7
|
+
eventDescription: string;
|
|
8
|
+
invoiceValue: number;
|
|
9
|
+
price: number;
|
|
10
|
+
quantity: number;
|
|
11
|
+
invoiceId: number;
|
|
12
|
+
nfeKey: string;
|
|
13
|
+
batch: string;
|
|
14
|
+
createdAt: Date;
|
|
15
|
+
static get identifiersFields(): GenericIdentifier[];
|
|
16
|
+
}
|
|
@@ -11,6 +11,7 @@ export * from './product-errors.repository';
|
|
|
11
11
|
export * from './product-group.repository';
|
|
12
12
|
export * from './product-price-log.repository';
|
|
13
13
|
export * from './product-reviews.repository';
|
|
14
|
+
export * from './product-stock-entry.repository';
|
|
14
15
|
export * from './product-stock-notification.repository';
|
|
15
16
|
export * from './product.repository';
|
|
16
17
|
export * from './subscription-product.repository';
|
|
@@ -3,4 +3,5 @@ export * from './kit-product-hasura-graphql';
|
|
|
3
3
|
export * from './product-catalog-hasura-graphql';
|
|
4
4
|
export * from './product-errors-hasura-graphql';
|
|
5
5
|
export * from './product-hasura-graphql';
|
|
6
|
+
export * from './product-stock-entry-hasura-graphql';
|
|
6
7
|
export * from './variant-hasura-graphql';
|
|
@@ -10,6 +10,7 @@ export * from './product-group-hasura-graphql.repository';
|
|
|
10
10
|
export * from './product-hasura-graphql.repository';
|
|
11
11
|
export * from './product-price-log-hasura-graphql.repository';
|
|
12
12
|
export * from './product-review-hasura-graphql.repository';
|
|
13
|
+
export * from './product-stock-entry-hasura-graphql.repository';
|
|
13
14
|
export * from './product-stock-notification-hasura-graphql.repository';
|
|
14
15
|
export * from './variant-hasura-graphql.repository';
|
|
15
16
|
export * from './wishlist-hasura-graphql.repository';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ProductStockEntry } from '../../../../domain';
|
|
2
|
+
import { ProductStockEntryRepository } from '../../../../domain/catalog/repositories';
|
|
3
|
+
import { HasuraConstructorParams } from '../../mixins';
|
|
4
|
+
declare const ProductStockEntryHasuraGraphQLRepository_base: import("../../../../utils").MixinCtor<import("../..").GraphQLRepository<ProductStockEntry> & import("../../../../domain").CrudRepository<ProductStockEntry, import("../../../../domain").CrudParams<ProductStockEntry>> & import("../../mixins").UpdateHasuraGraphQLRepositoryType<ProductStockEntry>, [HasuraConstructorParams<ProductStockEntry> & import("../../mixins/factories").CreateConstructorParams & import("../../mixins/factories").DeleteConstructorParams & import("../../mixins/factories").GetConstructorParams & import("../../mixins").UpdateConstructorParams, ...any[]]>;
|
|
5
|
+
export declare class ProductStockEntryHasuraGraphQLRepository extends ProductStockEntryHasuraGraphQLRepository_base implements ProductStockEntryRepository {
|
|
6
|
+
constructor({ endpoint, authOptions, interceptors, cache, }: Pick<HasuraConstructorParams<ProductStockEntry>, 'endpoint' | 'authOptions' | 'interceptors' | 'cache'>);
|
|
7
|
+
}
|
|
8
|
+
export {};
|