@fiado/type-kit 1.9.92 → 1.9.94

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.
@@ -29,4 +29,5 @@ export declare class AccountCreateRequest {
29
29
  userProfile: Profile;
30
30
  provider: Provider;
31
31
  SSN_ITIN?: string;
32
+ externalReferenceId?: string;
32
33
  }
@@ -129,3 +129,7 @@ __decorate([
129
129
  (0, class_validator_1.IsOptional)(),
130
130
  __metadata("design:type", String)
131
131
  ], AccountCreateRequest.prototype, "SSN_ITIN", void 0);
132
+ __decorate([
133
+ (0, class_validator_1.IsOptional)(),
134
+ __metadata("design:type", String)
135
+ ], AccountCreateRequest.prototype, "externalReferenceId", void 0);
@@ -14,4 +14,5 @@ export declare class CreateBankAccountUserRequest {
14
14
  documentType?: string;
15
15
  SSN_ITIN?: string;
16
16
  gender?: "M" | "F";
17
+ externalReferenceId?: string;
17
18
  }
@@ -94,6 +94,7 @@ export declare class PeopleResponse {
94
94
  status: AccountRequirementStatusEnum;
95
95
  observations: string;
96
96
  selfieResult: string | null;
97
+ externalReferenceId: string | null;
97
98
  };
98
99
  SIN: string | null;
99
100
  documentNumber: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.9.92",
3
+ "version": "1.9.94",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -97,5 +97,8 @@ export class AccountCreateRequest {
97
97
  @IsOptional()
98
98
  SSN_ITIN?: string;
99
99
 
100
+ @IsOptional()
101
+ externalReferenceId?: string;
102
+
100
103
  }
101
104
 
@@ -15,6 +15,7 @@ export class CreateBankAccountUserRequest {
15
15
  documentType?: string;
16
16
  SSN_ITIN?: string;
17
17
  gender?: "M" | "F";
18
+ externalReferenceId?: string;
18
19
  }
19
20
 
20
21
 
@@ -97,6 +97,7 @@ export class PeopleResponse {
97
97
  status:AccountRequirementStatusEnum,
98
98
  observations:string,
99
99
  selfieResult:string | null;
100
+ externalReferenceId:string | null;
100
101
 
101
102
  }
102
103
  SIN: string | null;
@@ -1,18 +0,0 @@
1
- import { CollectionOrderExecutionStatus } from "../enums/CollectionOrderExecutionStatus";
2
- export interface OrdersCollector {
3
- id: string;
4
- executionId: string;
5
- createdAt: number;
6
- updatedAt: number;
7
- status: CollectionOrderExecutionStatus;
8
- startedAt: number;
9
- finishedAt?: number;
10
- totalOrders?: number;
11
- batchesSent?: number;
12
- ordersCompleted?: number;
13
- ordersPartial?: number;
14
- ordersDue?: number;
15
- ordersError?: number;
16
- notes?: string;
17
- executedBy?: string;
18
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });