@yolo-croket-dev/amqp-access 0.0.67 → 0.0.68-hj-2
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
|
@@ -29,9 +29,9 @@ export declare class GetStoresForTossPaymentPayload {
|
|
|
29
29
|
/** @description userIds 값 존재하면 무시 */
|
|
30
30
|
page?: number;
|
|
31
31
|
/** @description 입정승인된 날짜 시작일 */
|
|
32
|
-
startVerificationApprovedUpdatedAt?:
|
|
32
|
+
startVerificationApprovedUpdatedAt?: string;
|
|
33
33
|
/** @description 입정승인된 날짜 끝일 */
|
|
34
|
-
endVerificationApprovedUpdatedAt?:
|
|
34
|
+
endVerificationApprovedUpdatedAt?: string;
|
|
35
35
|
}
|
|
36
36
|
export declare enum GetStoresForTossPaymentErrorTypeEnum {
|
|
37
37
|
/** @description 스토어가 존재하지 않는 userId들이 있을 때 - message에 userId list 반환 */
|
|
@@ -27,12 +27,12 @@ __decorate([
|
|
|
27
27
|
__decorate([
|
|
28
28
|
(0, class_validator_1.IsDate)(),
|
|
29
29
|
(0, class_validator_1.IsOptional)(),
|
|
30
|
-
__metadata("design:type",
|
|
30
|
+
__metadata("design:type", String)
|
|
31
31
|
], GetStoresForTossPaymentPayload.prototype, "startVerificationApprovedUpdatedAt", void 0);
|
|
32
32
|
__decorate([
|
|
33
|
-
(0, class_validator_1.
|
|
33
|
+
(0, class_validator_1.IsDateString)(),
|
|
34
34
|
(0, class_validator_1.IsOptional)(),
|
|
35
|
-
__metadata("design:type",
|
|
35
|
+
__metadata("design:type", String)
|
|
36
36
|
], GetStoresForTossPaymentPayload.prototype, "endVerificationApprovedUpdatedAt", void 0);
|
|
37
37
|
var GetStoresForTossPaymentErrorTypeEnum;
|
|
38
38
|
(function (GetStoresForTossPaymentErrorTypeEnum) {
|