qeai-sdk 2.1.2 → 2.1.3
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.
- package/dist/dtos/ingredients/create-ingredient.dto.d.ts +1 -1
- package/dist/dtos/ingredients/create-ingredient.dto.js +1 -1
- package/dist/dtos/ingredients/update-ingredient.dto.d.ts +1 -1
- package/dist/dtos/ingredients/update-ingredient.dto.js +1 -1
- package/dist/dtos/inventory/index.d.ts +2 -2
- package/dist/dtos/inventory/index.js +2 -2
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
10
|
import { IsString, IsNotEmpty, MaxLength, IsMongoId, IsIn, } from "class-validator";
|
|
11
|
-
import { INGREDIENT_UNITS, } from "../../types/ingredient-unit.type";
|
|
11
|
+
import { INGREDIENT_UNITS, } from "../../types/ingredient-unit.type.js";
|
|
12
12
|
/**
|
|
13
13
|
* DTO for creating a new ingredient.
|
|
14
14
|
*
|
|
@@ -8,7 +8,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
10
|
import { IsString, IsOptional, IsMongoId, IsUUID, MaxLength, IsNotEmpty, IsIn, } from "class-validator";
|
|
11
|
-
import { INGREDIENT_UNITS, } from "../../types/ingredient-unit.type";
|
|
11
|
+
import { INGREDIENT_UNITS, } from "../../types/ingredient-unit.type.js";
|
|
12
12
|
/**
|
|
13
13
|
* DTO for updating an existing ingredient.
|
|
14
14
|
*
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./adjust-ingredient-inventory.dto";
|
|
2
|
-
export * from "./set-ingredient-inventory.dto";
|
|
1
|
+
export * from "./adjust-ingredient-inventory.dto.js";
|
|
2
|
+
export * from "./set-ingredient-inventory.dto.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./adjust-ingredient-inventory.dto";
|
|
2
|
-
export * from "./set-ingredient-inventory.dto";
|
|
1
|
+
export * from "./adjust-ingredient-inventory.dto.js";
|
|
2
|
+
export * from "./set-ingredient-inventory.dto.js";
|