@heliofi/common 0.2.56 → 0.2.57

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.
@@ -27,3 +27,4 @@ export * from './countryCode';
27
27
  export * from './theme';
28
28
  export * from './nftType';
29
29
  export * from './redirectQueryParams.enum';
30
+ export * from './onrampTransactionStatus';
@@ -43,4 +43,5 @@ __exportStar(require("./countryCode"), exports);
43
43
  __exportStar(require("./theme"), exports);
44
44
  __exportStar(require("./nftType"), exports);
45
45
  __exportStar(require("./redirectQueryParams.enum"), exports);
46
+ __exportStar(require("./onrampTransactionStatus"), exports);
46
47
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,mDAAiC;AACjC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,mDAAiC;AACjC,qDAAmC;AACnC,8CAA4B;AAC5B,qEAAmD;AACnD,mDAAiC;AACjC,gDAA8B;AAC9B,2CAAyB;AACzB,2CAAyB;AACzB,kDAAgC;AAChC,4DAA0C;AAC1C,yDAAuC;AACvC,6CAA2B;AAC3B,2CAAyB;AACzB,uDAAqC;AACrC,6CAA2B;AAC3B,6DAA2C;AAC3C,2CAAyB;AACzB,oDAAkC;AAClC,6CAA2B;AAC3B,kDAAgC;AAChC,gDAA8B;AAC9B,0CAAwB;AACxB,4CAA0B;AAC1B,6DAA2C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,mDAAiC;AACjC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,mDAAiC;AACjC,qDAAmC;AACnC,8CAA4B;AAC5B,qEAAmD;AACnD,mDAAiC;AACjC,gDAA8B;AAC9B,2CAAyB;AACzB,2CAAyB;AACzB,kDAAgC;AAChC,4DAA0C;AAC1C,yDAAuC;AACvC,6CAA2B;AAC3B,2CAAyB;AACzB,uDAAqC;AACrC,6CAA2B;AAC3B,6DAA2C;AAC3C,2CAAyB;AACzB,oDAAkC;AAClC,6CAA2B;AAC3B,kDAAgC;AAChC,gDAA8B;AAC9B,0CAAwB;AACxB,4CAA0B;AAC1B,6DAA2C;AAC3C,4DAA0C"}
@@ -0,0 +1,9 @@
1
+ export declare enum OnrampTransactionStatus {
2
+ IN_PROGRESS = "in_progress",
3
+ PENDING = "pending",
4
+ COMPLETED = "completed",
5
+ FAILED = "failed",
6
+ CANCELED = "canceled",
7
+ PAID = "paid",
8
+ NEW = "new"
9
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OnrampTransactionStatus = void 0;
4
+ var OnrampTransactionStatus;
5
+ (function (OnrampTransactionStatus) {
6
+ OnrampTransactionStatus["IN_PROGRESS"] = "in_progress";
7
+ OnrampTransactionStatus["PENDING"] = "pending";
8
+ OnrampTransactionStatus["COMPLETED"] = "completed";
9
+ OnrampTransactionStatus["FAILED"] = "failed";
10
+ OnrampTransactionStatus["CANCELED"] = "canceled";
11
+ OnrampTransactionStatus["PAID"] = "paid";
12
+ OnrampTransactionStatus["NEW"] = "new";
13
+ })(OnrampTransactionStatus = exports.OnrampTransactionStatus || (exports.OnrampTransactionStatus = {}));
14
+ //# sourceMappingURL=onrampTransactionStatus.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onrampTransactionStatus.js","sourceRoot":"","sources":["../../../../src/domain/constants/onrampTransactionStatus.ts"],"names":[],"mappings":";;;AAAA,IAAY,uBAQX;AARD,WAAY,uBAAuB;IACjC,sDAA2B,CAAA;IAC3B,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;IACvB,4CAAiB,CAAA;IACjB,gDAAqB,CAAA;IACrB,wCAAa,CAAA;IACb,sCAAW,CAAA;AACb,CAAC,EARW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAQlC"}
@@ -0,0 +1,5 @@
1
+ export declare class BaseOnrampTransaction {
2
+ transactionId: string;
3
+ status: string;
4
+ walletAddress: string;
5
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BaseOnrampTransaction = void 0;
4
+ class BaseOnrampTransaction {
5
+ }
6
+ exports.BaseOnrampTransaction = BaseOnrampTransaction;
7
+ //# sourceMappingURL=BaseOnrampTransaction.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseOnrampTransaction.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/onramp/entities/BaseOnrampTransaction.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,qBAAqB;CAMjC;AAND,sDAMC"}
@@ -1,12 +1,11 @@
1
- export declare class OnrampTransaction {
2
- status: string;
1
+ import { BaseOnrampTransaction } from './BaseOnrampTransaction.entity';
2
+ export declare class OnrampTransaction extends BaseOnrampTransaction {
3
3
  onramp: string;
4
4
  source: string;
5
5
  destination: string;
6
6
  amount: number;
7
7
  paymentMethod: string;
8
8
  network: string;
9
- walletAddress: string;
10
9
  redirectType: 'iframe' | 'popup';
11
10
  redirectUrl: string;
12
11
  }
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OnrampTransaction = void 0;
4
- class OnrampTransaction {
4
+ const BaseOnrampTransaction_entity_1 = require("./BaseOnrampTransaction.entity");
5
+ class OnrampTransaction extends BaseOnrampTransaction_entity_1.BaseOnrampTransaction {
5
6
  }
6
7
  exports.OnrampTransaction = OnrampTransaction;
7
8
  //# sourceMappingURL=OnrampTransaction.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"OnrampTransaction.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/onramp/entities/OnrampTransaction.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,iBAAiB;CAoB7B;AApBD,8CAoBC"}
1
+ {"version":3,"file":"OnrampTransaction.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/onramp/entities/OnrampTransaction.entity.ts"],"names":[],"mappings":";;;AAAA,iFAAuE;AAEvE,MAAa,iBAAkB,SAAQ,oDAAqB;CAgB3D;AAhBD,8CAgBC"}
@@ -0,0 +1,5 @@
1
+ export declare class OnrampTransactionStatus {
2
+ transactionId: string;
3
+ status: string;
4
+ walletAddress: string;
5
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OnrampTransactionStatus = void 0;
4
+ class OnrampTransactionStatus {
5
+ }
6
+ exports.OnrampTransactionStatus = OnrampTransactionStatus;
7
+ //# sourceMappingURL=OnrampTransactionStatus.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OnrampTransactionStatus.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/onramp/entities/OnrampTransactionStatus.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,uBAAuB;CAMnC;AAND,0DAMC"}
@@ -1,3 +1,4 @@
1
1
  export * from './OnrampPaymentMethod.entity';
2
2
  export * from './OnrampQuote.entity';
3
3
  export * from './OnrampTransaction.entity';
4
+ export * from './BaseOnrampTransaction.entity';
@@ -17,4 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./OnrampPaymentMethod.entity"), exports);
18
18
  __exportStar(require("./OnrampQuote.entity"), exports);
19
19
  __exportStar(require("./OnrampTransaction.entity"), exports);
20
+ __exportStar(require("./BaseOnrampTransaction.entity"), exports);
20
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/onramp/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,uDAAqC;AACrC,6DAA2C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/onramp/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,uDAAqC;AACrC,6DAA2C;AAC3C,iEAA+C"}