@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.3 → 0.0.4

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.
@@ -6,6 +6,7 @@ declare class StoreStockInService extends BaseService {
6
6
  detail(request: StoreStockInTypes.Request.GetDetail): Promise<StoreStockInTypes.Response.GetDetail>;
7
7
  list(request: StoreStockInTypes.Request.GetList): Promise<StoreStockInTypes.Response.GetList>;
8
8
  earlyComplete(request: StoreStockInTypes.Request.EarlyComplete): Promise<void>;
9
+ delete(request: StoreStockInTypes.Request.Delete): Promise<void>;
9
10
  detailList(request: StoreStockInTypes.Request.IDetailList): Promise<StoreStockInTypes.Response.IDetailList>;
10
11
  }
11
12
  export declare const storeStockInService: StoreStockInService;
@@ -33,6 +33,9 @@ let StoreStockInService = class StoreStockInService extends BaseService_1.defaul
33
33
  earlyComplete(request) {
34
34
  return (0, http_1.callApi)(this.getApiUrl(this.earlyComplete), request);
35
35
  }
36
+ delete(request) {
37
+ return (0, http_1.callApi)(this.getApiUrl(this.delete), request);
38
+ }
36
39
  detailList(request) {
37
40
  return (0, http_1.callApi)(this.getApiUrl(this.detailList), request);
38
41
  }
@@ -53,6 +56,10 @@ __decorate([
53
56
  (0, tsoa_1.Post)('early-complete'),
54
57
  __param(0, (0, tsoa_1.Body)())
55
58
  ], StoreStockInService.prototype, "earlyComplete", null);
59
+ __decorate([
60
+ (0, tsoa_1.Post)('delete'),
61
+ __param(0, (0, tsoa_1.Body)())
62
+ ], StoreStockInService.prototype, "delete", null);
56
63
  __decorate([
57
64
  (0, tsoa_1.Post)('detail-list'),
58
65
  __param(0, (0, tsoa_1.Body)())
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-plan-allocation-service-node-sdk",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",