@fiado/type-kit 1.0.63 → 1.0.65

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.
@@ -0,0 +1,5 @@
1
+ import { Provider } from "../../provider";
2
+ export declare class CreateBankAccountOutput {
3
+ externalAccountId: string;
4
+ provider: Provider;
5
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateBankAccountOutput = void 0;
4
+ class CreateBankAccountOutput {
5
+ }
6
+ exports.CreateBankAccountOutput = CreateBankAccountOutput;
@@ -0,0 +1,8 @@
1
+ import { Provider } from "../../provider";
2
+ export declare class CreateBankAccountUserOutput {
3
+ externalUserId: string;
4
+ externalAccountId?: string;
5
+ provider: Provider;
6
+ accountNumber?: string;
7
+ routingNumber?: string;
8
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateBankAccountUserOutput = void 0;
4
+ class CreateBankAccountUserOutput {
5
+ }
6
+ exports.CreateBankAccountUserOutput = CreateBankAccountUserOutput;
@@ -2,5 +2,7 @@ export * from './dtos/AccountCreateRequest';
2
2
  export * from './dtos/CreateBankAccountInput';
3
3
  export * from './dtos/CreateBankAccountUserInput';
4
4
  export * from './dtos/AccountCreateResponse';
5
+ export * from './dtos/CreateBankAccountOutput';
6
+ export * from './dtos/CreateBankAccountUserOutput';
5
7
  export * from './entities/AccountEntityBase';
6
8
  export * from './enums/BankAccountTypeEnum';
@@ -19,6 +19,9 @@ __exportStar(require("./dtos/AccountCreateRequest"), exports);
19
19
  __exportStar(require("./dtos/CreateBankAccountInput"), exports);
20
20
  __exportStar(require("./dtos/CreateBankAccountUserInput"), exports);
21
21
  __exportStar(require("./dtos/AccountCreateResponse"), exports);
22
+ __exportStar(require("./dtos/CreateBankAccountOutput"), exports);
23
+ __exportStar(require("./dtos/CreateBankAccountUserOutput"), exports);
24
+ //Entities
22
25
  __exportStar(require("./entities/AccountEntityBase"), exports);
23
26
  //Enums
24
27
  __exportStar(require("./enums/BankAccountTypeEnum"), exports);
@@ -0,0 +1,73 @@
1
+ import { SexDocument } from "../enums/SexDocument";
2
+ import { IdentificationDocument } from "./IdentificationDocument";
3
+ export declare class PeopleUpdateRequest {
4
+ id?: string;
5
+ creationMethod?: string;
6
+ indexName?: string | null;
7
+ preferredName?: string | null;
8
+ usSuffix?: string | null;
9
+ usLastNames?: string | null;
10
+ usNames?: string | null;
11
+ latNames?: string | null;
12
+ latLastNamePaternal?: string | null;
13
+ latLastNameMaternal?: string | null;
14
+ aliasNames?: string[] | null;
15
+ preferredPronoun?: string | null;
16
+ SSN_ITIN?: string | null;
17
+ rfc?: string | null;
18
+ curp?: string | null;
19
+ passportNumber?: string | null;
20
+ countryOfPassport?: string | null;
21
+ documents?: IdentificationDocument[] | null;
22
+ countryOfBirth?: string | null;
23
+ dateOfBirth?: string | null;
24
+ stateOfBirth?: string | null;
25
+ nationalities?: string[] | null;
26
+ docSex?: SexDocument | null;
27
+ internalEmail?: string | null;
28
+ occupation?: string | null;
29
+ incomeSource?: string | null;
30
+ operationId?: string | null;
31
+ tenantId?: string | null;
32
+ photoOfpersonImageName?: string | null;
33
+ videoOfPersonImageName?: string | null;
34
+ USA_DebitAccount?: boolean;
35
+ MEX_DebitAccount?: boolean;
36
+ MEX_CreditClient?: boolean;
37
+ MEX_CreditAdditional?: boolean;
38
+ magicNumber?: boolean;
39
+ USA_UploadDocument?: boolean;
40
+ MEX_UploadDocument?: boolean;
41
+ videoSelfieVerified?: boolean;
42
+ MEX_ValidDocument?: string;
43
+ USA_ValidDocument?: string;
44
+ USA_FacematchVerified?: boolean | null;
45
+ MEX_FacematchVerified?: boolean | null;
46
+ fiadoListApproved?: boolean | null;
47
+ ofacListApproved?: boolean | null;
48
+ cnbvListApproved?: boolean | null;
49
+ blackListApproved?: boolean | null;
50
+ whiteList?: boolean | null;
51
+ hasOwner?: boolean;
52
+ older18?: boolean | null;
53
+ USA_Address?: boolean;
54
+ MEX_Address?: boolean;
55
+ COL_Address?: boolean;
56
+ GTM_Address?: boolean;
57
+ HND_Address?: boolean;
58
+ CRI_Address?: boolean;
59
+ PER_Address?: boolean;
60
+ MEX_ProofAddress?: boolean;
61
+ MEX_SendWish?: boolean;
62
+ COL_SendWish?: boolean;
63
+ GTM_SendWish?: boolean;
64
+ HND_SendWish?: boolean;
65
+ CRI_SendWish?: boolean;
66
+ PER_SendWish?: boolean;
67
+ USA_DebitAccountWish?: boolean;
68
+ MEX_DebitAccountWish?: boolean;
69
+ MEX_CreditAdditionalWish?: boolean;
70
+ MEX_CreditClientWish?: boolean;
71
+ SSN_ITINRequired?: boolean | null;
72
+ duplicateUserDetection?: boolean | null;
73
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PeopleUpdateRequest = void 0;
4
+ class PeopleUpdateRequest {
5
+ }
6
+ exports.PeopleUpdateRequest = PeopleUpdateRequest;
@@ -2,5 +2,6 @@ export * from './dtos/IdentificationDocument';
2
2
  export * from './dtos/PeopleCreateRequest';
3
3
  export * from './dtos/PeopleResponse';
4
4
  export * from './dtos/TypeOfDocument';
5
+ export * from './dtos/PeopleUpdateRequest';
5
6
  export * from './enums/IdentificationDocumentStatus';
6
7
  export * from './enums/SexDocument';
@@ -19,6 +19,7 @@ __exportStar(require("./dtos/IdentificationDocument"), exports);
19
19
  __exportStar(require("./dtos/PeopleCreateRequest"), exports);
20
20
  __exportStar(require("./dtos/PeopleResponse"), exports);
21
21
  __exportStar(require("./dtos/TypeOfDocument"), exports);
22
+ __exportStar(require("./dtos/PeopleUpdateRequest"), exports);
22
23
  //enums
23
24
  __exportStar(require("./enums/IdentificationDocumentStatus"), exports);
24
25
  __exportStar(require("./enums/SexDocument"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.0.63",
3
+ "version": "1.0.65",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,8 @@
1
+ import { Provider } from "../../provider";
2
+
3
+ export class CreateBankAccountOutput {
4
+ externalAccountId: string
5
+ provider: Provider
6
+ }
7
+
8
+
@@ -0,0 +1,11 @@
1
+ import { Provider } from "../../provider";
2
+
3
+ export class CreateBankAccountUserOutput {
4
+ externalUserId:string
5
+ externalAccountId?:string
6
+ provider:Provider
7
+ accountNumber?:string
8
+ routingNumber?:string
9
+ }
10
+
11
+
@@ -3,9 +3,15 @@ export * from './dtos/AccountCreateRequest';
3
3
  export * from './dtos/CreateBankAccountInput';
4
4
  export * from './dtos/CreateBankAccountUserInput';
5
5
  export * from './dtos/AccountCreateResponse';
6
+ export * from './dtos/CreateBankAccountOutput';
7
+ export * from './dtos/CreateBankAccountUserOutput';
8
+
9
+
10
+ //Entities
6
11
  export * from './entities/AccountEntityBase';
7
12
 
8
13
 
14
+
9
15
  //Enums
10
16
  export * from './enums/BankAccountTypeEnum';
11
17
 
@@ -0,0 +1,76 @@
1
+ import { SexDocument } from "../enums/SexDocument";
2
+ import { IdentificationDocument } from "./IdentificationDocument";
3
+
4
+
5
+ export class PeopleUpdateRequest {
6
+
7
+ id?: string;
8
+ creationMethod?: string;
9
+ indexName?: string | null;
10
+ preferredName?: string | null;
11
+ usSuffix?: string | null;
12
+ usLastNames?: string | null;
13
+ usNames?: string | null;
14
+ latNames?: string | null;
15
+ latLastNamePaternal?: string | null;
16
+ latLastNameMaternal?: string | null;
17
+ aliasNames?: string[] | null;
18
+ preferredPronoun?: string | null;
19
+ SSN_ITIN?: string | null;
20
+ rfc?: string | null;
21
+ curp?: string | null;
22
+ passportNumber?: string | null;
23
+ countryOfPassport?: string | null;
24
+ documents?: IdentificationDocument[] | null;
25
+ countryOfBirth?: string | null;
26
+ dateOfBirth?: string | null;
27
+ stateOfBirth?: string | null;
28
+ nationalities?: string[] | null;
29
+ docSex?: SexDocument | null;
30
+ internalEmail?: string | null;
31
+ occupation?: string | null;
32
+ incomeSource?: string | null;
33
+ operationId?: string | null;
34
+ tenantId?: string | null;
35
+ photoOfpersonImageName?: string | null;
36
+ videoOfPersonImageName?: string | null;
37
+ USA_DebitAccount?: boolean;
38
+ MEX_DebitAccount?: boolean;
39
+ MEX_CreditClient?: boolean;
40
+ MEX_CreditAdditional?: boolean;
41
+ magicNumber?: boolean;
42
+ USA_UploadDocument?: boolean;
43
+ MEX_UploadDocument?: boolean;
44
+ videoSelfieVerified?: boolean;
45
+ MEX_ValidDocument?: string;
46
+ USA_ValidDocument?: string;
47
+ USA_FacematchVerified?: boolean | null;
48
+ MEX_FacematchVerified?: boolean | null;
49
+ fiadoListApproved?: boolean | null;
50
+ ofacListApproved?: boolean | null;
51
+ cnbvListApproved?: boolean | null;
52
+ blackListApproved?: boolean | null;
53
+ whiteList?: boolean | null;
54
+ hasOwner?: boolean;
55
+ older18?: boolean | null;
56
+ USA_Address?: boolean;
57
+ MEX_Address?: boolean;
58
+ COL_Address?: boolean;
59
+ GTM_Address?: boolean;
60
+ HND_Address?: boolean;
61
+ CRI_Address?: boolean;
62
+ PER_Address?: boolean;
63
+ MEX_ProofAddress?: boolean;
64
+ MEX_SendWish?: boolean;
65
+ COL_SendWish?: boolean;
66
+ GTM_SendWish?: boolean;
67
+ HND_SendWish?: boolean;
68
+ CRI_SendWish?: boolean;
69
+ PER_SendWish?: boolean;
70
+ USA_DebitAccountWish?: boolean;
71
+ MEX_DebitAccountWish?: boolean;
72
+ MEX_CreditAdditionalWish?: boolean;
73
+ MEX_CreditClientWish?: boolean;
74
+ SSN_ITINRequired?: boolean | null;
75
+ duplicateUserDetection?: boolean | null;
76
+ }
@@ -4,6 +4,7 @@ export * from './dtos/IdentificationDocument'
4
4
  export * from './dtos/PeopleCreateRequest';
5
5
  export * from './dtos/PeopleResponse';
6
6
  export * from './dtos/TypeOfDocument';
7
+ export * from './dtos/PeopleUpdateRequest';
7
8
 
8
9
  //enums
9
10
  export * from './enums/IdentificationDocumentStatus';