@mojaloop/api-snippets 17.0.5-snapshot.0 → 17.1.0-snapshot.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 (24) hide show
  1. package/docs/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +26 -8
  2. package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +84 -27
  3. package/lib/sdk-scheme-adapter/v2_0_0/backend/json-schemas.json +27 -1
  4. package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +17 -6
  5. package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.d.ts +19 -1
  6. package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js +1 -0
  7. package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js.map +1 -1
  8. package/lib/sdk-scheme-adapter/v2_0_0/backend/types.d.ts +1 -0
  9. package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +549 -21
  10. package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +59 -20
  11. package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +451 -11
  12. package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +6 -1
  13. package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js.map +1 -1
  14. package/lib/sdk-scheme-adapter/v2_0_0/outbound/types.d.ts +6 -1
  15. package/package.json +7 -7
  16. package/sdk-scheme-adapter/v2_0_0/backend/openapi.yaml +13 -8
  17. package/sdk-scheme-adapter/v2_0_0/components/parameters/{requestToPayId.yaml → transactionRequestId.yaml} +1 -1
  18. package/sdk-scheme-adapter/v2_0_0/components/schemas/TransactionRequestResponse.yaml +20 -0
  19. package/sdk-scheme-adapter/v2_0_0/components/schemas/getPartiesResponse.yaml +12 -0
  20. package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayRequest.yaml +4 -2
  21. package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayResponse.yaml +5 -17
  22. package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayStatus.yaml +5 -0
  23. package/sdk-scheme-adapter/v2_0_0/outbound/openapi.yaml +2 -2
  24. package/sdk-scheme-adapter/v2_0_0/outbound/paths/{requestToPay_requestToPayId.yaml → requestToPay_transactionRequestId.yaml} +2 -3
@@ -210,10 +210,9 @@ export interface paths {
210
210
  };
211
211
  };
212
212
  };
