@fiado/api-invoker 1.1.8 → 1.1.10

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 (98) hide show
  1. package/README.md +64 -64
  2. package/bin/activity-business/ActivityApi.d.ts +10 -0
  3. package/bin/activity-business/ActivityApi.js +32 -0
  4. package/bin/activity-business/index.d.ts +2 -0
  5. package/bin/activity-business/index.js +18 -0
  6. package/bin/activity-business/interfaces/IActivityApi.d.ts +5 -0
  7. package/bin/activity-business/interfaces/IActivityApi.js +2 -0
  8. package/bin/activity-business/queue/ActivityPublisher.d.ts +6 -0
  9. package/bin/activity-business/queue/ActivityPublisher.js +35 -0
  10. package/bin/activity-business/queue/IActivityPublisher.d.ts +4 -0
  11. package/bin/activity-business/queue/IActivityPublisher.js +2 -0
  12. package/package.json +28 -28
  13. package/src/account-beneficiary/AccountBeneficiaryApi.ts +18 -18
  14. package/src/account-beneficiary/index.ts +2 -2
  15. package/src/account-beneficiary/interfaces/IAccountBeneficiaryApi.ts +7 -7
  16. package/src/account-fiadoinc/AccountFiadoIncApi.ts +60 -60
  17. package/src/account-fiadoinc/index.ts +1 -1
  18. package/src/account-fiadoinc/interfaces/IAccountFiadoIncApi.ts +29 -29
  19. package/src/account-fiadosa/AccountFiadoSAApi.ts +22 -22
  20. package/src/account-fiadosa/index.ts +1 -1
  21. package/src/account-fiadosa/interfaces/IAccountFiadoSAApi.ts +9 -9
  22. package/src/account-pagoconfiado/AccountPagoConfiadoApi.ts +27 -27
  23. package/src/account-pagoconfiado/index.ts +2 -2
  24. package/src/account-pagoconfiado/interfaces/IAccountPagoConfiadoApi.ts +8 -8
  25. package/src/activity-business/ActivityApi.ts +21 -0
  26. package/src/activity-business/index.ts +4 -0
  27. package/src/activity-business/interfaces/IActivityApi.ts +9 -0
  28. package/src/activity-business/queue/ActivityPublisher.ts +27 -0
  29. package/src/activity-business/queue/IActivityPublisher.ts +7 -0
  30. package/src/address/AddressApi.ts +46 -46
  31. package/src/address/index.ts +3 -3
  32. package/src/address/interfaces/IAddressApi.ts +30 -30
  33. package/src/authentication/AuthenticationApi.ts +16 -16
  34. package/src/authentication/index.ts +4 -4
  35. package/src/authentication/interfaces/IAuthenticationApi.ts +5 -5
  36. package/src/bankAccount/BankAccountApi.ts +37 -37
  37. package/src/bankAccount/index.ts +1 -1
  38. package/src/bankAccount/interfaces/IBankAccountApi.ts +4 -4
  39. package/src/bbvaRst/api/BBVARstApi.ts +16 -16
  40. package/src/bbvaRst/api/interfaces/IBBVARstApi.ts +4 -4
  41. package/src/bbvaRst/index.ts +1 -1
  42. package/src/card/CardApi.ts +33 -33
  43. package/src/card/index.ts +3 -3
  44. package/src/card/interfaces/ICardApi.ts +10 -10
  45. package/src/collector/CollectorApi.ts +21 -21
  46. package/src/collector/index.ts +2 -2
  47. package/src/collector/interfaces/ICollectorApi.ts +19 -19
  48. package/src/container.config.ts +70 -70
  49. package/src/contract-generator/ContractGeneratorApi.ts +18 -18
  50. package/src/contract-generator/index.ts +2 -2
  51. package/src/contract-generator/interfaces/IContractGeneratorApi.ts +16 -16
  52. package/src/directory/DirectoryApi.ts +115 -115
  53. package/src/directory/index.ts +3 -3
  54. package/src/directory/interfaces/IDirectoryApi.ts +66 -66
  55. package/src/exchangeRates/ExchangeRatesApi.ts +27 -27
  56. package/src/exchangeRates/index.ts +1 -1
  57. package/src/exchangeRates/interfaces/IExchangeRatesApi.ts +8 -8
  58. package/src/fraudPreventionEngine/api/FraudPreventionEngineApi.ts +22 -22
  59. package/src/fraudPreventionEngine/api/interfaces/IFraudPreventionEngineApi.ts +7 -7
  60. package/src/fraudPreventionEngine/index.ts +1 -1
  61. package/src/group/GroupApi.ts +24 -24
  62. package/src/group/index.ts +1 -1
  63. package/src/group/interfaces/IGroupApi.ts +23 -23
  64. package/src/identity/IdentityApi.ts +47 -47
  65. package/src/identity/index.ts +3 -3
  66. package/src/identity/interfaces/IIdentityApi.ts +33 -33
  67. package/src/index.ts +25 -25
  68. package/src/notificationMessages/index.ts +1 -1
  69. package/src/notificationMessages/queue/NotificationMessagePublisher.ts +22 -22
  70. package/src/notificationMessages/queue/interfaces/INotificationMessagesPublisher.ts +4 -4
  71. package/src/p2pContact/api/P2pContactApi.ts +19 -19
  72. package/src/p2pContact/api/interfaces/IP2pContactApi.ts +4 -4
  73. package/src/p2pContact/index.ts +1 -1
  74. package/src/pomelo/api/PomeloApi.ts +99 -99
  75. package/src/pomelo/api/interfaces/IPomeloApi.ts +27 -27
  76. package/src/pomelo/index.ts +1 -1
  77. package/src/product-catalog/ProductCatalogApi.ts +17 -17
  78. package/src/product-catalog/index.ts +1 -1
  79. package/src/product-catalog/interfaces/IProductCatalogApi.ts +6 -6
  80. package/src/sessionActivity/index.ts +2 -2
  81. package/src/sessionActivity/queue/SessionActivityPublisher.ts +22 -22
  82. package/src/sessionActivity/queue/interfaces/ISessionActivityPublisher.ts +4 -4
  83. package/src/stpAccount/api/STPAccountApi.ts +102 -102
  84. package/src/stpAccount/api/interfaces/ISTPAccountApi.ts +6 -6
  85. package/src/stpAccount/index.ts +1 -1
  86. package/src/stpServicePayment/api/StpServicePaymentApi.ts +35 -35
  87. package/src/stpServicePayment/api/interfaces/IStpServicePaymentApi.ts +11 -11
  88. package/src/stpServicePayment/index.ts +1 -1
  89. package/src/stpSpei/api/StpSpeiApi.ts +20 -20
  90. package/src/stpSpei/api/interfaces/IStpSpeiApi.ts +4 -4
  91. package/src/stpSpei/index.ts +1 -1
  92. package/src/tern/api/TernApi.ts +96 -96
  93. package/src/tern/api/interfaces/ITernApi.ts +29 -29
  94. package/src/tern/index.ts +1 -1
  95. package/src/transaction/index.ts +2 -2
  96. package/src/transaction/queue/TransactionPublisher.ts +24 -24
  97. package/src/transaction/queue/interfaces/ITransactionPublisher.ts +4 -4
  98. package/tsconfig.json +21 -21
