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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -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" | "N/A";
1228
+ type TaxType = "inclusive" | "additive";
1228
1229
  export interface TaxSchema {
1229
1230
  _id: string;
1230
1231
  name: string;