@fiado/type-kit 1.4.73 → 1.4.75

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.
@@ -1,5 +1,6 @@
1
1
  export declare class SPEITransferCreateRequest {
2
2
  directoryId: string;
3
+ peopleId: string;
3
4
  phoneNumber: string;
4
5
  clabe: string;
5
6
  amount: number;
@@ -19,6 +19,11 @@ __decorate([
19
19
  (0, class_validator_1.IsString)(),
20
20
  __metadata("design:type", String)
21
21
  ], SPEITransferCreateRequest.prototype, "directoryId", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsNotEmpty)(),
24
+ (0, class_validator_1.IsString)(),
25
+ __metadata("design:type", String)
26
+ ], SPEITransferCreateRequest.prototype, "peopleId", void 0);
22
27
  __decorate([
23
28
  (0, class_validator_1.IsNotEmpty)(),
24
29
  (0, class_validator_1.IsString)(),
@@ -1,7 +1,10 @@
1
1
  export declare class SPEITransferResponse {
2
2
  id: string;
3
3
  directoryId: string;
4
+ peopleId: string;
5
+ indexName: string;
4
6
  phoneNumber: string;
7
+ destinationPhoneNumber: string;
5
8
  clabe: string;
6
9
  amount: number;
7
10
  bankId: string;
@@ -1,4 +1,6 @@
1
1
  export declare class AuthorizeP2pTransactionRequest {
2
+ sourceDirectoryId?: string;
3
+ sourcePeopleId?: string;
2
4
  idempotencyKey: string;
3
5
  productCatalogId: string;
4
6
  targetDirectoryId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.4.73",
3
+ "version": "1.4.75",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -7,6 +7,10 @@ export class SPEITransferCreateRequest {
7
7
  @IsString()
8
8
  directoryId: string;
9
9
 
10
+ @IsNotEmpty()
11
+ @IsString()
12
+ peopleId: string;
13
+
10
14
  @IsNotEmpty()
11
15
  @IsString()
12
16
  phoneNumber: string;
@@ -4,7 +4,10 @@
4
4
  export class SPEITransferResponse {
5
5
  id: string;
6
6
  directoryId: string;
7
+ peopleId: string;
8
+ indexName: string;
7
9
  phoneNumber: string;
10
+ destinationPhoneNumber: string;
8
11
  clabe: string;
9
12
  amount: number;
10
13
  bankId: string;
@@ -1,4 +1,6 @@
1
1
  export class AuthorizeP2pTransactionRequest {
2
+ sourceDirectoryId?: string;
3
+ sourcePeopleId?: string;
2
4
  idempotencyKey: string;
3
5
  productCatalogId: string;
4
6
  targetDirectoryId: string;