@yolo-croket-dev/amqp-access 0.7.134 → 0.7.135

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.
@@ -4,6 +4,6 @@ export declare class IssueDailyRandomCouponPayload {
4
4
  }
5
5
  export interface IssueDailyRandomCouponResult {
6
6
  isSuccess: boolean;
7
- issuedCoupon: IssueCouponResult;
7
+ issuedCoupon?: IssueCouponResult;
8
8
  errorCode?: string;
9
9
  }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IsIso8601Utc = IsIso8601Utc;
3
+ exports.IsIso8601Utc = void 0;
4
4
  const class_validator_1 = require("class-validator");
5
5
  /**
6
6
  * @author jun
@@ -42,3 +42,4 @@ function IsIso8601Utc(validationOptions) {
42
42
  });
43
43
  };
44
44
  }
45
+ exports.IsIso8601Utc = IsIso8601Utc;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IsYyyyMmDd = IsYyyyMmDd;
3
+ exports.IsYyyyMmDd = void 0;
4
4
  const class_validator_1 = require("class-validator");
5
5
  /**
6
6
  * @author jun
@@ -43,3 +43,4 @@ function IsYyyyMmDd(validationOptions) {
43
43
  });
44
44
  };
45
45
  }
46
+ exports.IsYyyyMmDd = IsYyyyMmDd;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.134",
3
+ "version": "0.7.135",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -8,10 +8,10 @@
8
8
  "croket"
9
9
  ],
10
10
  "scripts": {
11
- "build": "tsc",
11
+ "build": "node ../../node_modules/typescript/bin/tsc",
12
12
  "lint": "eslint src/**/*.ts",
13
13
  "fix": "eslint --fix src/**/*.ts",
14
- "clean": "tsc --build --clean",
14
+ "clean": "node ../../node_modules/typescript/bin/tsc --build --clean",
15
15
  "prepublishOnly": "npm run build",
16
16
  "postpublish": "npm run clean"
17
17
  },
@@ -27,4 +27,4 @@
27
27
  "class-validator": "^0.13.2",
28
28
  "dotenv": "^16.3.1"
29
29
  }
30
- }
30
+ }