@@ -1,102 +1,102 @@
1
- import {ISTPAccountApi } from "./interfaces/ISTPAccountApi";
2
- import {inject, injectable} from "inversify";
3
- import {IHttpRequest} from "@fiado/http-client";
4
- import {CreateBankAccountRequest, CreateBankAccountUserRequest, UpdateBankAccountUserRequest} from "@fiado/type-kit/bin/account";
5
-
6
-
7
- @injectable()
8
- export default class PomeloApi implements ISTPAccountApi {
9
-
10
-
11
- private readonly baseUrl = process.env.STP_ACCOUNT_LAMBDA_URL || "";
12
-
13
- constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
14
- }
15
-
16
- //ACCOUNT
17
- // //USER
18
- async createAccount(request: CreateBankAccountRequest): Promise<any> {
19
- const url: string = `${this.baseUrl}account/create`;
20
- return await this.httpRequest.post(url, request);
21
- }
22
-
23
-
24
- // //USER
25
- // async createUser(request: CreateBankAccountUserRequest): Promise<any> {
26
- // const url: string = `${this.baseUrl}users/create`;
27
- // return await this.httpRequest.post(url, request);
28
- // }
29
-
30
- // public async getUserById(externalUserId: string): Promise<any> {
31
- // const url: string = `${this.baseUrl}users/${externalUserId}`;
32
- // return await this.httpRequest.get(url);
33
- // }
34
-
35
- // public async updateUser(object: UpdateBankAccountUserRequest): Promise<any> {
36
- // const url: string = `${this.baseUrl}/users/${object.id}`;
37
- // return await this.httpRequest.put(url, object);
38
- // }
39
-
40
- // //Card
41
- // public async getCardSensitiveInformation(externalCardId: string, externalUserId?: string): Promise<GetBankAccountSensitiveInformationOutput> {
42
- // const url: string = `${this.baseUrl}cards/${externalCardId}/sensitive?externalUserId=${externalUserId}`;
43
- // return await this.httpRequest.get(url);
44
- // }
45
-
46
- // public async getCardsById(externalCardId: string): Promise<GetBankAccountCardOutput> {
47
- // const url: string = `${this.baseUrl}cards?externalCardId=${externalCardId}`;
48
- // return await this.httpRequest.get(url);
49
- // }
50
-
51
- // public async getCardsByUserId(externalUserId: string): Promise<GetBankAccountCardOutput> {
52
- // const url: string = `${this.baseUrl}cards?externalUserId=${externalUserId}`;
53
- // return await this.httpRequest.get(url);
54
- // }
55
-
56
- // public async createCard(object: CreateBankAccountCardInput): Promise<CreateBankAccountCardOutput> {
57
- // const url: string = `${this.baseUrl}cards/create`;
58
- // return await this.httpRequest.post(url, object);
59
- // }
60
-
61
- // public async blockCard(object: UpdateBankAccountCardInput): Promise<UpdateBankAccountCardOutput> {
62
- // const url: string = `${this.baseUrl}cards/${object.cardId}/`;
63
- // return await this.httpRequest.put(url, object);
64
- // }
65
-
66
- // public async changePin(object: UpdateBankAccountCardInput): Promise<UpdateBankAccountCardOutput> {
67
- // const url: string = `${this.baseUrl}cards/${object.cardId}/`;
68
- // return await this.httpRequest.put(url, object);
69
- // }
70
-
71
- // public async activateCard(object: ActivateBankAccountCardInput): Promise<ActivateBankAccountCardOutput> {
72
- // const url: string = `${this.baseUrl}cards/activate`;
73
- // return await this.httpRequest.post(url, object);
74
- // }
75
-
76
- // public async updateCard(object: UpdateBankAccountCardInput): Promise<UpdateBankAccountCardOutput> {
77
- // const url: string = `${this.baseUrl}cards/${object.cardId}/`;
78
- // return await this.httpRequest.put(url, object);
79
- // }
80
-
81
-
82
- // //Shipping
83
-
84
- // public async createShipment(object: CreateBankAccountCardShippingInput): Promise<any> {
85
- // const url: string = `${this.baseUrl}shipment/create`;
86
- // return await this.httpRequest.post(url, object);
87
- // }
88
-
89
- // public async getShipment(object: GetBankAccountShippingInput): Promise<GetBankAccountShippingOutput> {
90
- // const url: string = `${this.baseUrl}shipment/${object.shippingId}`;
91
- // return await this.httpRequest.get(url);
92
- // }
93
-
94
- // public async replaceCardByExternalId(object: ExternalReplaceCardInput): Promise<ExternalReplaceCardOutput> {
95
- // const url: string = `${this.baseUrl}cards/${object.externalCardId}/replace`;
96
- // return await this.httpRequest.put(url, object);
97
- // }
98
-
99
-
100
-
101
-
102
- }
1
+ import {ISTPAccountApi } from "./interfaces/ISTPAccountApi";
2
+ import {inject, injectable} from "inversify";
3
+ import {IHttpRequest} from "@fiado/http-client";
4
+ import {CreateBankAccountRequest, CreateBankAccountUserRequest, UpdateBankAccountUserRequest} from "@fiado/type-kit/bin/account";
5
+
6
+
7
+ @injectable()
8
+ export default class PomeloApi implements ISTPAccountApi {
9
+
10
+
11
+ private readonly baseUrl = process.env.STP_ACCOUNT_LAMBDA_URL || "";
12
+
13
+ constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
14
+ }
15
+
16
+ //ACCOUNT
17
+ // //USER
18
+ async createAccount(request: CreateBankAccountRequest): Promise<any> {
19
+ const url: string = `${this.baseUrl}account/create`;
20
+ return await this.httpRequest.post(url, request);
21
+ }
22
+
23
+
24
+ // //USER
25
+ // async createUser(request: CreateBankAccountUserRequest): Promise<any> {
26
+ // const url: string = `${this.baseUrl}users/create`;
27
+ // return await this.httpRequest.post(url, request);
28
+ // }
29
+
30
+ // public async getUserById(externalUserId: string): Promise<any> {
31
+ // const url: string = `${this.baseUrl}users/${externalUserId}`;
32
+ // return await this.httpRequest.get(url);
33
+ // }
34
+
35
+ // public async updateUser(object: UpdateBankAccountUserRequest): Promise<any> {
36
+ // const url: string = `${this.baseUrl}/users/${object.id}`;
37
+ // return await this.httpRequest.put(url, object);
38
+ // }
39
+
40
+ // //Card
41
+ // public async getCardSensitiveInformation(externalCardId: string, externalUserId?: string): Promise<GetBankAccountSensitiveInformationOutput> {
42
+ // const url: string = `${this.baseUrl}cards/${externalCardId}/sensitive?externalUserId=${externalUserId}`;
43
+ // return await this.httpRequest.get(url);
44
+ // }
45
+
46
+ // public async getCardsById(externalCardId: string): Promise<GetBankAccountCardOutput> {
47
+ // const url: string = `${this.baseUrl}cards?externalCardId=${externalCardId}`;
48
+ // return await this.httpRequest.get(url);
49
+ // }
50
+
51
+ // public async getCardsByUserId(externalUserId: string): Promise<GetBankAccountCardOutput> {
52
+ // const url: string = `${this.baseUrl}cards?externalUserId=${externalUserId}`;
53
+ // return await this.httpRequest.get(url);
54
+ // }
55
+
56
+ // public async createCard(object: CreateBankAccountCardInput): Promise<CreateBankAccountCardOutput> {
57
+ // const url: string = `${this.baseUrl}cards/create`;
58
+ // return await this.httpRequest.post(url, object);
59
+ // }
60
+
61
+ // public async blockCard(object: UpdateBankAccountCardInput): Promise<UpdateBankAccountCardOutput> {
62
+ // const url: string = `${this.baseUrl}cards/${object.cardId}/`;
63
+ // return await this.httpRequest.put(url, object);
64
+ // }
65
+
66
+ // public async changePin(object: UpdateBankAccountCardInput): Promise<UpdateBankAccountCardOutput> {
67
+ // const url: string = `${this.baseUrl}cards/${object.cardId}/`;
68
+ // return await this.httpRequest.put(url, object);
69
+ // }
70
+
71
+ // public async activateCard(object: ActivateBankAccountCardInput): Promise<ActivateBankAccountCardOutput> {
72
+ // const url: string = `${this.baseUrl}cards/activate`;
73
+ // return await this.httpRequest.post(url, object);
74
+ // }
75
+
76
+ // public async updateCard(object: UpdateBankAccountCardInput): Promise<UpdateBankAccountCardOutput> {
77
+ // const url: string = `${this.baseUrl}cards/${object.cardId}/`;
78
+ // return await this.httpRequest.put(url, object);
79
+ // }
80
+
81
+
82
+ // //Shipping
83
+
84
+ // public async createShipment(object: CreateBankAccountCardShippingInput): Promise<any> {
85
+ // const url: string = `${this.baseUrl}shipment/create`;
86
+ // return await this.httpRequest.post(url, object);
87
+ // }
88
+
89
+ // public async getShipment(object: GetBankAccountShippingInput): Promise<GetBankAccountShippingOutput> {
90
+ // const url: string = `${this.baseUrl}shipment/${object.shippingId}`;
91
+ // return await this.httpRequest.get(url);
92
+ // }
93
+
94
+ // public async replaceCardByExternalId(object: ExternalReplaceCardInput): Promise<ExternalReplaceCardOutput> {
95
+ // const url: string = `${this.baseUrl}cards/${object.externalCardId}/replace`;
96
+ // return await this.httpRequest.put(url, object);
97
+ // }
98
+
99
+
100
+
101
+
102
+ }
@@ -1,7 +1,7 @@
1
- import {CreateBankAccountRequest, CreateBankAccountUserRequest, CreateBankAccountUserResponse, GetBankAccountUserRequest, GetBankAccountUserResponse, UpdateBankAccountUserRequest, UpdateBankAccountUserResponse} from "@fiado/type-kit/bin/account";
2
-
3
- export interface ISTPAccountApi {
4
- // updateUser(object: UpdateBankAccountUserRequest): Promise<any>
5
- // getUserById(externalUserId: string): Promise<any>
6
- createAccount(request: CreateBankAccountRequest): Promise<any>;
1
+ import {CreateBankAccountRequest, CreateBankAccountUserRequest, CreateBankAccountUserResponse, GetBankAccountUserRequest, GetBankAccountUserResponse, UpdateBankAccountUserRequest, UpdateBankAccountUserResponse} from "@fiado/type-kit/bin/account";
2
+
3
+ export interface ISTPAccountApi {
4
+ // updateUser(object: UpdateBankAccountUserRequest): Promise<any>
5
+ // getUserById(externalUserId: string): Promise<any>
6
+ createAccount(request: CreateBankAccountRequest): Promise<any>;
7
7
  }
@@ -1,2 +1,2 @@
1
- export * from './api/STPAccountApi';
1
+ export * from './api/STPAccountApi';
2
2
  export * from './api/interfaces/ISTPAccountApi';
@@ -1,36 +1,36 @@
1
- import {IStpServicePaymentApi} from "./interfaces/IStpServicePaymentApi";
2
- import {inject, injectable} from "inversify";
3
- import {IHttpRequest} from "@fiado/http-client";
4
- import {GetCatalogParams, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
5
- import {ApiGatewayResponse} from "@fiado/gateway-adapter";
6
-
7
- @injectable()
8
- export default class StpServicePaymentApi implements IStpServicePaymentApi {
9
- private readonly baseUrl = process.env.STP_SERVICE_PAY_LAMBDA_URL || "";
10
-
11
- constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
12
- }
13
-
14
- async pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>> {
15
- const url = `${this.baseUrl}/pay`;
16
- return await this.httpRequest.post(url, request);
17
- }
18
-
19
- async getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
20
- const url = `${this.baseUrl}/transaction/${transactionNumber}`;
21
- return await this.httpRequest.get(url);
22
- }
23
-
24
- async getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
25
- const url = `${this.baseUrl}/pay/validation/${transactionNumber}`;
26
- return await this.httpRequest.get(url);
27
- }
28
-
29
- async getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>> {
30
- let url = `${this.baseUrl}/catalog`;
31
- if (params) {
32
- url += `?${Object.keys(params).map(key => `${key}=${encodeURIComponent(params[key])}`).join('&')}`;
33
- }
34
- return await this.httpRequest.get(url);
35
- }
1
+ import {IStpServicePaymentApi} from "./interfaces/IStpServicePaymentApi";
2
+ import {inject, injectable} from "inversify";
3
+ import {IHttpRequest} from "@fiado/http-client";
4
+ import {GetCatalogParams, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
5
+ import {ApiGatewayResponse} from "@fiado/gateway-adapter";
6
+
7
+ @injectable()
8
+ export default class StpServicePaymentApi implements IStpServicePaymentApi {
9
+ private readonly baseUrl = process.env.STP_SERVICE_PAY_LAMBDA_URL || "";
10
+
11
+ constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
12
+ }
13
+
14
+ async pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>> {
15
+ const url = `${this.baseUrl}/pay`;
16
+ return await this.httpRequest.post(url, request);
17
+ }
18
+
19
+ async getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
20
+ const url = `${this.baseUrl}/transaction/${transactionNumber}`;
21
+ return await this.httpRequest.get(url);
22
+ }
23
+
24
+ async getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>> {
25
+ const url = `${this.baseUrl}/pay/validation/${transactionNumber}`;
26
+ return await this.httpRequest.get(url);
27
+ }
28
+
29
+ async getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>> {
30
+ let url = `${this.baseUrl}/catalog`;
31
+ if (params) {
32
+ url += `?${Object.keys(params).map(key => `${key}=${encodeURIComponent(params[key])}`).join('&')}`;
33
+ }
34
+ return await this.httpRequest.get(url);
35
+ }
36
36
  }
