@infrab4a/connect 3.0.0-beta.1 → 3.0.0-beta.2
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/bundles/infrab4a-connect.umd.js +232 -136
- package/bundles/infrab4a-connect.umd.js.map +1 -1
- package/domain/generic/repository/enums/where.enum.d.ts +1 -0
- package/esm2015/domain/catalog/repositories/product.repository.js +1 -1
- package/esm2015/domain/generic/repository/enums/where.enum.js +2 -1
- package/esm2015/domain/shop-settings/models/home.js +1 -1
- package/esm2015/infra/elasticsearch/indexes/products-index.js +2 -2
- package/esm2015/infra/firebase/firestore/repositories/users/index.js +6 -7
- package/esm2015/infra/firebase/firestore/repositories/users/user-firestore.repository.js +4 -6
- package/esm2015/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.js +59 -3
- package/esm2015/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.js +31 -8
- package/esm2015/infra/hasura-graphql/types/hasura-graphql-fields.type.js +1 -1
- package/fesm2015/infrab4a-connect.js +136 -72
- package/fesm2015/infrab4a-connect.js.map +1 -1
- package/infra/firebase/firestore/repositories/users/index.d.ts +5 -6
- package/infra/firebase/firestore/repositories/users/user-firestore.repository.d.ts +1 -3
- package/infra/hasura-graphql/repositories/catalog/category-hasura-graphql.repository.d.ts +4 -1
- package/infra/hasura-graphql/types/hasura-graphql-fields.type.d.ts +1 -1
- package/package.json +1 -1
- package/esm2015/infra/firebase/firestore/models/user-search.js +0 -7
- package/esm2015/infra/firebase/firestore/repositories/users/user-search-firestore.repository.js +0 -12
- package/infra/firebase/firestore/models/user-search.d.ts +0 -9
- package/infra/firebase/firestore/repositories/users/user-search-firestore.repository.d.ts +0 -9
|
@@ -36,6 +36,7 @@ class BaseModel {
|
|
|
36
36
|
var Where;
|
|
37
37
|
(function (Where) {
|
|
38
38
|
Where["EQUALS"] = "==";
|
|
39
|
+
Where["NOTEQUALS"] = "!=";
|
|
39
40
|
Where["GT"] = ">";
|
|
40
41
|
Where["GTE"] = ">=";
|
|
41
42
|
Where["IN"] = "in";
|
|
@@ -1153,7 +1154,7 @@ class ProductsIndex {
|
|
|
1153
1154
|
yield this.adapter.save(`products/_doc/${product.firestoreId}`, product.toPlain());
|
|
1154
1155
|
}
|
|
1155
1156
|
catch (error) {
|
|
1156
|
-
console.
|
|
1157
|
+
console.error(error.message);
|
|
1157
1158
|
yield this.adapter.save(`products/_doc/${product.id}`, product.toPlain());
|
|
1158
1159
|
}
|
|
1159
1160
|
});
|
|
@@ -1422,6 +1423,26 @@ const withCrudFirestore = (MixinBase) => {
|
|
|
1422
1423
|
};
|
|
1423
1424
|
};
|
|
1424
1425
|
|
|
1426
|
+
class LeadFirestoreRepository extends withCrudFirestore(withHelpers(withFirestore(Base))) {
|
|
1427
|
+
constructor(firestore) {
|
|
1428
|
+
super();
|
|
1429
|
+
this.firestore = firestore;
|
|
1430
|
+
this.collectionName = 'leads';
|
|
1431
|
+
this.model = Lead;
|
|
1432
|
+
}
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
class SubscriptionEditionFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), Subscription) {
|
|
1436
|
+
constructor(firestore, parentRepository) {
|
|
1437
|
+
super();
|
|
1438
|
+
this.firestore = firestore;
|
|
1439
|
+
this.parentRepository = parentRepository;
|
|
1440
|
+
this.collectionName = 'editions';
|
|
1441
|
+
this.parentIdField = 'subscriptionId';
|
|
1442
|
+
this.model = Edition;
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1425
1446
|
class SubscriptionFirestoreRepository extends withCrudFirestore(withHelpers(withFirestore(Base))) {
|
|
1426
1447
|
constructor(firestore) {
|
|
1427
1448
|
super();
|
|
@@ -1431,26 +1452,43 @@ class SubscriptionFirestoreRepository extends withCrudFirestore(withHelpers(with
|
|
|
1431
1452
|
}
|
|
1432
1453
|
}
|
|
1433
1454
|
|
|
1434
|
-
class
|
|
1435
|
-
|
|
1436
|
-
|
|
1455
|
+
class SubscriptionPaymentFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), Subscription) {
|
|
1456
|
+
constructor(firestore, parentRepository) {
|
|
1457
|
+
super();
|
|
1458
|
+
this.firestore = firestore;
|
|
1459
|
+
this.parentRepository = parentRepository;
|
|
1460
|
+
this.collectionName = 'payments';
|
|
1461
|
+
this.parentIdField = 'subscriptionId';
|
|
1462
|
+
this.model = SubscriptionPayment;
|
|
1437
1463
|
}
|
|
1438
1464
|
}
|
|
1439
1465
|
|
|
1440
|
-
class
|
|
1441
|
-
constructor(firestore) {
|
|
1466
|
+
class UserAddressFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), User) {
|
|
1467
|
+
constructor(firestore, parentRepository) {
|
|
1468
|
+
super();
|
|
1469
|
+
this.firestore = firestore;
|
|
1470
|
+
this.parentRepository = parentRepository;
|
|
1471
|
+
this.collectionName = 'address';
|
|
1472
|
+
this.parentIdField = 'userId';
|
|
1473
|
+
this.model = UserAddress;
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
class UserBeautyProfileFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), User) {
|
|
1478
|
+
constructor(firestore, parentRepository) {
|
|
1442
1479
|
super();
|
|
1443
1480
|
this.firestore = firestore;
|
|
1444
|
-
this.
|
|
1445
|
-
this.
|
|
1481
|
+
this.parentRepository = parentRepository;
|
|
1482
|
+
this.collectionName = 'CX';
|
|
1483
|
+
this.parentIdField = 'userId';
|
|
1484
|
+
this.model = BeautyProfile;
|
|
1446
1485
|
}
|
|
1447
1486
|
}
|
|
1448
1487
|
|
|
1449
1488
|
class UserFirestoreRepository extends withCrudFirestore(withHelpers(withFirestore(Base))) {
|
|
1450
|
-
constructor(firestore
|
|
1489
|
+
constructor(firestore) {
|
|
1451
1490
|
super();
|
|
1452
1491
|
this.firestore = firestore;
|
|
1453
|
-
this.userSearchFirestoreRepository = userSearchFirestoreRepository;
|
|
1454
1492
|
this.collectionName = 'users';
|
|
1455
1493
|
this.model = User;
|
|
1456
1494
|
}
|
|
@@ -1467,7 +1505,7 @@ class UserFirestoreRepository extends withCrudFirestore(withHelpers(withFirestor
|
|
|
1467
1505
|
}
|
|
1468
1506
|
checkIfExistsByField(field, value) {
|
|
1469
1507
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1470
|
-
const result = yield this.
|
|
1508
|
+
const result = yield this.find({ filters: { [field]: value } });
|
|
1471
1509
|
return result.count > 0;
|
|
1472
1510
|
});
|
|
1473
1511
|
}
|
|
@@ -1511,39 +1549,6 @@ class UserFirestoreRepository extends withCrudFirestore(withHelpers(withFirestor
|
|
|
1511
1549
|
}
|
|
1512
1550
|
}
|
|
1513
1551
|
|
|
1514
|
-
class SubscriptionEditionFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), Subscription) {
|
|
1515
|
-
constructor(firestore, parentRepository) {
|
|
1516
|
-
super();
|
|
1517
|
-
this.firestore = firestore;
|
|
1518
|
-
this.parentRepository = parentRepository;
|
|
1519
|
-
this.collectionName = 'editions';
|
|
1520
|
-
this.parentIdField = 'subscriptionId';
|
|
1521
|
-
this.model = Edition;
|
|
1522
|
-
}
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
class UserBeautyProfileFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), User) {
|
|
1526
|
-
constructor(firestore, parentRepository) {
|
|
1527
|
-
super();
|
|
1528
|
-
this.firestore = firestore;
|
|
1529
|
-
this.parentRepository = parentRepository;
|
|
1530
|
-
this.collectionName = 'CX';
|
|
1531
|
-
this.parentIdField = 'userId';
|
|
1532
|
-
this.model = BeautyProfile;
|
|
1533
|
-
}
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
class UserAddressFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), User) {
|
|
1537
|
-
constructor(firestore, parentRepository) {
|
|
1538
|
-
super();
|
|
1539
|
-
this.firestore = firestore;
|
|
1540
|
-
this.parentRepository = parentRepository;
|
|
1541
|
-
this.collectionName = 'address';
|
|
1542
|
-
this.parentIdField = 'userId';
|
|
1543
|
-
this.model = UserAddress;
|
|
1544
|
-
}
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
1552
|
class UserPaymentMethodFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), User) {
|
|
1548
1553
|
constructor(firestore, parentRepository) {
|
|
1549
1554
|
super();
|
|
@@ -1555,26 +1560,6 @@ class UserPaymentMethodFirestoreRepository extends withSubCollection(withCrudFir
|
|
|
1555
1560
|
}
|
|
1556
1561
|
}
|
|
1557
1562
|
|
|
1558
|
-
class SubscriptionPaymentFirestoreRepository extends withSubCollection(withCrudFirestore(withHelpers(withFirestore(Base))), Subscription) {
|
|
1559
|
-
constructor(firestore, parentRepository) {
|
|
1560
|
-
super();
|
|
1561
|
-
this.firestore = firestore;
|
|
1562
|
-
this.parentRepository = parentRepository;
|
|
1563
|
-
this.collectionName = 'payments';
|
|
1564
|
-
this.parentIdField = 'subscriptionId';
|
|
1565
|
-
this.model = SubscriptionPayment;
|
|
1566
|
-
}
|
|
1567
|
-
}
|
|
1568
|
-
|
|
1569
|
-
class LeadFirestoreRepository extends withCrudFirestore(withHelpers(withFirestore(Base))) {
|
|
1570
|
-
constructor(firestore) {
|
|
1571
|
-
super();
|
|
1572
|
-
this.firestore = firestore;
|
|
1573
|
-
this.collectionName = 'leads';
|
|
1574
|
-
this.model = Lead;
|
|
1575
|
-
}
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
1563
|
class CategoryFirestoreRepository extends withCrudFirestore(withHelpers(withFirestore(Base))) {
|
|
1579
1564
|
constructor(firestore) {
|
|
1580
1565
|
super();
|
|
@@ -2507,6 +2492,19 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
2507
2492
|
: _super.get.call(this, identifiers);
|
|
2508
2493
|
});
|
|
2509
2494
|
}
|
|
2495
|
+
update(params) {
|
|
2496
|
+
const _super = Object.create(null, {
|
|
2497
|
+
update: { get: () => super.update }
|
|
2498
|
+
});
|
|
2499
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2500
|
+
const { products, id: checkId } = params, data = __rest(params, ["products", "id"]);
|
|
2501
|
+
const plainData = this.paramsToPlain({ id: checkId });
|
|
2502
|
+
const id = yield this.getId(plainData.id);
|
|
2503
|
+
const category = yield _super.update.call(this, Object.assign({ id }, data));
|
|
2504
|
+
category.products = products && (yield this.updateProducts(+id, { products }));
|
|
2505
|
+
return category;
|
|
2506
|
+
});
|
|
2507
|
+
}
|
|
2510
2508
|
getCategoryBySlug(slug, shop) {
|
|
2511
2509
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2512
2510
|
if (!slug)
|
|
@@ -2567,6 +2565,49 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
2567
2565
|
return products;
|
|
2568
2566
|
});
|
|
2569
2567
|
}
|
|
2568
|
+
getId(id) {
|
|
2569
|
+
var _a, _b;
|
|
2570
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2571
|
+
if (!Number.isNaN(+id))
|
|
2572
|
+
return id;
|
|
2573
|
+
const { data } = yield this.find({ filters: { firestoreId: id } });
|
|
2574
|
+
if ((_a = data === null || data === void 0 ? void 0 : data[0]) === null || _a === void 0 ? void 0 : _a.id)
|
|
2575
|
+
return (_b = data === null || data === void 0 ? void 0 : data[0]) === null || _b === void 0 ? void 0 : _b.id;
|
|
2576
|
+
throw new NotFoundError(`Category with id ${id} not found`);
|
|
2577
|
+
});
|
|
2578
|
+
}
|
|
2579
|
+
updateProducts(categoryId, { products }) {
|
|
2580
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2581
|
+
if ('action' in products && products.action === 'remove') {
|
|
2582
|
+
yield this.mutation('delete_category_product', ['affected_rows'], {
|
|
2583
|
+
where: {
|
|
2584
|
+
type: 'category_product_bool_exp',
|
|
2585
|
+
required: true,
|
|
2586
|
+
value: { category_id: { _eq: categoryId } },
|
|
2587
|
+
},
|
|
2588
|
+
});
|
|
2589
|
+
return [];
|
|
2590
|
+
}
|
|
2591
|
+
const plainData = this.paramsToPlain({ products });
|
|
2592
|
+
if (!plainData.products || plainData.products.length <= 0)
|
|
2593
|
+
return [];
|
|
2594
|
+
yield this.mutation('delete_category_product', ['affected_rows'], {
|
|
2595
|
+
where: {
|
|
2596
|
+
type: 'category_product_bool_exp',
|
|
2597
|
+
required: true,
|
|
2598
|
+
value: { category_id: { _eq: categoryId } },
|
|
2599
|
+
},
|
|
2600
|
+
});
|
|
2601
|
+
yield this.mutation('insert_category_product', ['affected_rows'], {
|
|
2602
|
+
objects: {
|
|
2603
|
+
type: '[category_product_insert_input!]',
|
|
2604
|
+
required: true,
|
|
2605
|
+
value: plainData.products.map((productId) => ({ category_id: categoryId, product_id: productId })),
|
|
2606
|
+
},
|
|
2607
|
+
});
|
|
2608
|
+
return plainData.products;
|
|
2609
|
+
});
|
|
2610
|
+
}
|
|
2570
2611
|
}
|
|
2571
2612
|
|
|
2572
2613
|
class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
@@ -2676,6 +2717,13 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2676
2717
|
],
|
|
2677
2718
|
},
|
|
2678
2719
|
},
|
|
2720
|
+
{
|
|
2721
|
+
reviews: {
|
|
2722
|
+
columnName: 'reviews',
|
|
2723
|
+
foreignKeyColumn: { productId: 'id' },
|
|
2724
|
+
fields: this.reviewsFields,
|
|
2725
|
+
},
|
|
2726
|
+
},
|
|
2679
2727
|
{
|
|
2680
2728
|
metadata: {
|
|
2681
2729
|
columnName: 'metadata',
|
|
@@ -2732,7 +2780,7 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2732
2780
|
: yield _super.get.call(this, identifiers);
|
|
2733
2781
|
if (product.productId)
|
|
2734
2782
|
throw new NotFoundError('Product not found, it is a variant');
|
|
2735
|
-
product.reviews = yield this.findReviewsByProduct(+product.id);
|
|
2783
|
+
product.reviews = product.reviews || (yield this.findReviewsByProduct(+product.id));
|
|
2736
2784
|
return product;
|
|
2737
2785
|
});
|
|
2738
2786
|
}
|
|
@@ -2741,8 +2789,12 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2741
2789
|
find: { get: () => super.find }
|
|
2742
2790
|
});
|
|
2743
2791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2744
|
-
const _a = params || {}, { filters } = _a, options = __rest(_a, ["filters"]);
|
|
2745
|
-
|
|
2792
|
+
const _a = params || {}, { filters, fields } = _a, options = __rest(_a, ["filters", "fields"]);
|
|
2793
|
+
const bindFields = fields ||
|
|
2794
|
+
this.fields
|
|
2795
|
+
.map((field) => (typeof field === 'string' ? field : Object.keys(field).shift()))
|
|
2796
|
+
.filter((field) => field !== 'reviews');
|
|
2797
|
+
return _super.find.call(this, Object.assign(Object.assign({}, options), { filters: Object.assign(Object.assign({}, filters), { productId: { operator: Where.ISNULL } }), fields: bindFields }));
|
|
2746
2798
|
});
|
|
2747
2799
|
}
|
|
2748
2800
|
getBySlug(slug) {
|
|
@@ -2775,13 +2827,13 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2775
2827
|
}
|
|
2776
2828
|
fetchReviews(status) {
|
|
2777
2829
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2778
|
-
const
|
|
2830
|
+
const reviewsExpression = {
|
|
2779
2831
|
status: status === 'pending'
|
|
2780
2832
|
? { [HasuraGraphQLWhere.ISNULL]: true }
|
|
2781
2833
|
: { [HasuraGraphQLWhere.EQUALS]: status === 'approved' },
|
|
2782
2834
|
};
|
|
2783
2835
|
const { product: data } = yield this.query('product', ['id', 'name', 'sku', { reviews: { columnName: 'reviews', fields: this.reviewsFields } }], {
|
|
2784
|
-
where: { value: { reviews }, type: 'product_bool_exp', required: true },
|
|
2836
|
+
where: { value: { reviews: reviewsExpression }, type: 'product_bool_exp', required: true },
|
|
2785
2837
|
});
|
|
2786
2838
|
return data.reduce((reviews, product) => [
|
|
2787
2839
|
...reviews,
|
|
@@ -2795,7 +2847,19 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2795
2847
|
}
|
|
2796
2848
|
updateCategories(productId, { categories }) {
|
|
2797
2849
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2850
|
+
if ('action' in categories && categories.action === 'remove') {
|
|
2851
|
+
yield this.mutation('delete_category_product', ['affected_rows'], {
|
|
2852
|
+
where: {
|
|
2853
|
+
type: 'category_product_bool_exp',
|
|
2854
|
+
required: true,
|
|
2855
|
+
value: { product_id: { _eq: productId } },
|
|
2856
|
+
},
|
|
2857
|
+
});
|
|
2858
|
+
return [];
|
|
2859
|
+
}
|
|
2798
2860
|
const plainData = this.paramsToPlain({ categories });
|
|
2861
|
+
if (!plainData.categories || plainData.categories.length <= 0)
|
|
2862
|
+
return [];
|
|
2799
2863
|
yield this.mutation('delete_category_product', ['affected_rows'], {
|
|
2800
2864
|
where: {
|
|
2801
2865
|
type: 'category_product_bool_exp',
|
|
@@ -2839,8 +2903,6 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2839
2903
|
}
|
|
2840
2904
|
updateReviews(productId, { reviews }) {
|
|
2841
2905
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2842
|
-
if (!reviews)
|
|
2843
|
-
return [];
|
|
2844
2906
|
if ('action' in reviews && reviews.action === 'remove') {
|
|
2845
2907
|
const reviewIds = yield Promise.all(reviews.value.map((reviewData) => __awaiter(this, void 0, void 0, function* () {
|
|
2846
2908
|
const review = yield this.findReview(reviewData, productId);
|
|
@@ -2852,6 +2914,8 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
2852
2914
|
return reviews.value.map((review, index) => !reviewIds[index] && review).filter(Boolean);
|
|
2853
2915
|
}
|
|
2854
2916
|
const plainData = this.paramsToPlain({ reviews });
|
|
2917
|
+
if (!plainData.reviews || plainData.reviews.length <= 0)
|
|
2918
|
+
return [];
|
|
2855
2919
|
return Promise.all(plainData.reviews.map((reviewData) => __awaiter(this, void 0, void 0, function* () {
|
|
2856
2920
|
const review = yield this.findReview(reviewData, productId);
|
|
2857
2921
|
if (review.id)
|
|
@@ -3060,5 +3124,5 @@ class VariantHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
3060
3124
|
* Generated bundle index. Do not edit.
|
|
3061
3125
|
*/
|
|
3062
3126
|
|
|
3063
|
-
export { AccessoryImportances, Address, Area, Authentication, AuthenticationFirebaseAuthService, AxiosAdapter, Base, BaseModel, BeardProblems, BeardSizes, BeautyProductImportances, BeautyProfile, BeautyQuestionsHelper, BillingStatus, BodyProblems, BodyShapes, BodyTattoos, Buy2Win, Buy2WinFirestoreRepository, Category, CategoryFirestoreRepository, CategoryHasuraGraphQL, CategoryHasuraGraphQLRepository, Checkout, CheckoutFirestoreRepository, CheckoutSubscription, CheckoutSubscriptionFirestoreRepository, CheckoutTypes, Coupon, CouponFirestoreRepository, CouponSubtypes, CouponTypes, DuplicatedResultsError, Edition, EditionStatus, Exclusivities, FaceSkinOilinesses, FaceSkinProblems, FaceSkinTones, FamilyIncomes, FilterType, FragranceImportances, GenderDestination, HairColors, HairProblems, HairStrands, HairTypes, Home, HomeFirestoreRepository, InvalidArgumentError, KitProduct, KitProductHasuraGraphQL, Lead, LeadFirestoreRepository, LegacyOrderFirestoreRepository, LineItem, NotFoundError, OfficePosition, Order, OrderFirestoreRepository, OrderStatus, Payment, PaymentFirestoreRepository, PaymentType, Product, ProductFirestoreRepository, ProductHasuraGraphQL, ProductHasuraGraphQLRepository, ProductSpents, ProductVariantFirestoreRepository, ProductsIndex, QuestionsFilters, RecoveryPassword, Register, RegisterFirebaseAuthService, RequiredArgumentError, ShippingMethod, ShopMenu, ShopMenuFirestoreRepository, Shops, SignInMethods, SignOut, Status, Subscription, SubscriptionEditionFirestoreRepository, SubscriptionFirestoreRepository, SubscriptionPayment, SubscriptionPaymentFirestoreRepository, SubscriptionPlan, SubscriptionPlanFirestoreRepository, SubscriptionProductFirestoreRepository, UnauthorizedError, UpdateOptionActions, User, UserAddress, UserAddressFirestoreRepository, UserAlreadyRegisteredError, UserBeautyProfileFirestoreRepository, UserFirestoreRepository, UserPaymentMethod, UserPaymentMethodFirestoreRepository,
|
|
3127
|
+
export { AccessoryImportances, Address, Area, Authentication, AuthenticationFirebaseAuthService, AxiosAdapter, Base, BaseModel, BeardProblems, BeardSizes, BeautyProductImportances, BeautyProfile, BeautyQuestionsHelper, BillingStatus, BodyProblems, BodyShapes, BodyTattoos, Buy2Win, Buy2WinFirestoreRepository, Category, CategoryFirestoreRepository, CategoryHasuraGraphQL, CategoryHasuraGraphQLRepository, Checkout, CheckoutFirestoreRepository, CheckoutSubscription, CheckoutSubscriptionFirestoreRepository, CheckoutTypes, Coupon, CouponFirestoreRepository, CouponSubtypes, CouponTypes, DuplicatedResultsError, Edition, EditionStatus, Exclusivities, FaceSkinOilinesses, FaceSkinProblems, FaceSkinTones, FamilyIncomes, FilterType, FragranceImportances, GenderDestination, HairColors, HairProblems, HairStrands, HairTypes, Home, HomeFirestoreRepository, InvalidArgumentError, KitProduct, KitProductHasuraGraphQL, Lead, LeadFirestoreRepository, LegacyOrderFirestoreRepository, LineItem, NotFoundError, OfficePosition, Order, OrderFirestoreRepository, OrderStatus, Payment, PaymentFirestoreRepository, PaymentType, Product, ProductFirestoreRepository, ProductHasuraGraphQL, ProductHasuraGraphQLRepository, ProductSpents, ProductVariantFirestoreRepository, ProductsIndex, QuestionsFilters, RecoveryPassword, Register, RegisterFirebaseAuthService, RequiredArgumentError, ShippingMethod, ShopMenu, ShopMenuFirestoreRepository, Shops, SignInMethods, SignOut, Status, Subscription, SubscriptionEditionFirestoreRepository, SubscriptionFirestoreRepository, SubscriptionPayment, SubscriptionPaymentFirestoreRepository, SubscriptionPlan, SubscriptionPlanFirestoreRepository, SubscriptionProductFirestoreRepository, UnauthorizedError, UpdateOptionActions, User, UserAddress, UserAddressFirestoreRepository, UserAlreadyRegisteredError, UserBeautyProfileFirestoreRepository, UserFirestoreRepository, UserPaymentMethod, UserPaymentMethodFirestoreRepository, UserType, Variant, VariantHasuraGraphQL, VariantHasuraGraphQLRepository, WeakPasswordError, Where, isUUID, parseDateTime, withCreateFirestore, withCreateHasuraGraphQL, withCrudFirestore, withCrudHasuraGraphQL, withDeleteFirestore, withDeleteHasuraGraphQL, withFindFirestore, withFindHasuraGraphQL, withFirestore, withGetFirestore, withGetHasuraGraphQL, withHasuraGraphQL, withHelpers, withSubCollection, withUpdateFirestore, withUpdateHasuraGraphQL };
|
|
3064
3128
|
//# sourceMappingURL=infrab4a-connect.js.map
|