@fiado/type-kit 2.0.5 → 2.0.6

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,5 @@
1
1
  import { UpdateBalanceOperation } from "./UpdateBalanceOperation";
2
2
  export declare class AccountUpdateBalanceRequest {
3
3
  operations: UpdateBalanceOperation[];
4
- productCatalogId?: string;
4
+ executionId?: string;
5
5
  }
@@ -22,4 +22,4 @@ __decorate([
22
22
  (0, class_validator_1.IsOptional)(),
23
23
  (0, class_validator_1.IsString)(),
24
24
  __metadata("design:type", String)
25
- ], AccountUpdateBalanceRequest.prototype, "productCatalogId", void 0);
25
+ ], AccountUpdateBalanceRequest.prototype, "executionId", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -8,5 +8,5 @@ export class AccountUpdateBalanceRequest {
8
8
  // PARA IDENTIFICAR LA TRANSACCION DE COLLECTOR QUE ESTA REALIZANDO LA OPERACION
9
9
  @IsOptional()
10
10
  @IsString()
11
- productCatalogId?: string;
11
+ executionId?: string;
12
12
  }