@heliofi/common 0.2.252-alpha.1780490132 → 0.2.253

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 (56) hide show
  1. package/dist/src/domain/model/broadcast/broadcast.spec.js +2 -1
  2. package/dist/src/domain/model/broadcast/broadcast.spec.js.map +1 -1
  3. package/dist/src/domain/model/broadcast/constants/BroadcastErrorCode.d.ts +2 -1
  4. package/dist/src/domain/model/broadcast/constants/BroadcastErrorCode.js +1 -0
  5. package/dist/src/domain/model/broadcast/constants/BroadcastErrorCode.js.map +1 -1
  6. package/dist/src/domain/model/broadcast/constants/SignedTransactionKind.js.map +1 -1
  7. package/dist/src/domain/model/deposit-wallet-incoming-transaction/entities/DepositWalletIncomingTransaction.entity.d.ts +1 -0
  8. package/dist/src/domain/model/deposit-wallet-incoming-transaction/entities/DepositWalletIncomingTransaction.entity.js.map +1 -1
  9. package/dist/src/domain/model/index.d.ts +0 -1
  10. package/dist/src/domain/model/index.js +0 -1
  11. package/dist/src/domain/model/index.js.map +1 -1
  12. package/dist/src/domain/model/on-ramps/dtos/getMoonPayPlatformQuote.dto.d.ts +6 -0
  13. package/dist/src/domain/model/on-ramps/dtos/getMoonPayPlatformQuote.dto.js +39 -0
  14. package/dist/src/domain/model/on-ramps/dtos/getMoonPayPlatformQuote.dto.js.map +1 -0
  15. package/dist/src/domain/model/on-ramps/dtos/index.d.ts +1 -0
  16. package/dist/src/domain/model/on-ramps/dtos/index.js +1 -0
  17. package/dist/src/domain/model/on-ramps/dtos/index.js.map +1 -1
  18. package/dist/src/domain/model/on-ramps/entities/MoonPayPlatformQuote.entity.d.ts +11 -0
  19. package/dist/src/domain/model/on-ramps/entities/MoonPayPlatformQuote.entity.js +8 -0
  20. package/dist/src/domain/model/on-ramps/entities/MoonPayPlatformQuote.entity.js.map +1 -0
  21. package/dist/src/domain/model/on-ramps/entities/index.d.ts +1 -0
  22. package/dist/src/domain/model/on-ramps/entities/index.js +1 -0
  23. package/dist/src/domain/model/on-ramps/entities/index.js.map +1 -1
  24. package/dist/src/domain/model/withdraw/constants/WithdrawState.d.ts +1 -0
  25. package/dist/src/domain/model/withdraw/constants/WithdrawState.js +1 -0
  26. package/dist/src/domain/model/withdraw/constants/WithdrawState.js.map +1 -1
  27. package/dist/src/domain/model/withdraw/dtos/index.d.ts +4 -0
  28. package/dist/src/domain/model/withdraw/dtos/index.js +4 -0
  29. package/dist/src/domain/model/withdraw/dtos/index.js.map +1 -1
  30. package/dist/src/domain/model/withdraw/dtos/preparedTransaction.dto.d.ts +19 -0
  31. package/dist/src/domain/model/withdraw/dtos/preparedTransaction.dto.js +3 -0
  32. package/dist/src/domain/model/withdraw/dtos/preparedTransaction.dto.js.map +1 -0
  33. package/dist/src/domain/model/withdraw/dtos/preparedWithdrawResponse.dto.d.ts +2 -2
  34. package/dist/src/domain/model/withdraw/dtos/submitWithdraw.dto.d.ts +5 -0
  35. package/dist/src/domain/model/withdraw/dtos/submitWithdraw.dto.js +28 -0
  36. package/dist/src/domain/model/withdraw/dtos/submitWithdraw.dto.js.map +1 -0
  37. package/dist/src/domain/model/withdraw/dtos/submitWithdrawResponse.dto.d.ts +8 -0
  38. package/dist/src/domain/model/withdraw/dtos/submitWithdrawResponse.dto.js +7 -0
  39. package/dist/src/domain/model/withdraw/dtos/submitWithdrawResponse.dto.js.map +1 -0
  40. package/dist/src/domain/model/withdraw/dtos/submitWithdrawSignedTx.dto.d.ts +5 -0
  41. package/dist/src/domain/model/withdraw/dtos/submitWithdrawSignedTx.dto.js +29 -0
  42. package/dist/src/domain/model/withdraw/dtos/submitWithdrawSignedTx.dto.js.map +1 -0
  43. package/dist/src/domain/model/withdraw/preparedTransaction.spec.d.ts +1 -0
  44. package/dist/src/domain/model/withdraw/preparedTransaction.spec.js +79 -0
  45. package/dist/src/domain/model/withdraw/preparedTransaction.spec.js.map +1 -0
  46. package/dist/tsconfig.tsbuildinfo +1 -1
  47. package/package.json +2 -2
  48. package/dist/src/domain/model/intercom-identity/entities/IntercomIdentityHash.entity.d.ts +0 -3
  49. package/dist/src/domain/model/intercom-identity/entities/IntercomIdentityHash.entity.js +0 -7
  50. package/dist/src/domain/model/intercom-identity/entities/IntercomIdentityHash.entity.js.map +0 -1
  51. package/dist/src/domain/model/intercom-identity/entities/index.d.ts +0 -1
  52. package/dist/src/domain/model/intercom-identity/entities/index.js +0 -18
  53. package/dist/src/domain/model/intercom-identity/entities/index.js.map +0 -1
  54. package/dist/src/domain/model/intercom-identity/index.d.ts +0 -1
  55. package/dist/src/domain/model/intercom-identity/index.js +0 -18
  56. package/dist/src/domain/model/intercom-identity/index.js.map +0 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heliofi/common",
3
3
  "private": false,
4
- "version": "0.2.252-alpha.1780490132",
4
+ "version": "0.2.253",
5
5
  "description": "Common package",
6
6
  "main": "dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -32,5 +32,5 @@
32
32
  "peerDependencies": {
33
33
  "typescript": "5.*"
34
34
  },
35
- "gitHead": "321b94d9609605d9e88503d82d28319f71722482"
35
+ "gitHead": "508335c3a996ee2fecf613cf296574777dcee43e"
36
36
  }
@@ -1,3 +0,0 @@
1
- export declare class IntercomIdentityHash {
2
- userHash: string;
3
- }
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IntercomIdentityHash = void 0;
4
- class IntercomIdentityHash {
5
- }
6
- exports.IntercomIdentityHash = IntercomIdentityHash;
7
- //# sourceMappingURL=IntercomIdentityHash.entity.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IntercomIdentityHash.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/intercom-identity/entities/IntercomIdentityHash.entity.ts"],"names":[],"mappings":";;;AAAA,MAAa,oBAAoB;CAEhC;AAFD,oDAEC"}
@@ -1 +0,0 @@
1
- export * from './IntercomIdentityHash.entity';
@@ -1,18 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./IntercomIdentityHash.entity"), exports);
18
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/intercom-identity/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA8C"}
@@ -1 +0,0 @@
1
- export * from './entities';
@@ -1,18 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./entities"), exports);
18
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/domain/model/intercom-identity/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B"}