@infrab4a/connect 0.7.7 → 0.8.0-beta.0

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.
@@ -1884,6 +1884,17 @@
1884
1884
  return Buy2WinFirestoreRepository;
1885
1885
  }(withCrudFirestore(withHelpers(withFirestore(Base)))));
1886
1886
 
1887
+ var LegacyOrderFirestoreRepository = /** @class */ (function (_super) {
1888
+ __extends(LegacyOrderFirestoreRepository, _super);
1889
+ function LegacyOrderFirestoreRepository(firestore) {
1890
+ var _this = _super.call(this, firestore) || this;
1891
+ _this.firestore = firestore;
1892
+ _this.collectionName = 'legacyOrders';
1893
+ return _this;
1894
+ }
1895
+ return LegacyOrderFirestoreRepository;
1896
+ }(OrderFirestoreRepository));
1897
+
1887
1898
  var HomeFirestoreRepository = /** @class */ (function (_super) {
1888
1899
  __extends(HomeFirestoreRepository, _super);
1889
1900
  function HomeFirestoreRepository(firestore) {
@@ -2005,6 +2016,7 @@
2005
2016
  exports.Home = Home;
2006
2017
  exports.HomeFirestoreRepository = HomeFirestoreRepository;
2007
2018
  exports.InvalidArgumentError = InvalidArgumentError;
2019
+ exports.LegacyOrderFirestoreRepository = LegacyOrderFirestoreRepository;
2008
2020
  exports.LineItem = LineItem;
2009
2021
  exports.NotFoundError = NotFoundError;
2010
2022
  exports.Order = Order;