repzo 1.0.44 → 1.0.45
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/lib/index.d.ts +349 -705
- package/lib/index.js +1022 -1589
- package/lib/types/index.d.ts +5215 -5575
- package/package.json +1 -1
- package/src/types/index.ts +2 -1
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -721,6 +721,7 @@ export namespace Service {
|
|
|
721
721
|
category: string | Category.CategorySchema;
|
|
722
722
|
sub_category?: string[] | SubCategory.SubCategorySchema[];
|
|
723
723
|
sv_tax?: string | Tax.TaxSchema | Pick<Tax.TaxSchema, "_id" | "name">;
|
|
724
|
+
tax?: string | Tax.TaxSchema;
|
|
724
725
|
sv_measureUnit?:
|
|
725
726
|
| string
|
|
726
727
|
| MeasureUnit.MeasureUnitSchema
|
|
@@ -1224,7 +1225,7 @@ export namespace Service {
|
|
|
1224
1225
|
}
|
|
1225
1226
|
|
|
1226
1227
|
export namespace Tax {
|
|
1227
|
-
type TaxType = "inclusive" | "additive"
|
|
1228
|
+
type TaxType = "inclusive" | "additive";
|
|
1228
1229
|
export interface TaxSchema {
|
|
1229
1230
|
_id: string;
|
|
1230
1231
|
name: string;
|