@fiado/type-kit 1.9.71 → 1.9.72

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.
@@ -27,6 +27,8 @@ export declare class CollectionOrderBusiness {
27
27
  currencyId?: string;
28
28
  metadata?: Record<string, any>;
29
29
  type?: string;
30
+ servicePriceListId: string;
31
+ notional: number;
30
32
  createdAt?: Date;
31
33
  updatedAt?: Date;
32
34
  }
@@ -128,6 +128,14 @@ __decorate([
128
128
  (0, class_validator_1.IsOptional)(),
129
129
  __metadata("design:type", String)
130
130
  ], CollectionOrderBusiness.prototype, "type", void 0);
131
+ __decorate([
132
+ (0, class_validator_1.IsString)(),
133
+ __metadata("design:type", String)
134
+ ], CollectionOrderBusiness.prototype, "servicePriceListId", void 0);
135
+ __decorate([
136
+ (0, class_validator_1.IsNumber)(),
137
+ __metadata("design:type", Number)
138
+ ], CollectionOrderBusiness.prototype, "notional", void 0);
131
139
  __decorate([
132
140
  (0, class_validator_1.IsDate)(),
133
141
  (0, class_validator_1.IsOptional)(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.9.71",
3
+ "version": "1.9.72",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -104,6 +104,12 @@ export class CollectionOrderBusiness {
104
104
  @IsOptional()
105
105
  type?: string;
106
106
 
107
+ @IsString()
108
+ servicePriceListId!: string;
109
+
110
+ @IsNumber()
111
+ notional!: number;
112
+
107
113
  @IsDate()
108
114
  @IsOptional()
109
115
  createdAt?: Date;