@heliofi/common 0.2.320 → 0.2.322
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/dist/src/domain/constants/refundRecipientErrorType.d.ts +1 -0
- package/dist/src/domain/constants/refundRecipientErrorType.js +11 -1
- package/dist/src/domain/constants/refundRecipientErrorType.js.map +1 -1
- package/dist/src/domain/model/blockchainEngine/constants/evmEngines.d.ts +3 -0
- package/dist/src/domain/model/blockchainEngine/constants/evmEngines.js +12 -0
- package/dist/src/domain/model/blockchainEngine/constants/evmEngines.js.map +1 -0
- package/dist/src/domain/model/blockchainEngine/constants/index.d.ts +1 -0
- package/dist/src/domain/model/blockchainEngine/constants/index.js +1 -0
- package/dist/src/domain/model/blockchainEngine/constants/index.js.map +1 -1
- package/dist/src/domain/model/company/entities/CompanyWithFirstParty.entity.d.ts +4 -0
- package/dist/src/domain/model/company/entities/CompanyWithFirstParty.entity.js +8 -0
- package/dist/src/domain/model/company/entities/CompanyWithFirstParty.entity.js.map +1 -0
- package/dist/src/domain/model/company/entities/index.d.ts +1 -0
- package/dist/src/domain/model/company/entities/index.js +1 -0
- package/dist/src/domain/model/company/entities/index.js.map +1 -1
- package/dist/src/domain/model/feature-flags/entities/BetaFeature.entity.d.ts +2 -1
- package/dist/src/domain/model/feature-flags/entities/BetaFeature.entity.js +1 -0
- package/dist/src/domain/model/feature-flags/entities/BetaFeature.entity.js.map +1 -1
- package/dist/src/domain/services/PublicKeyService.d.ts +1 -1
- package/dist/src/domain/services/PublicKeyService.js +11 -7
- package/dist/src/domain/services/PublicKeyService.js.map +1 -1
- package/dist/src/domain/services/RefundRecipientService/RefundRecipientService.d.ts +9 -0
- package/dist/src/domain/services/RefundRecipientService/RefundRecipientService.js +35 -0
- package/dist/src/domain/services/RefundRecipientService/RefundRecipientService.js.map +1 -0
- package/dist/src/domain/services/RefundRecipientService/RefundRecipientService.spec.d.ts +1 -0
- package/dist/src/domain/services/RefundRecipientService/RefundRecipientService.spec.js +99 -0
- package/dist/src/domain/services/RefundRecipientService/RefundRecipientService.spec.js.map +1 -0
- package/dist/src/domain/services/RefundRecipientService/index.d.ts +2 -0
- package/dist/src/domain/services/RefundRecipientService/index.js +19 -0
- package/dist/src/domain/services/RefundRecipientService/index.js.map +1 -0
- package/dist/src/domain/services/RefundRecipientService/types.d.ts +9 -0
- package/dist/src/domain/services/RefundRecipientService/types.js +3 -0
- package/dist/src/domain/services/RefundRecipientService/types.js.map +1 -0
- package/dist/src/domain/services/index.d.ts +1 -0
- package/dist/src/domain/services/index.js +1 -0
- package/dist/src/domain/services/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/common",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.322",
|
|
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": "
|
|
35
|
+
"gitHead": "96c9f2ec7aebbee9aae9726cfa01471be034f33b"
|
|
36
36
|
}
|