@fiado/type-kit 1.1.15 → 1.1.16

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.
@@ -137,4 +137,6 @@ d
137
137
  K
138
138
  src/productCatalog/index.ts,7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd
139
139
  c
140
- 3src/productCatalog/dtos/GetProductCatalogRequest.ts,1/6/16863f8a5d6b34f47d8d39b36f6b7608e1db454d
140
+ 3src/productCatalog/dtos/GetProductCatalogRequest.ts,1/6/16863f8a5d6b34f47d8d39b36f6b7608e1db454d
141
+ f
142
+ 6src/productCatalog/dtos/CreateProductCatalogRequest.ts,2/9/2983524a17882775f03310e18fd052a958d44d3b
@@ -137,4 +137,6 @@ d
137
137
  K
138
138
  src/productCatalog/index.ts,7/4/7489a99709fa9ca44fa1a085c02ee8502e21a9fd
139
139
  c
140
- 3src/productCatalog/dtos/GetProductCatalogRequest.ts,1/6/16863f8a5d6b34f47d8d39b36f6b7608e1db454d
140
+ 3src/productCatalog/dtos/GetProductCatalogRequest.ts,1/6/16863f8a5d6b34f47d8d39b36f6b7608e1db454d
141
+ f
142
+ 6src/productCatalog/dtos/CreateProductCatalogRequest.ts,2/9/2983524a17882775f03310e18fd052a958d44d3b
@@ -0,0 +1,10 @@
1
+ import { CountryId } from "../../country";
2
+ import { ProductTaxFeeTypeEnum } from "../enums/ProductTaxFeeTypeEnum";
3
+ export declare class CreateProductCatalogRequest {
4
+ id: string;
5
+ currencyId: CountryId;
6
+ feeType: ProductTaxFeeTypeEnum;
7
+ fee: number;
8
+ taxType: ProductTaxFeeTypeEnum;
9
+ tax: number;
10
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateProductCatalogRequest = void 0;
4
+ class CreateProductCatalogRequest {
5
+ }
6
+ exports.CreateProductCatalogRequest = CreateProductCatalogRequest;
@@ -1,3 +1,4 @@
1
1
  export * from './dtos/GetProductCatalogRequest';
2
2
  export * from './dtos/GetProductCatalogResponse';
3
+ export * from './dtos/CreateProductCatalogRequest';
3
4
  export * from './enums/ProductTaxFeeTypeEnum';
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./dtos/GetProductCatalogRequest"), exports);
18
18
  __exportStar(require("./dtos/GetProductCatalogResponse"), exports);
19
+ __exportStar(require("./dtos/CreateProductCatalogRequest"), exports);
19
20
  __exportStar(require("./enums/ProductTaxFeeTypeEnum"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,11 @@
1
+ import {CountryId} from "../../country";
2
+ import {ProductTaxFeeTypeEnum} from "../enums/ProductTaxFeeTypeEnum";
3
+
4
+ export class CreateProductCatalogRequest {
5
+ id: string;
6
+ currencyId: CountryId;
7
+ feeType: ProductTaxFeeTypeEnum;
8
+ fee: number;
9
+ taxType: ProductTaxFeeTypeEnum;
10
+ tax: number;
11
+ }
@@ -1,4 +1,5 @@
1
1
  export * from './dtos/GetProductCatalogRequest';
2
2
  export * from './dtos/GetProductCatalogResponse';
3
+ export * from './dtos/CreateProductCatalogRequest';
3
4
 
4
5
  export * from './enums/ProductTaxFeeTypeEnum';