account-lookup-service 17.0.3 → 17.1.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.
Files changed (118) hide show
  1. package/.circleci/config.yml +2 -1
  2. package/CHANGELOG.md +17 -0
  3. package/jest.config.js +1 -0
  4. package/migrations/01_currency.js +5 -5
  5. package/migrations/02_endpointType.js +5 -5
  6. package/migrations/03_endpointType-indexes.js +5 -5
  7. package/migrations/04_partyIdType.js +5 -5
  8. package/migrations/05_partyIdType-indexes.js +5 -5
  9. package/migrations/08_oracleEndpoint.js +5 -5
  10. package/migrations/09_oracleEndpoint-indexes.js +5 -5
  11. package/migrations/10_oracleEndpoint-remove-constraints.js +5 -5
  12. package/package.json +8 -8
  13. package/seeds/currency.js +5 -5
  14. package/seeds/endpointType.js +4 -4
  15. package/seeds/partyIdType.js +4 -4
  16. package/src/api/endpointcache.js +4 -4
  17. package/src/api/health.js +4 -4
  18. package/src/api/index.js +4 -4
  19. package/src/api/oracles/{ID}.js +31 -6
  20. package/src/api/oracles.js +33 -7
  21. package/src/api/participants/{ID}/error.js +5 -5
  22. package/src/api/participants/{ID}.js +5 -5
  23. package/src/api/participants/{Type}/{ID}/error.js +22 -6
  24. package/src/api/participants/{Type}/{ID}/{SubId}/error.js +5 -5
  25. package/src/api/participants/{Type}/{ID}/{SubId}.js +99 -5
  26. package/src/api/participants/{Type}/{ID}.js +83 -10
  27. package/src/api/participants.js +19 -6
  28. package/src/api/parties/{Type}/{ID}/error.js +20 -6
  29. package/src/api/parties/{Type}/{ID}/{SubId}/error.js +32 -7
  30. package/src/api/parties/{Type}/{ID}/{SubId}.js +55 -7
  31. package/src/api/parties/{Type}/{ID}.js +37 -10
  32. package/src/api/routes.js +5 -5
  33. package/src/domain/oracle/index.js +5 -5
  34. package/src/domain/oracle/oracle.js +6 -6
  35. package/src/domain/participants/index.js +5 -5
  36. package/src/domain/participants/participants.js +5 -5
  37. package/src/domain/parties/getPartiesByTypeAndID.js +5 -5
  38. package/src/domain/parties/index.js +5 -5
  39. package/src/domain/parties/parties.js +5 -5
  40. package/src/domain/timeout/dto.js +14 -2
  41. package/src/domain/timeout/index.js +3 -3
  42. package/src/handlers/TimeoutHandler.js +3 -3
  43. package/src/handlers/index.js +3 -3
  44. package/src/handlers/register.js +3 -3
  45. package/src/index.js +4 -4
  46. package/src/interface/admin-swagger.yaml +4 -0
  47. package/src/interface/admin_swagger.json +902 -900
  48. package/src/interface/api_swagger.json +2824 -2824
  49. package/src/interface/thirdparty/admin-swagger.yaml +2 -2
  50. package/src/interface/thirdparty/admin_swagger.json +902 -902
  51. package/src/interface/thirdparty/api_swagger.json +2917 -2917
  52. package/src/lib/argv.js +5 -5
  53. package/src/lib/cache.js +5 -5
  54. package/src/lib/config.js +5 -5
  55. package/src/lib/db.js +5 -5
  56. package/src/lib/headers.js +5 -5
  57. package/src/lib/healthCheck/subServiceHealth.js +5 -5
  58. package/src/models/currency/currency.js +5 -5
  59. package/src/models/currency/index.js +5 -5
  60. package/src/models/endpointType/endpointType.js +5 -5
  61. package/src/models/endpointType/index.js +5 -5
  62. package/src/models/misc/migrationLock.js +5 -5
  63. package/src/models/oracle/facade.js +5 -5
  64. package/src/models/oracle/index.js +5 -5
  65. package/src/models/oracle/oracleEndpoint.js +5 -5
  66. package/src/models/oracle/oracleEndpointCached.js +5 -5
  67. package/src/models/participantEndpoint/facade.js +5 -5
  68. package/src/models/partyIdType/index.js +5 -5
  69. package/src/models/partyIdType/partyIdType.js +5 -5
  70. package/src/plugins.js +4 -4
  71. package/src/server.js +4 -4
  72. package/test/integration/api/parties.test.js +5 -5
  73. package/test/integration/domain/oracle/index.test.js +5 -5
  74. package/test/integration/models/currency/currency.test.js +5 -5
  75. package/test/integration/plugins.test.js +5 -5
  76. package/test/unit/api/health.test.js +5 -5
  77. package/test/unit/api/oracles/{ID}.test.js +5 -5
  78. package/test/unit/api/oracles.test.js +5 -5
  79. package/test/unit/api/participants/participants.test.js +5 -5
  80. package/test/unit/api/participants/{Type}/{ID}/error.test.js +7 -5
  81. package/test/unit/api/participants/{Type}/{ID}/{SubId}/error.test.js +5 -5
  82. package/test/unit/api/participants/{Type}/{ID}/{SubId}.test.js +5 -5
  83. package/test/unit/api/participants/{Type}/{ID}.test.js +5 -5
  84. package/test/unit/api/participants.test.js +5 -5
  85. package/test/unit/api/parties/endpointcache.test.js +5 -5
  86. package/test/unit/api/parties/parties.test.js +5 -5
  87. package/test/unit/api/parties/{Type}/{ID}/error.test.js +8 -6
  88. package/test/unit/api/parties/{Type}/{ID}/{SubId}/error.test.js +15 -5
  89. package/test/unit/api/parties/{Type}/{ID}/{SubId}.test.js +5 -5
  90. package/test/unit/api/parties/{Type}/{ID}.test.js +5 -5
  91. package/test/unit/domain/oracle/oracle.test.js +5 -5
  92. package/test/unit/domain/participants/participants.test.js +5 -5
  93. package/test/unit/domain/parties/parties.test.js +5 -5
  94. package/test/unit/domain/parties/utils.test.js +5 -5
  95. package/test/unit/domain/timeout/index.test.js +3 -3
  96. package/test/unit/handlers/TimeoutHandler.test.js +3 -3
  97. package/test/unit/handlers/index.test.js +3 -3
  98. package/test/unit/handlers/register.test.js +3 -3
  99. package/test/unit/index.test.js +5 -5
  100. package/test/unit/iso20022/partiesValidation.test.js +5 -5
  101. package/test/unit/lib/argv.test.js +5 -5
  102. package/test/unit/lib/config.test.js +5 -5
  103. package/test/unit/lib/healthCheck/subServiceHealth.test.js +5 -5
  104. package/test/unit/lib/migrator.test.js +5 -5
  105. package/test/unit/lib/util.test.js +5 -5
  106. package/test/unit/mocks.js +3 -3
  107. package/test/unit/models/currency/currency.test.js +5 -5
  108. package/test/unit/models/endpointType/endpointType.test.js +5 -5
  109. package/test/unit/models/misc/migrationLock.test.js +5 -5
  110. package/test/unit/models/oracle/facade.test.js +5 -5
  111. package/test/unit/models/oracle/oracleEndpoint.test.js +5 -5
  112. package/test/unit/models/oracle/oracleEndpointCached.test.js +5 -5
  113. package/test/unit/models/participantEndpoint/facade.test.js +5 -5
  114. package/test/unit/models/partyIdType/partyIdType.test.js +5 -5
  115. package/test/unit/plugins.test.js +5 -5
  116. package/test/util/helper.js +5 -5
  117. package/test/util/mockgen.js +5 -5
  118. package/test/util/testConfig.js +5 -5
@@ -539,8 +539,8 @@ components:
539
539
  Another example of an alias is a username in the FSP system. The ALIAS identifier
540
540
  can be in any format. It is also possible to use the PartySubIdOrType element
541
541
  for identifying an account under an Alias defined by the PartyIdentifier.
542
- - CONSENT - TBD
543
- - THIRD_PARTY_LINK - TBD
542
+ - CONSENT - Third party CONSENT oracle
543
+ - THIRD_PARTY_LINK - Third party link
544
544
  enum:
545
545
  - MSISDN
546
546
  - EMAIL