@fiado/type-kit 1.9.93 → 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.9.93",
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