@fiado/type-kit 1.8.5 → 1.8.7

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.
@@ -1,9 +1,11 @@
1
1
  import { Provider } from "../../provider";
2
2
  import { CreateBankAccountUserStatusEnum } from "../enums/CreateBankAccountUserStatusEnum";
3
+ import { GetBankAccountCardResponse } from "../../card";
3
4
  export declare class CreateBankAccountUserResponse {
4
5
  externalUserId: string;
5
6
  externalAccountId?: string;
6
7
  externalDocumentId?: string;
8
+ externalCardInfo?: GetBankAccountCardResponse;
7
9
  provider: Provider;
8
10
  accountNumber?: string;
9
11
  routingNumber?: string;
@@ -0,0 +1,6 @@
1
+ import { DocumentSideEnum } from "../../identity";
2
+ export declare class CentralPaymentsDocumentImages {
3
+ side: DocumentSideEnum;
4
+ url: string;
5
+ extension: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CentralPaymentsDocumentImages = void 0;
4
+ class CentralPaymentsDocumentImages {
5
+ }
6
+ exports.CentralPaymentsDocumentImages = CentralPaymentsDocumentImages;
@@ -0,0 +1,6 @@
1
+ import { IdentificationDocument } from "../../identity";
2
+ import { CentralPaymentsDocumentImages } from "./CentralPaymentsDocumentImages";
3
+ export declare class CentralPaymentsDocumentUploadRequest {
4
+ documentInfo: IdentificationDocument;
5
+ documentImages: CentralPaymentsDocumentImages[];
6
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CentralPaymentsDocumentUploadRequest = void 0;
4
+ class CentralPaymentsDocumentUploadRequest {
5
+ }
6
+ exports.CentralPaymentsDocumentUploadRequest = CentralPaymentsDocumentUploadRequest;
@@ -2,4 +2,6 @@ export * from './dtos/HealthcheckResponse';
2
2
  export * from './dtos/SubmitOOWQuestionAnswersRequest';
3
3
  export * from './dtos/OOWQuestionsResponse';
4
4
  export * from './dtos/OOWAnswer';
5
+ export * from './dtos/CentralPaymentsDocumentImages';
6
+ export * from './dtos/CentralPaymentsDocumentUploadRequest';
5
7
  export * from './enums/ServiceStatusEnum';
@@ -18,4 +18,6 @@ __exportStar(require("./dtos/HealthcheckResponse"), exports);
18
18
  __exportStar(require("./dtos/SubmitOOWQuestionAnswersRequest"), exports);
19
19
  __exportStar(require("./dtos/OOWQuestionsResponse"), exports);
20
20
  __exportStar(require("./dtos/OOWAnswer"), exports);
21
+ __exportStar(require("./dtos/CentralPaymentsDocumentImages"), exports);
22
+ __exportStar(require("./dtos/CentralPaymentsDocumentUploadRequest"), exports);
21
23
  __exportStar(require("./enums/ServiceStatusEnum"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.8.5",
3
+ "version": "1.8.7",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -1,10 +1,12 @@
1
1
  import {Provider} from "../../provider";
2
2
  import {CreateBankAccountUserStatusEnum} from "../enums/CreateBankAccountUserStatusEnum";
3
+ import {GetBankAccountCardResponse} from "../../card";
3
4
 
4
5
  export class CreateBankAccountUserResponse {
5
6
  externalUserId: string;
6
7
  externalAccountId?: string;
7
8
  externalDocumentId?: string;
9
+ externalCardInfo?: GetBankAccountCardResponse;
8
10
  provider: Provider;
9
11
  accountNumber?: string;
10
12
  routingNumber?: string;
@@ -0,0 +1,7 @@
1
+ import {DocumentSideEnum} from "../../identity";
2
+
3
+ export class CentralPaymentsDocumentImages {
4
+ side: DocumentSideEnum;
5
+ url: string;
6
+ extension: string;
7
+ }
@@ -0,0 +1,7 @@
1
+ import {IdentificationDocument} from "../../identity";
2
+ import {CentralPaymentsDocumentImages} from "./CentralPaymentsDocumentImages";
3
+
4
+ export class CentralPaymentsDocumentUploadRequest {
5
+ documentInfo: IdentificationDocument;
6
+ documentImages: CentralPaymentsDocumentImages[];
7
+ }
@@ -2,5 +2,7 @@ export * from './dtos/HealthcheckResponse';
2
2
  export * from './dtos/SubmitOOWQuestionAnswersRequest';
3
3
  export * from './dtos/OOWQuestionsResponse';
4
4
  export * from './dtos/OOWAnswer';
5
+ export * from './dtos/CentralPaymentsDocumentImages';
6
+ export * from './dtos/CentralPaymentsDocumentUploadRequest';
5
7
 
6
8
  export * from './enums/ServiceStatusEnum';