@@ -1,12 +1,12 @@
1
- import {GetCatalogParams, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
2
- import {ApiGatewayResponse} from "@fiado/gateway-adapter";
3
-
4
- export interface IStpServicePaymentApi {
5
- pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>>;
6
-
7
- getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>>;
8
-
9
- getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>>
10
-
11
- getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>>;
1
+ import {GetCatalogParams, ServicePaymentRequest} from "@fiado/type-kit/bin/servicePayment";
2
+ import {ApiGatewayResponse} from "@fiado/gateway-adapter";
3
+
4
+ export interface IStpServicePaymentApi {
5
+ pay(request: ServicePaymentRequest): Promise<ApiGatewayResponse<any>>;
6
+
7
+ getTransaction(transactionNumber: string): Promise<ApiGatewayResponse<any>>;
8
+
9
+ getPaymentValidation(transactionNumber: string): Promise<ApiGatewayResponse<any>>
10
+
11
+ getCatalog(params: GetCatalogParams): Promise<ApiGatewayResponse<any>>;
12
12
  }
@@ -1,2 +1,2 @@
1
- export * from './api/interfaces/IStpServicePaymentApi';
1
+ export * from './api/interfaces/IStpServicePaymentApi';
2
2
  export * from './api/StpServicePaymentApi';
@@ -1,21 +1,21 @@
1
- import {IStpSpeiApi} from "./interfaces/IStpSpeiApi";
2
- import {inject, injectable} from "inversify";
3
- import {IHttpRequest} from "@fiado/http-client";
4
- import {PutStpOrderRequest} from "@fiado/type-kit/bin/stpSpei";
5
-
6
- @injectable()
7
- export class StpSpeiApi implements IStpSpeiApi {
8
- private readonly baseUrl = process.env.STP_SPEI_LAMBDA_URL || "";
9
-
10
- constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
11
- }
12
-
13
- async putStpOrder(request: PutStpOrderRequest): Promise<any> {
14
- const url = `${this.baseUrl}`;
15
- const headers = {
16
- 'Content-Type': 'application/json',
17
- operationName: "putConnectorStpOrders"
18
- }
19
- return await this.httpRequest.post(url, request, headers);
20
- }
1
+ import {IStpSpeiApi} from "./interfaces/IStpSpeiApi";
2
+ import {inject, injectable} from "inversify";
3
+ import {IHttpRequest} from "@fiado/http-client";
4
+ import {PutStpOrderRequest} from "@fiado/type-kit/bin/stpSpei";
5
+
6
+ @injectable()
7
+ export class StpSpeiApi implements IStpSpeiApi {
8
+ private readonly baseUrl = process.env.STP_SPEI_LAMBDA_URL || "";
9
+
10
+ constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
11
+ }
12
+
13
+ async putStpOrder(request: PutStpOrderRequest): Promise<any> {
14
+ const url = `${this.baseUrl}`;
15
+ const headers = {
16
+ 'Content-Type': 'application/json',
17
+ operationName: "putConnectorStpOrders"
18
+ }
19
+ return await this.httpRequest.post(url, request, headers);
20
+ }
21
21
  }
@@ -1,5 +1,5 @@
1
- import {PutStpOrderRequest} from "@fiado/type-kit/bin/stpSpei";
2
-
3
- export interface IStpSpeiApi {
4
- putStpOrder(request: PutStpOrderRequest): Promise<any>;
1
+ import {PutStpOrderRequest} from "@fiado/type-kit/bin/stpSpei";
2
+
3
+ export interface IStpSpeiApi {
4
+ putStpOrder(request: PutStpOrderRequest): Promise<any>;
5
5
  }
@@ -1,2 +1,2 @@
1
- export * from './api/interfaces/IStpSpeiApi';
1
+ export * from './api/interfaces/IStpSpeiApi';
2
2
  export * from './api/StpSpeiApi';
@@ -1,96 +1,96 @@
1
- import {ITernApi} from "./interfaces/ITernApi";
2
- import {inject, injectable} from "inversify";
3
- import {IHttpRequest} from "@fiado/http-client";
4
- import {
5
- BankAccountP2pTransferRequest,
6
- CreateBankAccountRequest,
7
- CreateBankAccountUserRequest,
8
- GetBankAccountRequest,
9
- GetBankAccountUserRequest,
10
- } from "@fiado/type-kit/bin/account";
11
- import {
12
- ActivateBankAccountCardRequest,
13
- AssignCardRequest,
14
- CreateBankAccountCardRequest,
15
- UpdateBankAccountCardRequest
16
- } from "@fiado/type-kit/bin/card";
17
-
18
-
19
- @injectable()
20
- export default class TernApi implements ITernApi {
21
- private readonly baseUrl = process.env.TERN_LAMBDA_URL || "";
22
-
23
- constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
24
- }
25
-
26
- /// USERS
27
- async getUser(request: GetBankAccountUserRequest): Promise<any> {
28
- const url: string = `${this.baseUrl}users/${request.externalUserId}`;
29
- return await this.httpRequest.get(url);
30
- }
31
-
32
- async createUser(request: CreateBankAccountUserRequest): Promise<any> {
33
- const url: string = `${this.baseUrl}users/create`;
34
- return await this.httpRequest.post(url, request);
35
- }
36
-
37
- /// ACCOUNTS
38
- async getAccount(request: GetBankAccountRequest): Promise<any> {
39
- const url: string = `${this.baseUrl}accounts/${request.externalAccountId}`;
40
- return await this.httpRequest.get(url);
41
- }
42
-
43
- async createAccount(request: CreateBankAccountRequest): Promise<any> {
44
- const url: string = `${this.baseUrl}accounts/create`;
45
- return await this.httpRequest.post(url, request);
46
- }
47
-
48
- /// CARDS
49
-
50
- async getCardSensitiveInformation(externalCardId: string, externalUserId?: string): Promise<any> {
51
-
52
- const url = `${this.baseUrl}cards/${externalCardId}/sensitive`;
53
- return await this.httpRequest.get(url);
54
- }
55
-
56
- async getCardsById(externalCardId: string): Promise<any> {
57
-
58
- const url = `${this.baseUrl}cards/${externalCardId}/`;
59
- return await this.httpRequest.get(url);
60
- }
61
-
62
- async createCard(request: CreateBankAccountCardRequest): Promise<any> {
63
- const url = `${this.baseUrl}cards/create`;
64
- return await this.httpRequest.post(url, request);
65
- }
66
-
67
- async blockCard(request: UpdateBankAccountCardRequest): Promise<any> {
68
- const url = `${this.baseUrl}cards/block`;
69
- return await this.httpRequest.post(url, request);
70
- }
71
-
72
- async changePin(request: UpdateBankAccountCardRequest): Promise<any> {
73
- const url = `${this.baseUrl}cards/${request.cardId}/`;
74
- return await this.httpRequest.put(url, request);
75
- }
76
-
77
- async updateCard(request: UpdateBankAccountCardRequest): Promise<any> {
78
- const url = `${this.baseUrl}cards/${request.cardId}/`;
79
- return await this.httpRequest.put(url, request);
80
- }
81
-
82
- async activateCard(request: ActivateBankAccountCardRequest): Promise<any> {
83
- const url = `${this.baseUrl}cards/activate`;
84
- return await this.httpRequest.post(url, request);
85
- }
86
-
87
- async assignCardToUser(request: AssignCardRequest): Promise<any> {
88
- const url = `${this.baseUrl}cards/activate`;
89
- return await this.httpRequest.post(url, request);
90
- }
91
-
92
- async p2pTransfer(request: BankAccountP2pTransferRequest): Promise<any> {
93
- const url: string = `${this.baseUrl}users/accounts/transfer_balances`;
94
- return await this.httpRequest.patch(url, request);
95
- }
96
- }
1
+ import {ITernApi} from "./interfaces/ITernApi";
2
+ import {inject, injectable} from "inversify";
3
+ import {IHttpRequest} from "@fiado/http-client";
4
+ import {
5
+ BankAccountP2pTransferRequest,
6
+ CreateBankAccountRequest,
7
+ CreateBankAccountUserRequest,
8
+ GetBankAccountRequest,
9
+ GetBankAccountUserRequest,
10
+ } from "@fiado/type-kit/bin/account";
11
+ import {
12
+ ActivateBankAccountCardRequest,
13
+ AssignCardRequest,
14
+ CreateBankAccountCardRequest,
15
+ UpdateBankAccountCardRequest
16
+ } from "@fiado/type-kit/bin/card";
17
+
18
+
19
+ @injectable()
20
+ export default class TernApi implements ITernApi {
21
+ private readonly baseUrl = process.env.TERN_LAMBDA_URL || "";
22
+
23
+ constructor(@inject("IHttpRequest") private httpRequest: IHttpRequest) {
24
+ }
25
+
26
+ /// USERS
27
+ async getUser(request: GetBankAccountUserRequest): Promise<any> {
28
+ const url: string = `${this.baseUrl}users/${request.externalUserId}`;
29
+ return await this.httpRequest.get(url);
30
+ }
31
+
32
+ async createUser(request: CreateBankAccountUserRequest): Promise<any> {
33
+ const url: string = `${this.baseUrl}users/create`;
34
+ return await this.httpRequest.post(url, request);
35
+ }
36
+
37
+ /// ACCOUNTS
38
+ async getAccount(request: GetBankAccountRequest): Promise<any> {
39
+ const url: string = `${this.baseUrl}accounts/${request.externalAccountId}`;
40
+ return await this.httpRequest.get(url);
41
+ }
42
+
43
+ async createAccount(request: CreateBankAccountRequest): Promise<any> {
44
+ const url: string = `${this.baseUrl}accounts/create`;
45
+ return await this.httpRequest.post(url, request);
46
+ }
47
+
48
+ /// CARDS
49
+
50
+ async getCardSensitiveInformation(externalCardId: string, externalUserId?: string): Promise<any> {
51
+
52
+ const url = `${this.baseUrl}cards/${externalCardId}/sensitive`;
53
+ return await this.httpRequest.get(url);
54
+ }
55
+
56
+ async getCardsById(externalCardId: string): Promise<any> {
57
+
58
+ const url = `${this.baseUrl}cards/${externalCardId}/`;
59
+ return await this.httpRequest.get(url);
60
+ }
61
+
62
+ async createCard(request: CreateBankAccountCardRequest): Promise<any> {
63
+ const url = `${this.baseUrl}cards/create`;
64
+ return await this.httpRequest.post(url, request);
65
+ }
66
+
67
+ async blockCard(request: UpdateBankAccountCardRequest): Promise<any> {
68
+ const url = `${this.baseUrl}cards/block`;
69
+ return await this.httpRequest.post(url, request);
70
+ }
71
+
72
+ async changePin(request: UpdateBankAccountCardRequest): Promise<any> {
73
+ const url = `${this.baseUrl}cards/${request.cardId}/`;
74
+ return await this.httpRequest.put(url, request);
75
+ }
76
+
77
+ async updateCard(request: UpdateBankAccountCardRequest): Promise<any> {
78
+ const url = `${this.baseUrl}cards/${request.cardId}/`;
79
+ return await this.httpRequest.put(url, request);
80
+ }
81
+
82
+ async activateCard(request: ActivateBankAccountCardRequest): Promise<any> {
83
+ const url = `${this.baseUrl}cards/activate`;
84
+ return await this.httpRequest.post(url, request);
85
+ }
86
+
87
+ async assignCardToUser(request: AssignCardRequest): Promise<any> {
88
+ const url = `${this.baseUrl}cards/activate`;
89
+ return await this.httpRequest.post(url, request);
90
+ }
91
+
92
+ async p2pTransfer(request: BankAccountP2pTransferRequest): Promise<any> {
93
+ const url: string = `${this.baseUrl}users/accounts/transfer_balances`;
94
+ return await this.httpRequest.patch(url, request);
95
+ }
96
+ }
@@ -1,30 +1,30 @@
1
- import {CreateBankAccountRequest, CreateBankAccountUserRequest} from "@fiado/type-kit/bin/account";
2
- import {GetBankAccountUserRequest} from "@fiado/type-kit/bin/account/dtos/GetBankAccountUserRequest";
3
- import {GetBankAccountRequest} from "@fiado/type-kit/bin/account/dtos/GetBankAccountRequest";
4
- import { ActivateBankAccountCardRequest, AssignCardRequest, CreateBankAccountCardRequest, UpdateBankAccountCardRequest } from "@fiado/type-kit/bin/card";
5
-
6
- export interface ITernApi {
7
- getUser(request: GetBankAccountUserRequest): Promise<any>;
8
-
9
- getAccount(request: GetBankAccountRequest): Promise<any>;
10
-
11
- createUser(request: CreateBankAccountUserRequest): Promise<any>;
12
-
13
- createAccount(request: CreateBankAccountRequest): Promise<any>
14
-
15
- getCardsById(externalCardId: string): Promise<any>;
16
-
17
- createCard(request: CreateBankAccountCardRequest): Promise<any>;
18
-
19
- blockCard(request: UpdateBankAccountCardRequest): Promise<any>;
20
-
21
- changePin(request: UpdateBankAccountCardRequest): Promise<any>;
22
-
23
- updateCard(request: UpdateBankAccountCardRequest): Promise<any>;
24
-
25
- activateCard(request: ActivateBankAccountCardRequest): Promise<any>;
26
-
27
- assignCardToUser(request: AssignCardRequest): Promise<any>;
28
-
29
- p2pTransfer(request: any): Promise<any>
1
+ import {CreateBankAccountRequest, CreateBankAccountUserRequest} from "@fiado/type-kit/bin/account";
2
+ import {GetBankAccountUserRequest} from "@fiado/type-kit/bin/account/dtos/GetBankAccountUserRequest";
3
+ import {GetBankAccountRequest} from "@fiado/type-kit/bin/account/dtos/GetBankAccountRequest";
4
+ import { ActivateBankAccountCardRequest, AssignCardRequest, CreateBankAccountCardRequest, UpdateBankAccountCardRequest } from "@fiado/type-kit/bin/card";
5
+
6
+ export interface ITernApi {
7
+ getUser(request: GetBankAccountUserRequest): Promise<any>;
8
+
9
+ getAccount(request: GetBankAccountRequest): Promise<any>;
10
+
11
+ createUser(request: CreateBankAccountUserRequest): Promise<any>;
12
+
13
+ createAccount(request: CreateBankAccountRequest): Promise<any>
14
+
15
+ getCardsById(externalCardId: string): Promise<any>;
16
+
17
+ createCard(request: CreateBankAccountCardRequest): Promise<any>;
18
+
19
+ blockCard(request: UpdateBankAccountCardRequest): Promise<any>;
20
+
21
+ changePin(request: UpdateBankAccountCardRequest): Promise<any>;
22
+
23
+ updateCard(request: UpdateBankAccountCardRequest): Promise<any>;
24
+
25
+ activateCard(request: ActivateBankAccountCardRequest): Promise<any>;
26
+
27
+ assignCardToUser(request: AssignCardRequest): Promise<any>;
28
+
29
+ p2pTransfer(request: any): Promise<any>
30
30
  }
package/src/tern/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './api/TernApi';
1
+ export * from './api/TernApi';
2
2
  export * from './api/interfaces/ITernApi';