@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.
Files changed (126) hide show
  1. package/angular-connect.module.d.ts +22 -19
  2. package/angular-elastic-search.module.d.ts +9 -9
  3. package/angular-firebase-auth.module.d.ts +12 -10
  4. package/angular-firestore.module.d.ts +18 -15
  5. package/angular-hasura-graphql.module.d.ts +16 -16
  6. package/consts/backend-url.const.d.ts +1 -1
  7. package/consts/category-structure.d.ts +1 -0
  8. package/consts/default-shop.const.d.ts +1 -1
  9. package/consts/es-config.const.d.ts +1 -1
  10. package/consts/firebase-const.d.ts +3 -0
  11. package/consts/hasura-options.const.d.ts +1 -1
  12. package/consts/index.d.ts +6 -4
  13. package/esm2020/angular-connect.module.mjs +66 -0
  14. package/esm2020/angular-elastic-search.module.mjs +34 -0
  15. package/esm2020/angular-firebase-auth.module.mjs +130 -0
  16. package/esm2020/angular-firestore.module.mjs +459 -0
  17. package/esm2020/angular-hasura-graphql.module.mjs +243 -0
  18. package/{esm2015/consts/backend-url.const.js → esm2020/consts/backend-url.const.mjs} +1 -1
  19. package/esm2020/consts/category-structure.mjs +2 -0
  20. package/{esm2015/consts/default-shop.const.js → esm2020/consts/default-shop.const.mjs} +2 -2
  21. package/{esm2015/consts/es-config.const.js → esm2020/consts/es-config.const.mjs} +2 -2
  22. package/esm2020/consts/firebase-const.mjs +4 -0
  23. package/{esm2015/consts/hasura-options.const.js → esm2020/consts/hasura-options.const.mjs} +2 -2
  24. package/esm2020/consts/index.mjs +7 -0
  25. package/esm2020/helpers/index.mjs +2 -0
  26. package/esm2020/helpers/mobile-operation-system-checker.helper.mjs +7 -0
  27. package/esm2020/index.mjs +6 -0
  28. package/{esm2015/infrab4a-connect-angular.js → esm2020/infrab4a-connect-angular.mjs} +4 -4
  29. package/esm2020/services/auth.service.mjs +37 -0
  30. package/esm2020/services/cart.service.mjs +281 -0
  31. package/esm2020/services/catalog/adapters/category-structure.adapter.mjs +2 -0
  32. package/esm2020/services/catalog/adapters/index.mjs +4 -0
  33. package/esm2020/services/catalog/adapters/new-category-structure.adapter.mjs +42 -0
  34. package/esm2020/services/catalog/adapters/old-category-structure.adapter.mjs +23 -0
  35. package/esm2020/services/catalog/catalog.service.mjs +122 -0
  36. package/esm2020/services/catalog/category.service.mjs +51 -0
  37. package/esm2020/services/catalog/enums/index.mjs +2 -0
  38. package/esm2020/services/catalog/enums/product-sorts.enum.mjs +11 -0
  39. package/esm2020/services/catalog/index.mjs +7 -0
  40. package/esm2020/services/catalog/models/category-with-tree.model.mjs +10 -0
  41. package/esm2020/services/catalog/models/index.mjs +2 -0
  42. package/esm2020/services/catalog/types/index.mjs +2 -0
  43. package/esm2020/services/catalog/types/product-sort.type.mjs +2 -0
  44. package/esm2020/services/catalog/wishlist.service.mjs +105 -0
  45. package/esm2020/services/checkout-subscription.service.mjs +53 -0
  46. package/esm2020/services/checkout.service.mjs +71 -0
  47. package/esm2020/services/coupon.service.mjs +218 -0
  48. package/esm2020/services/helpers/index.mjs +2 -0
  49. package/esm2020/services/helpers/util.helper.mjs +18 -0
  50. package/esm2020/services/home-shop.service.mjs +114 -0
  51. package/esm2020/services/index.mjs +11 -0
  52. package/esm2020/services/order.service.mjs +30 -0
  53. package/esm2020/services/shipping.service.mjs +96 -0
  54. package/{esm2015/services/types/index.js → esm2020/services/types/index.mjs} +3 -3
  55. package/{esm2015/services/types/required-checkout-data.type.js → esm2020/services/types/required-checkout-data.type.mjs} +2 -2
  56. package/{esm2015/services/types/required-checkout-subscription-data.type.js → esm2020/services/types/required-checkout-subscription-data.type.mjs} +2 -2
  57. package/esm2020/services/types/shipping-methods.type.mjs +2 -0
  58. package/esm2020/types/firebase-app-config.type.mjs +2 -0
  59. package/esm2020/types/index.mjs +2 -0
  60. package/fesm2015/infrab4a-connect-angular.mjs +2193 -0
  61. package/fesm2015/infrab4a-connect-angular.mjs.map +1 -0
  62. package/fesm2020/infrab4a-connect-angular.mjs +2125 -0
  63. package/fesm2020/infrab4a-connect-angular.mjs.map +1 -0
  64. package/helpers/index.d.ts +1 -0
  65. package/helpers/mobile-operation-system-checker.helper.d.ts +3 -0
  66. package/index.d.ts +5 -5
  67. package/package.json +25 -13
  68. package/services/auth.service.d.ts +18 -19
  69. package/services/cart.service.d.ts +42 -35
  70. package/services/catalog/adapters/category-structure.adapter.d.ts +4 -0
  71. package/services/catalog/adapters/index.d.ts +3 -0
  72. package/services/catalog/adapters/new-category-structure.adapter.d.ts +14 -0
  73. package/services/catalog/adapters/old-category-structure.adapter.d.ts +10 -0
  74. package/services/catalog/catalog.service.d.ts +80 -0
  75. package/services/catalog/category.service.d.ts +15 -0
  76. package/services/catalog/enums/index.d.ts +1 -0
  77. package/services/catalog/enums/product-sorts.enum.d.ts +9 -0
  78. package/services/catalog/index.d.ts +6 -0
  79. package/services/catalog/models/category-with-tree.model.d.ts +4 -0
  80. package/services/catalog/models/index.d.ts +1 -0
  81. package/services/catalog/types/index.d.ts +1 -0
  82. package/services/catalog/types/product-sort.type.d.ts +2 -0
  83. package/services/catalog/wishlist.service.d.ts +22 -0
  84. package/services/checkout-subscription.service.d.ts +18 -18
  85. package/services/checkout.service.d.ts +23 -23
  86. package/services/coupon.service.d.ts +28 -26
  87. package/services/helpers/index.d.ts +1 -0
  88. package/services/helpers/util.helper.d.ts +3 -0
  89. package/services/home-shop.service.d.ts +25 -25
  90. package/services/index.d.ts +10 -8
  91. package/services/order.service.d.ts +13 -13
  92. package/services/shipping.service.d.ts +19 -19
  93. package/services/types/index.d.ts +2 -2
  94. package/services/types/required-checkout-data.type.d.ts +2 -2
  95. package/services/types/required-checkout-subscription-data.type.d.ts +2 -2
  96. package/services/types/shipping-methods.type.d.ts +12 -12
  97. package/types/firebase-app-config.type.d.ts +1 -0
  98. package/types/index.d.ts +1 -0
  99. package/bundles/infrab4a-connect-angular.umd.js +0 -1978
  100. package/bundles/infrab4a-connect-angular.umd.js.map +0 -1
  101. package/esm2015/angular-connect.module.js +0 -52
  102. package/esm2015/angular-elastic-search.module.js +0 -38
  103. package/esm2015/angular-firebase-auth.module.js +0 -113
  104. package/esm2015/angular-firestore.module.js +0 -366
  105. package/esm2015/angular-hasura-graphql.module.js +0 -90
  106. package/esm2015/consts/index.js +0 -5
  107. package/esm2015/index.js +0 -6
  108. package/esm2015/services/auth.service.js +0 -42
  109. package/esm2015/services/cart.service.js +0 -148
  110. package/esm2015/services/checkout-subscription.service.js +0 -51
  111. package/esm2015/services/checkout.service.js +0 -75
  112. package/esm2015/services/coupon.service.js +0 -266
  113. package/esm2015/services/errors/group-invalid-coupon.error.js +0 -8
  114. package/esm2015/services/errors/index.js +0 -3
  115. package/esm2015/services/errors/invalid-coupon.error.js +0 -8
  116. package/esm2015/services/home-shop.service.js +0 -116
  117. package/esm2015/services/index.js +0 -9
  118. package/esm2015/services/order.service.js +0 -32
  119. package/esm2015/services/shipping.service.js +0 -99
  120. package/esm2015/services/types/shipping-methods.type.js +0 -2
  121. package/fesm2015/infrab4a-connect-angular.js +0 -1432
  122. package/fesm2015/infrab4a-connect-angular.js.map +0 -1
  123. package/infrab4a-connect-angular.d.ts +0 -5
  124. package/services/errors/group-invalid-coupon.error.d.ts +0 -6
  125. package/services/errors/index.d.ts +0 -2
  126. package/services/errors/invalid-coupon.error.d.ts +0 -5
@@ -1,2 +1,2 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVxdWlyZWQtY2hlY2tvdXQtc3Vic2NyaXB0aW9uLWRhdGEudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nvbm5lY3QtYW5ndWxhci9zcmMvc2VydmljZXMvdHlwZXMvcmVxdWlyZWQtY2hlY2tvdXQtc3Vic2NyaXB0aW9uLWRhdGEudHlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hlY2tvdXRTdWJzY3JpcHRpb24gfSBmcm9tICdAaW5mcmFiNGEvY29ubmVjdCdcclxuXHJcbmV4cG9ydCB0eXBlIFJlcXVpcmVkQ2hlY2tvdXRTdWJzY3JpcHRpb25EYXRhID0gUGFydGlhbDxQaWNrPENoZWNrb3V0U3Vic2NyaXB0aW9uLCAnaWQnPj5cclxuIl19
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==