213
- "/requestToPay/{requestToPayId}": {
213
+ "/requestToPay/{transactionRequestId}": {
214
214
  /**
215
- * The HTTP request `PUT /requestToPay/{requestToPayId}` is used to continue a transfer initiated via the `POST /requestToPay` method that has halted after party lookup stage.
216
- *
215
+ * The HTTP request `PUT /requestToPay/{transactionRequestId}` is used to continue a transfer initiated via the `POST /requestToPay` method that has halted after party lookup stage.
217
216
  * The request body should contain the "acceptParty" property set to `true` as required to continue the transfer.
218
217
  * See the description of the `POST /requestToPay` HTTP method for more information on modes of transfer.
219
218
  */
@@ -221,7 +220,7 @@ export interface paths {
221
220
  parameters: {
222
221
  path: {
223
222
  /** Identifier of the merchant request to pay to continue as returned in the response to a `POST /requestToPay` request. */
224
- requestToPayId: components["parameters"]["requestToPayId"];
223
+ transactionRequestId: components["parameters"]["transactionRequestId"];
225
224
  };
226
225
  };
227
226
  responses: {
@@ -1068,9 +1067,19 @@ export interface components {
1068
1067
  errorQuotesResponse: components["schemas"]["errorResponse"] & {
1069
1068
  [key: string]: unknown;
1070
1069
  };
1070
+ /**
1071
+ * AuthenticationType
1072
+ * @description Below are the allowed values for the enumeration AuthenticationType.
1073
+ * - OTP - One-time password generated by the Payer FSP.
1074
+ * - QRCODE - QR code used as One Time Password.
1075
+ * - U2F - U2F is a new addition isolated to Thirdparty stream.
1076
+ * @example OTP
1077
+ * @enum {string}
1078
+ */
1079
+ AuthenticationType: "OTP" | "QRCODE" | "U2F";
1071
1080
  requestToPayRequest: {
1072
1081
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
1073
- homeTransactionId: string;
1082
+ homeR2PTransactionId: string;
1074
1083
  from: components["schemas"]["transferParty"];
1075
1084
  to: components["schemas"]["transferParty"];
1076
1085
  amountType: components["schemas"]["AmountType"];
@@ -1078,14 +1087,48 @@ export interface components {
1078
1087
  amount: components["schemas"]["Amount"];
1079
1088
  transactionType: components["schemas"]["TransactionScenario"];
1080
1089
  subScenario?: components["schemas"]["TransactionSubScenario"];
1090
+ authenticationType?: components["schemas"]["AuthenticationType"];
1081
1091
  };
1082
1092
  /** @enum {string} */
1083
- transferStatus: "ERROR_OCCURRED" | "WAITING_FOR_PARTY_ACCEPTANCE" | "WAITING_FOR_QUOTE_ACCEPTANCE" | "COMPLETED";
1093
+ requestToPayStatus: "ERROR_OCCURRED" | "WAITING_FOR_PARTY_ACCEPTANCE" | "COMPLETED";
1094
+ /**
1095
+ * getPartiesResponse
1096
+ * @description The object sent in the GET /parties/{Type}/{ID} callback.
1097
+ */
1098
+ getPartiesResponse: {
1099
+ /** @description Information regarding the requested Party. */
1100
+ body: components["schemas"]["Party"];
1101
+ headers: {
1102
+ [key: string]: unknown;
1103
+ };
1104
+ };
1105
+ /**
1106
+ * TransactionRequestState
1107
+ * @description Below are the allowed values for the enumeration.
1108
+ * - RECEIVED - Payer FSP has received the transaction from the Payee FSP.
1109
+ * - PENDING - Payer FSP has sent the transaction request to the Payer.
1110
+ * - ACCEPTED - Payer has approved the transaction.
1111
+ * - REJECTED - Payer has rejected the transaction.
1112
+ * @example RECEIVED
1113
+ * @enum {string}
1114
+ */
1115
+ TransactionRequestState: "RECEIVED" | "PENDING" | "ACCEPTED" | "REJECTED";
1116
+ /**
1117
+ * TransactionRequestResponse
1118
+ * @description The object sent in the PUT /transactionRequests/{ID} callback.
1119
+ */
1120
+ TransactionRequestResponse: {
1121
+ body: {
1122
+ transactionId?: components["schemas"]["CorrelationId"];
1123
+ transactionRequestState: components["schemas"]["TransactionRequestState"];
1124
+ extensionList?: components["schemas"]["ExtensionList"];
1125
+ };
1126
+ headers: {
1127
+ [key: string]: unknown;
1128
+ };
1129
+ };
1084
1130
  requestToPayResponse: {
1085
- requestToPayId: components["schemas"]["CorrelationId"];
1086
- transactionRequestId?: components["schemas"]["CorrelationId"];
1087
- /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
1088
- homeTransactionId?: string;
1131
+ transactionRequestId: components["schemas"]["CorrelationId"];
1089
1132
  from: components["schemas"]["transferParty"];
1090
1133
  to: components["schemas"]["transferParty"];
1091
1134
  amountType: components["schemas"]["AmountType"];
@@ -1093,18 +1136,14 @@ export interface components {
1093
1136
  amount: components["schemas"]["Amount"];
1094
1137
  transactionType: components["schemas"]["TransactionScenario"];
1095
1138
  subScenario?: components["schemas"]["TransactionSubScenario"];
1096
- currentState: components["schemas"]["transferStatus"];
1097
- getPartiesResponse?: {
1098
- body: {
1099
- [key: string]: unknown;
1100
- };
1101
- headers?: {
1102
- [key: string]: unknown;
1103
- };
1104
- };
1139
+ currentState: components["schemas"]["requestToPayStatus"];
1140
+ getPartiesResponse?: components["schemas"]["getPartiesResponse"];
1141
+ transactionRequestResponse?: components["schemas"]["TransactionRequestResponse"];
1105
1142
  /** @description Object representing the last error to occur during a transfer process. This may be a Mojaloop API error returned from another entity in the scheme or an object representing other types of error e.g. exceptions that may occur inside the scheme adapter. */
1106
1143
  lastError?: components["schemas"]["transferError"];
1107
1144
  };
1145
+ /** @enum {string} */
1146
+ transferStatus: "ERROR_OCCURRED" | "WAITING_FOR_PARTY_ACCEPTANCE" | "WAITING_FOR_QUOTE_ACCEPTANCE" | "COMPLETED";
1108
1147
  /**
1109
1148
  * QuotesIDPutResponse
1110
1149
  * @description The object sent in the PUT /quotes/{ID} callback.
@@ -1434,7 +1473,7 @@ export interface components {
1434
1473
  /** @description A sub-identifier of the party identifier, or a sub-type of the party identifier's type. For example, `PASSPORT`, `DRIVING_LICENSE`. */
1435
1474
  SubId: string;
1436
1475
  /** @description Identifier of the merchant request to pay to continue as returned in the response to a `POST /requestToPay` request. */
1437
- requestToPayId: components["schemas"]["CorrelationId"];
1476
+ transactionRequestId: components["schemas"]["CorrelationId"];
1438
1477
  /** @description Identifier of the merchant request to pay transfer to continue as returned in the response to a `POST /requestToPayTransfer` request. */
1439
1478
  requestToPayTransactionId: components["schemas"]["CorrelationId"];
1440
1479
  /** @description Identifier of the transfer to continue as returned in the response to a `POST /transfers` request. */
@@ -7675,11 +7675,18 @@ export declare namespace Schemas {
7675
7675
  properties?: undefined;
7676
7676
  })[];
7677
7677
  };
7678
+ const AuthenticationType: {
7679
+ title: string;
7680
+ type: string;
7681
+ enum: string[];
7682
+ description: string;
7683
+ example: string;
7684
+ };
7678
7685
  const requestToPayRequest: {
7679
7686
  type: string;
7680
7687
  required: string[];
7681
7688
  properties: {
7682
- homeTransactionId: {
7689
+ homeR2PTransactionId: {
7683
7690
  type: string;
7684
7691
  description: string;
7685
7692
  };
@@ -7947,23 +7954,249 @@ export declare namespace Schemas {
7947
7954
  description: string;
7948
7955
  example: string;
7949
7956
  };
7957
+ authenticationType: {
7958
+ title: string;
7959
+ type: string;
7960
+ enum: string[];
7961
+ description: string;
7962
+ example: string;
7963
+ };
7950
7964
  };
7951
7965
  };
7952
- const transferStatus: {
7966
+ const requestToPayStatus: {
7953
7967
  type: string;
7954
7968
  enum: string[];
7955
7969
  };
7956
- const requestToPayResponse: {
7970
+ const getPartiesResponse: {
7971
+ title: string;
7957
7972
  type: string;
7958
- required: string[];
7973
+ description: string;
7959
7974
  properties: {
7960
- requestToPayId: {
7975
+ body: {
7961
7976
  title: string;
7962
7977
  type: string;
7963
- pattern: string;
7964
7978
  description: string;
7965
- example: string;
7979
+ properties: {
7980
+ partyIdInfo: {
7981
+ title: string;
7982
+ type: string;
7983
+ description: string;
7984
+ properties: {
7985
+ partyIdType: {
7986
+ title: string;
7987
+ type: string;
7988
+ enum: string[];
7989
+ description: string;
7990
+ };
7991
+ partyIdentifier: {
7992
+ title: string;
7993
+ type: string;
7994
+ minLength: number;
7995
+ maxLength: number;
7996
+ description: string;
7997
+ example: string;
7998
+ };
7999
+ partySubIdOrType: {
8000
+ title: string;
8001
+ type: string;
8002
+ minLength: number;
8003
+ maxLength: number;
8004
+ description: string;
8005
+ };
8006
+ fspId: {
8007
+ title: string;
8008
+ type: string;
8009
+ minLength: number;
8010
+ maxLength: number;
8011
+ description: string;
8012
+ };
8013
+ extensionList: {
8014
+ title: string;
8015
+ type: string;
8016
+ description: string;
8017
+ properties: {
8018
+ extension: {
8019
+ type: string;
8020
+ items: {
8021
+ title: string;
8022
+ type: string;
8023
+ description: string;
8024
+ properties: {
8025
+ key: {
8026
+ title: string;
8027
+ type: string;
8028
+ minLength: number;
8029
+ maxLength: number;
8030
+ description: string;
8031
+ };
8032
+ value: {
8033
+ title: string;
8034
+ type: string;
8035
+ minLength: number;
8036
+ maxLength: number;
8037
+ description: string;
8038
+ };
8039
+ };
8040
+ required: string[];
8041
+ };
8042
+ minItems: number;
8043
+ maxItems: number;
8044
+ description: string;
8045
+ };
8046
+ };
8047
+ required: string[];
8048
+ };
8049
+ };
8050
+ required: string[];
8051
+ };
8052
+ merchantClassificationCode: {
8053
+ title: string;
8054
+ type: string;
8055
+ pattern: string;
8056
+ description: string;
8057
+ };
8058
+ name: {
8059
+ title: string;
8060
+ type: string;
8061
+ minLength: number;
8062
+ maxLength: number;
8063
+ description: string;
8064
+ };
8065
+ personalInfo: {
8066
+ title: string;
8067
+ type: string;
8068
+ description: string;
8069
+ properties: {
8070
+ complexName: {
8071
+ title: string;
8072
+ type: string;
8073
+ description: string;
8074
+ properties: {
8075
+ firstName: {
8076
+ title: string;
8077
+ type: string;
8078
+ minLength: number;
8079
+ maxLength: number;
8080
+ pattern: string;
8081
+ description: string;
8082
+ example: string;
8083
+ };
8084
+ middleName: {
8085
+ title: string;
8086
+ type: string;
8087
+ minLength: number;
8088
+ maxLength: number;
8089
+ pattern: string;
8090
+ description: string;
8091
+ example: string;
8092
+ };
8093
+ lastName: {
8094
+ title: string;
8095
+ type: string;
8096
+ minLength: number;
8097
+ maxLength: number;
8098
+ pattern: string;
8099
+ description: string;
8100
+ example: string;
8101
+ };
8102
+ };
8103
+ };
8104
+ dateOfBirth: {
8105
+ title: string;
8106
+ type: string;
8107
+ pattern: string;
8108
+ description: string;
8109
+ example: string;
8110
+ };
8111
+ };
8112
+ };
8113
+ };
8114
+ required: string[];
8115
+ };
8116
+ headers: {
8117
+ type: string;
8118
+ };
8119
+ };
8120
+ required: string[];
8121
+ };
8122
+ const TransactionRequestState: {
8123
+ title: string;
8124
+ type: string;
8125
+ enum: string[];
8126
+ description: string;
8127
+ example: string;
8128
+ };
8129
+ const TransactionRequestResponse: {
8130
+ title: string;
8131
+ type: string;
8132
+ description: string;
8133
+ properties: {
8134
+ body: {
8135
+ type: string;
8136
+ properties: {
8137
+ transactionId: {
8138
+ title: string;
8139
+ type: string;
8140
+ pattern: string;
8141
+ description: string;
8142
+ example: string;
8143
+ };
8144
+ transactionRequestState: {
8145
+ title: string;
8146
+ type: string;
8147
+ enum: string[];
8148
+ description: string;
8149
+ example: string;
8150
+ };
8151
+ extensionList: {
8152
+ title: string;
8153
+ type: string;
8154
+ description: string;
8155
+ properties: {
8156
+ extension: {
8157
+ type: string;
8158
+ items: {
8159
+ title: string;
8160
+ type: string;
8161
+ description: string;
8162
+ properties: {
8163
+ key: {
8164
+ title: string;
8165
+ type: string;
8166
+ minLength: number;
8167
+ maxLength: number;
8168
+ description: string;
8169
+ };
8170
+ value: {
8171
+ title: string;
8172
+ type: string;
8173
+ minLength: number;
8174
+ maxLength: number;
8175
+ description: string;
8176
+ };
8177
+ };
8178
+ required: string[];
8179
+ };
8180
+ minItems: number;
8181
+ maxItems: number;
8182
+ description: string;
8183
+ };
8184
+ };
8185
+ required: string[];
8186
+ };
8187
+ };
8188
+ required: string[];
8189
+ };
8190
+ headers: {
8191
+ type: string;
7966
8192
  };
8193
+ };
8194
+ required: string[];
8195
+ };
8196
+ const requestToPayResponse: {
8197
+ type: string;
8198
+ required: string[];
8199
+ properties: {
7967
8200
  transactionRequestId: {
7968
8201
  title: string;
7969
8202
  type: string;
@@ -7971,10 +8204,6 @@ export declare namespace Schemas {
7971
8204
  description: string;
7972
8205
  example: string;
7973
8206
  };
7974
- homeTransactionId: {
7975
- type: string;
7976
- description: string;
7977
- };
7978
8207
  from: {
7979
8208
  type: string;
7980
8209
  required: string[];
@@ -8244,16 +8473,223 @@ export declare namespace Schemas {
8244
8473
  enum: string[];
8245
8474
  };
8246
8475
  getPartiesResponse: {
8476
+ title: string;
8247
8477
  type: string;
8478
+ description: string;
8479
+ properties: {
8480
+ body: {
8481
+ title: string;
8482
+ type: string;
8483
+ description: string;
8484
+ properties: {
8485
+ partyIdInfo: {
8486
+ title: string;
8487
+ type: string;
8488
+ description: string;
8489
+ properties: {
8490
+ partyIdType: {
8491
+ title: string;
8492
+ type: string;
8493
+ enum: string[];
8494
+ description: string;
8495
+ };
8496
+ partyIdentifier: {
8497
+ title: string;
8498
+ type: string;
8499
+ minLength: number;
8500
+ maxLength: number;
8501
+ description: string;
8502
+ example: string;
8503
+ };
8504
+ partySubIdOrType: {
8505
+ title: string;
8506
+ type: string;
8507
+ minLength: number;
8508
+ maxLength: number;
8509
+ description: string;
8510
+ };
8511
+ fspId: {
8512
+ title: string;
8513
+ type: string;
8514
+ minLength: number;
8515
+ maxLength: number;
8516
+ description: string;
8517
+ };
8518
+ extensionList: {
8519
+ title: string;
8520
+ type: string;
8521
+ description: string;
8522
+ properties: {
8523
+ extension: {
8524
+ type: string;
8525
+ items: {
8526
+ title: string;
8527
+ type: string;
8528
+ description: string;
8529
+ properties: {
8530
+ key: {
8531
+ title: string;
8532
+ type: string;
8533
+ minLength: number;
8534
+ maxLength: number;
8535
+ description: string;
8536
+ };
8537
+ value: {
8538
+ title: string;
8539
+ type: string;
8540
+ minLength: number;
8541
+ maxLength: number;
8542
+ description: string;
8543
+ };
8544
+ };
8545
+ required: string[];
8546
+ };
8547
+ minItems: number;
8548
+ maxItems: number;
8549
+ description: string;
8550
+ };
8551
+ };
8552
+ required: string[];
8553
+ };
8554
+ };
8555
+ required: string[];
8556
+ };
8557
+ merchantClassificationCode: {
8558
+ title: string;
8559
+ type: string;
8560
+ pattern: string;
8561
+ description: string;
8562
+ };
8563
+ name: {
8564
+ title: string;
8565
+ type: string;
8566
+ minLength: number;
8567
+ maxLength: number;
8568
+ description: string;
8569
+ };
8570
+ personalInfo: {
8571
+ title: string;
8572
+ type: string;
8573
+ description: string;
8574
+ properties: {
8575
+ complexName: {
8576
+ title: string;
8577
+ type: string;
8578
+ description: string;
8579
+ properties: {
8580
+ firstName: {
8581
+ title: string;
8582
+ type: string;
8583
+ minLength: number;
8584
+ maxLength: number;
8585
+ pattern: string;
8586
+ description: string;
8587
+ example: string;
8588
+ };
8589
+ middleName: {
8590
+ title: string;
8591
+ type: string;
8592
+ minLength: number;
8593
+ maxLength: number;
8594
+ pattern: string;
8595
+ description: string;
8596
+ example: string;
8597
+ };
8598
+ lastName: {
8599
+ title: string;
8600
+ type: string;
8601
+ minLength: number;
8602
+ maxLength: number;
8603
+ pattern: string;
8604
+ description: string;
8605
+ example: string;
8606
+ };
8607
+ };
8608
+ };
8609
+ dateOfBirth: {
8610
+ title: string;
8611
+ type: string;
8612
+ pattern: string;
8613
+ description: string;
8614
+ example: string;
8615
+ };
8616
+ };
8617
+ };
8618
+ };
8619
+ required: string[];
8620
+ };
8621
+ headers: {
8622
+ type: string;
8623
+ };
8624
+ };
8248
8625
  required: string[];
8626
+ };
8627
+ transactionRequestResponse: {
8628
+ title: string;
8629
+ type: string;
8630
+ description: string;
8249
8631
  properties: {
8250
8632
  body: {
8251
8633
  type: string;
8634
+ properties: {
8635
+ transactionId: {
8636
+ title: string;
8637
+ type: string;
8638
+ pattern: string;
8639
+ description: string;
8640
+ example: string;
8641
+ };
8642
+ transactionRequestState: {
8643
+ title: string;
8644
+ type: string;
8645
+ enum: string[];
8646
+ description: string;
8647
+ example: string;
8648
+ };
8649
+ extensionList: {
8650
+ title: string;
8651
+ type: string;
8652
+ description: string;
8653
+ properties: {
8654
+ extension: {
8655
+ type: string;
8656
+ items: {
8657
+ title: string;
8658
+ type: string;
8659
+ description: string;
8660
+ properties: {
8661
+ key: {
8662
+ title: string;
8663
+ type: string;
8664
+ minLength: number;
8665
+ maxLength: number;
8666
+ description: string;
8667
+ };
8668
+ value: {
8669
+ title: string;
8670
+ type: string;
8671
+ minLength: number;
8672
+ maxLength: number;
8673
+ description: string;
8674
+ };
8675
+ };
8676
+ required: string[];
8677
+ };
8678
+ minItems: number;
8679
+ maxItems: number;
8680
+ description: string;
8681
+ };
8682
+ };
8683
+ required: string[];
8684
+ };
8685
+ };
8686
+ required: string[];
8252
8687
  };
8253
8688
  headers: {
8254
8689
  type: string;
8255
8690
  };
8256
8691
  };
8692
+ required: string[];
8257
8693
  };
8258
8694
  lastError: {
8259
8695
  type: string;
@@ -8330,6 +8766,10 @@ export declare namespace Schemas {
8330
8766
  };
8331
8767
  };
8332
8768
  };
8769
+ const transferStatus: {
8770
+ type: string;
8771
+ enum: string[];
8772
+ };
8333
8773
  const QuotesIDPutResponse: {
8334
8774
  title: string;
8335
8775
  type: string;
@@ -98,9 +98,14 @@ var Schemas;
98
98
  Schemas.simpleQuotesPostRequest = json_schemas_json_1.default.simpleQuotesPostRequest;
99
99
  Schemas.quotesPostResponse = json_schemas_json_1.default.quotesPostResponse;
100
100
  Schemas.errorQuotesResponse = json_schemas_json_1.default.errorQuotesResponse;
101
+ Schemas.AuthenticationType = json_schemas_json_1.default.AuthenticationType;
101
102
  Schemas.requestToPayRequest = json_schemas_json_1.default.requestToPayRequest;
102
- Schemas.transferStatus = json_schemas_json_1.default.transferStatus;
103
+ Schemas.requestToPayStatus = json_schemas_json_1.default.requestToPayStatus;
104
+ Schemas.getPartiesResponse = json_schemas_json_1.default.getPartiesResponse;
105
+ Schemas.TransactionRequestState = json_schemas_json_1.default.TransactionRequestState;
106
+ Schemas.TransactionRequestResponse = json_schemas_json_1.default.TransactionRequestResponse;
103
107
  Schemas.requestToPayResponse = json_schemas_json_1.default.requestToPayResponse;
108
+ Schemas.transferStatus = json_schemas_json_1.default.transferStatus;
104
109
  Schemas.QuotesIDPutResponse = json_schemas_json_1.default.QuotesIDPutResponse;
105
110
  Schemas.TransfersIDPutResponse = json_schemas_json_1.default.TransfersIDPutResponse;
106
111
  Schemas.transferResponse = json_schemas_json_1.default.transferResponse;