@infrab4a/connect-angular 4.0.1-beta.0 → 4.0.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/angular-connect.module.d.ts +22 -19
- package/angular-elastic-search.module.d.ts +9 -9
- package/angular-firebase-auth.module.d.ts +12 -10
- package/angular-firestore.module.d.ts +18 -15
- package/angular-hasura-graphql.module.d.ts +16 -16
- package/consts/backend-url.const.d.ts +1 -1
- package/consts/category-structure.d.ts +1 -0
- package/consts/default-shop.const.d.ts +1 -1
- package/consts/es-config.const.d.ts +1 -1
- package/consts/firebase-const.d.ts +3 -0
- package/consts/hasura-options.const.d.ts +1 -1
- package/consts/index.d.ts +6 -4
- package/esm2020/angular-connect.module.mjs +66 -0
- package/esm2020/angular-elastic-search.module.mjs +34 -0
- package/esm2020/angular-firebase-auth.module.mjs +130 -0
- package/esm2020/angular-firestore.module.mjs +459 -0
- package/esm2020/angular-hasura-graphql.module.mjs +243 -0
- package/{esm2015/consts/backend-url.const.js → esm2020/consts/backend-url.const.mjs} +1 -1
- package/esm2020/consts/category-structure.mjs +2 -0
- package/{esm2015/consts/default-shop.const.js → esm2020/consts/default-shop.const.mjs} +2 -2
- package/{esm2015/consts/es-config.const.js → esm2020/consts/es-config.const.mjs} +2 -2
- package/esm2020/consts/firebase-const.mjs +4 -0
- package/{esm2015/consts/hasura-options.const.js → esm2020/consts/hasura-options.const.mjs} +2 -2
- package/esm2020/consts/index.mjs +7 -0
- package/esm2020/helpers/index.mjs +2 -0
- package/esm2020/helpers/mobile-operation-system-checker.helper.mjs +7 -0
- package/esm2020/index.mjs +6 -0
- package/{esm2015/infrab4a-connect-angular.js → esm2020/infrab4a-connect-angular.mjs} +4 -4
- package/esm2020/services/auth.service.mjs +37 -0
- package/esm2020/services/cart.service.mjs +281 -0
- package/esm2020/services/catalog/adapters/category-structure.adapter.mjs +2 -0
- package/esm2020/services/catalog/adapters/index.mjs +4 -0
- package/esm2020/services/catalog/adapters/new-category-structure.adapter.mjs +42 -0
- package/esm2020/services/catalog/adapters/old-category-structure.adapter.mjs +23 -0
- package/esm2020/services/catalog/catalog.service.mjs +122 -0
- package/esm2020/services/catalog/category.service.mjs +51 -0
- package/esm2020/services/catalog/enums/index.mjs +2 -0
- package/esm2020/services/catalog/enums/product-sorts.enum.mjs +11 -0
- package/esm2020/services/catalog/index.mjs +7 -0
- package/esm2020/services/catalog/models/category-with-tree.model.mjs +10 -0
- package/esm2020/services/catalog/models/index.mjs +2 -0
- package/esm2020/services/catalog/types/index.mjs +2 -0
- package/esm2020/services/catalog/types/product-sort.type.mjs +2 -0
- package/esm2020/services/catalog/wishlist.service.mjs +105 -0
- package/esm2020/services/checkout-subscription.service.mjs +53 -0
- package/esm2020/services/checkout.service.mjs +71 -0
- package/esm2020/services/coupon.service.mjs +218 -0
- package/esm2020/services/helpers/index.mjs +2 -0
- package/esm2020/services/helpers/util.helper.mjs +18 -0
- package/esm2020/services/home-shop.service.mjs +114 -0
- package/esm2020/services/index.mjs +11 -0
- package/esm2020/services/order.service.mjs +30 -0
- package/esm2020/services/shipping.service.mjs +96 -0
- package/{esm2015/services/types/index.js → esm2020/services/types/index.mjs} +3 -3
- package/{esm2015/services/types/required-checkout-data.type.js → esm2020/services/types/required-checkout-data.type.mjs} +2 -2
- package/{esm2015/services/types/required-checkout-subscription-data.type.js → esm2020/services/types/required-checkout-subscription-data.type.mjs} +2 -2
- package/esm2020/services/types/shipping-methods.type.mjs +2 -0
- package/esm2020/types/firebase-app-config.type.mjs +2 -0
- package/esm2020/types/index.mjs +2 -0
- package/fesm2015/infrab4a-connect-angular.mjs +2193 -0
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -0
- package/fesm2020/infrab4a-connect-angular.mjs +2125 -0
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -0
- package/helpers/index.d.ts +1 -0
- package/helpers/mobile-operation-system-checker.helper.d.ts +3 -0
- package/index.d.ts +5 -5
- package/package.json +25 -13
- package/services/auth.service.d.ts +18 -19
- package/services/cart.service.d.ts +42 -35
- package/services/catalog/adapters/category-structure.adapter.d.ts +4 -0
- package/services/catalog/adapters/index.d.ts +3 -0
- package/services/catalog/adapters/new-category-structure.adapter.d.ts +14 -0
- package/services/catalog/adapters/old-category-structure.adapter.d.ts +10 -0
- package/services/catalog/catalog.service.d.ts +80 -0
- package/services/catalog/category.service.d.ts +15 -0
- package/services/catalog/enums/index.d.ts +1 -0
- package/services/catalog/enums/product-sorts.enum.d.ts +9 -0
- package/services/catalog/index.d.ts +6 -0
- package/services/catalog/models/category-with-tree.model.d.ts +4 -0
- package/services/catalog/models/index.d.ts +1 -0
- package/services/catalog/types/index.d.ts +1 -0
- package/services/catalog/types/product-sort.type.d.ts +2 -0
- package/services/catalog/wishlist.service.d.ts +22 -0
- package/services/checkout-subscription.service.d.ts +18 -18
- package/services/checkout.service.d.ts +23 -23
- package/services/coupon.service.d.ts +28 -26
- package/services/helpers/index.d.ts +1 -0
- package/services/helpers/util.helper.d.ts +3 -0
- package/services/home-shop.service.d.ts +25 -25
- package/services/index.d.ts +10 -8
- package/services/order.service.d.ts +13 -13
- package/services/shipping.service.d.ts +19 -19
- package/services/types/index.d.ts +2 -2
- package/services/types/required-checkout-data.type.d.ts +2 -2
- package/services/types/required-checkout-subscription-data.type.d.ts +2 -2
- package/services/types/shipping-methods.type.d.ts +12 -12
- package/types/firebase-app-config.type.d.ts +1 -0
- package/types/index.d.ts +1 -0
- package/bundles/infrab4a-connect-angular.umd.js +0 -1978
- package/bundles/infrab4a-connect-angular.umd.js.map +0 -1
- package/esm2015/angular-connect.module.js +0 -52
- package/esm2015/angular-elastic-search.module.js +0 -38
- package/esm2015/angular-firebase-auth.module.js +0 -113
- package/esm2015/angular-firestore.module.js +0 -366
- package/esm2015/angular-hasura-graphql.module.js +0 -90
- package/esm2015/consts/index.js +0 -5
- package/esm2015/index.js +0 -6
- package/esm2015/services/auth.service.js +0 -42
- package/esm2015/services/cart.service.js +0 -148
- package/esm2015/services/checkout-subscription.service.js +0 -51
- package/esm2015/services/checkout.service.js +0 -75
- package/esm2015/services/coupon.service.js +0 -266
- package/esm2015/services/errors/group-invalid-coupon.error.js +0 -8
- package/esm2015/services/errors/index.js +0 -3
- package/esm2015/services/errors/invalid-coupon.error.js +0 -8
- package/esm2015/services/home-shop.service.js +0 -116
- package/esm2015/services/index.js +0 -9
- package/esm2015/services/order.service.js +0 -32
- package/esm2015/services/shipping.service.js +0 -99
- package/esm2015/services/types/shipping-methods.type.js +0 -2
- package/fesm2015/infrab4a-connect-angular.js +0 -1432
- package/fesm2015/infrab4a-connect-angular.js.map +0 -1
- package/infrab4a-connect-angular.d.ts +0 -5
- package/services/errors/group-invalid-coupon.error.d.ts +0 -6
- package/services/errors/index.d.ts +0 -2
- package/services/errors/invalid-coupon.error.d.ts +0 -5
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVxdWlyZWQtY2hlY2tvdXQtc3Vic2NyaXB0aW9uLWRhdGEudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3QtYW5ndWxhci9zcmMvc2VydmljZXMvdHlwZXMvcmVxdWlyZWQtY2hlY2tvdXQtc3Vic2NyaXB0aW9uLWRhdGEudHlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hlY2tvdXRTdWJzY3JpcHRpb24gfSBmcm9tICdAaW5mcmFiNGEvY29ubmVjdCdcblxuZXhwb3J0IHR5cGUgUmVxdWlyZWRDaGVja291dFN1YnNjcmlwdGlvbkRhdGEgPSBQYXJ0aWFsPFBpY2s8Q2hlY2tvdXRTdWJzY3JpcHRpb24sICdpZCc+PlxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2hpcHBpbmctbWV0aG9kcy50eXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29ubmVjdC1hbmd1bGFyL3NyYy9zZXJ2aWNlcy90eXBlcy9zaGlwcGluZy1tZXRob2RzLnR5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgU2hpcHBpbmdNZXRob2RSZXNwb25zZSB7XG4gIGRheXNUb0RlbGl2ZXJ5OiBudW1iZXI7XG4gIGN1cnJlbmN5OiBzdHJpbmc7XG4gIGRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gIG1heERlbGl2ZXJ5RGF0ZTogc3RyaW5nO1xuICBtaW5EZWxpdmVyeURhdGU6IHN0cmluZztcbiAgc2VydmljZUNvZGU6IHN0cmluZztcbiAgc2VydmljZU5hbWU6IHN0cmluZztcbiAgdG90YWxQcmljZTogbnVtYmVyO1xuICBhZGRpdGlvbmFsRGVzY3JpcHRpb246IHN0cmluZztcbiAgY25wajogc3RyaW5nO1xufSJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlyZWJhc2UtYXBwLWNvbmZpZy50eXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvY29ubmVjdC1hbmd1bGFyL3NyYy90eXBlcy9maXJlYmFzZS1hcHAtY29uZmlnLnR5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIEZpcmViYXNlQXBwQ29uZmlnID0gUmVjb3JkPHN0cmluZywgYW55PlxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './firebase-app-config.type';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9jb25uZWN0LWFuZ3VsYXIvc3JjL3R5cGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsNEJBQTRCLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2ZpcmViYXNlLWFwcC1jb25maWcudHlwZSdcbiJdfQ==
|