@fiado/type-kit 1.0.89 → 1.0.91

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.
@@ -94,4 +94,7 @@ P
94
94
  `
95
95
  0src/exchangeRate/dtos/GetExchangeRatesRequest.ts,5/2/52124373285180cc9fc913380c1cf02a160f9e62
96
96
  I
97
- src/exchangeRate/index.ts,b/c/bc5b896ed63da1497d081036364d9f2384f2ea37
97
+ src/exchangeRate/index.ts,b/c/bc5b896ed63da1497d081036364d9f2384f2ea37
98
+ :
99
+
100
+ .gitignore,a/5/a5cc2925ca8258af241be7e5b0381edf30266302
@@ -94,4 +94,7 @@ P
94
94
  `
95
95
  0src/exchangeRate/dtos/GetExchangeRatesRequest.ts,5/2/52124373285180cc9fc913380c1cf02a160f9e62
96
96
  I
97
- src/exchangeRate/index.ts,b/c/bc5b896ed63da1497d081036364d9f2384f2ea37
97
+ src/exchangeRate/index.ts,b/c/bc5b896ed63da1497d081036364d9f2384f2ea37
98
+ :
99
+
100
+ .gitignore,a/5/a5cc2925ca8258af241be7e5b0381edf30266302
@@ -7,5 +7,6 @@ export default class PocketItem {
7
7
  phoneNumber: string;
8
8
  name: string;
9
9
  lastName: string;
10
+ profilePicture: string;
10
11
  pocketBalance: PocketBalanceItem[];
11
12
  }
@@ -51,6 +51,10 @@ __decorate([
51
51
  (0, class_validator_1.IsString)(),
52
52
  __metadata("design:type", String)
53
53
  ], PocketItem.prototype, "lastName", void 0);
54
+ __decorate([
55
+ (0, class_validator_1.IsString)(),
56
+ __metadata("design:type", String)
57
+ ], PocketItem.prototype, "profilePicture", void 0);
54
58
  __decorate([
55
59
  (0, class_validator_1.ValidateNested)(),
56
60
  __metadata("design:type", Array)
@@ -1,5 +1,5 @@
1
1
  import { AddressResponse } from "../../../address";
2
- import { TypeOfDocument } from "../../../identity/dtos/TypeOfDocument";
2
+ import { TypeOfDocument } from "../../../identity/enums/TypeOfDocument";
3
3
  export declare class CreateBankAccountCardShippingRequest {
4
4
  externalCardId?: string;
5
5
  typeOfDocumentId?: TypeOfDocument;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.0.89",
3
+ "version": "1.0.91",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -36,6 +36,9 @@ export default class PocketItem {
36
36
  @IsString()
37
37
  lastName: string;
38
38
 
39
+ @IsString()
40
+ profilePicture: string;
41
+
39
42
  @ValidateNested()
40
43
  pocketBalance: PocketBalanceItem[];
41
44
  }
@@ -1,5 +1,5 @@
1
1
  import { AddressResponse } from "../../../address";
2
- import { TypeOfDocument } from "../../../identity/dtos/TypeOfDocument";
2
+ import { TypeOfDocument } from "../../../identity/enums/TypeOfDocument";
3
3
 
4
4
  export class CreateBankAccountCardShippingRequest {
5
5
  externalCardId?: string;