@fiado/type-kit 2.0.17 → 2.0.18

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.
@@ -30,4 +30,5 @@ export declare class AccountCreateRequest {
30
30
  provider: Provider;
31
31
  SSN_ITIN?: string;
32
32
  externalReferenceId?: string;
33
+ source?: "BACKOFFICE" | "USER_APP" | "API";
33
34
  }
@@ -136,3 +136,8 @@ __decorate([
136
136
  (0, class_validator_1.IsOptional)(),
137
137
  __metadata("design:type", String)
138
138
  ], AccountCreateRequest.prototype, "externalReferenceId", void 0);
139
+ __decorate([
140
+ (0, class_validator_1.IsOptional)(),
141
+ (0, class_validator_1.IsString)(),
142
+ __metadata("design:type", String)
143
+ ], AccountCreateRequest.prototype, "source", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -103,4 +103,8 @@ export class AccountCreateRequest {
103
103
  @IsOptional()
104
104
  externalReferenceId?: string;
105
105
 
106
+ @IsOptional()
107
+ @IsString()
108
+ source?: "BACKOFFICE" | "USER_APP" | "API";
109
+
106
110
  }