@yolo-croket-dev/amqp-access 0.7.291 → 0.7.292

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.
@@ -3,8 +3,7 @@ export declare class GetPInfoAdditionalPaymentInfoPayload {
3
3
  }
4
4
  export declare class GetPInfoAdditionalPaymentInfoResult {
5
5
  additionalPaymentCalculationGuide: string;
6
- originalPInfoItemImg: string;
7
- originalPInfoItemName: string;
8
- originalPInfoOptionName: string;
9
- originalPInfoOptionQuantity: number;
6
+ additionalPaymentItemImg: string;
7
+ additionalPaymentItemPrice: number;
8
+ additionalPaymentItemName: string;
10
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.291",
3
+ "version": "0.7.292",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -23,9 +23,9 @@
23
23
  "@yolo-croket-dev/domain": "0.2.45",
24
24
  "@yolo-croket-dev/dto-v2": "0.2.23",
25
25
  "@yolo-croket-dev/entity": "0.2.104",
26
- "@yolo-croket-dev/entity-v2": "0.3.34",
26
+ "@yolo-croket-dev/entity-v2": "0.3.35",
27
27
  "class-transformer": "^0.5.1",
28
28
  "class-validator": "^0.13.2",
29
29
  "dotenv": "^16.3.1"
30
30
  }
31
- }
31
+ }
@@ -1,6 +1,6 @@
1
1
  import { AdCenterSettle } from '@yolo-croket-dev/entity/src/ad-center-settle/ad-center-settle.schema';
2
2
  import { BusinessInfo } from '@yolo-croket-dev/entity/src/store';
3
- declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common").Type<Pick<AdCenterSettle, "_id" | "sellerId" | "publicId" | "couponInfo" | "pastStoreInfo" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "PInfoId" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
3
+ declare const AdCenterSettleForGoogleSheet_base: import("@nestjs/common/interfaces").Type<Pick<AdCenterSettle, "_id" | "sellerId" | "publicId" | "couponInfo" | "pastStoreInfo" | "expectedSettleDateString" | "adType" | "adCenterStartDateString" | "adCenterEndDateString" | "actualSettleDateString" | "PInfoId" | "transactionInfo" | "subtractionSettleAmountInfo" | "bizMemo" | "financeMemo" | "settlementManagerInfo" | "googleSheetInfo">>;
4
4
  /** 구글 시트용 광고센터정산 데이터 */
5
5
  export declare class AdCenterSettleForGoogleSheet extends AdCenterSettleForGoogleSheet_base {
6
6
  storeInfo: {
@@ -1,14 +0,0 @@
1
- import { CustomsConsigneeInfoPayload, CustomsOrdererInfoPayload, RequestCustomsPcccValidationResult } from './request-customs-pccc-validation.dto';
2
- /** @author 홍준 @description 관세청 PER003 장애 사후처리 DTO @process 관세청 장애 기간에 응답받지 못한 PER001 요청을 주문완료·호출시각과 함께 순차 재검증한다. */
3
- export declare class PostProcessCustomsPcccValidationPayload {
4
- reqt_no: string;
5
- reqt_tp: '01' | '02';
6
- ordrr_info: CustomsOrdererInfoPayload;
7
- cnsi_info: CustomsConsigneeInfoPayload;
8
- cnsi_pers_ecm?: string;
9
- ord_cmpl_dttm: string;
10
- call_dttm: string;
11
- ord_no: string;
12
- }
13
- export declare class PostProcessCustomsPcccValidationResult extends RequestCustomsPcccValidationResult {
14
- }
@@ -1,64 +0,0 @@
1
- const __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
- const c = arguments.length; let r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc; let
3
- d;
4
- if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function') r = Reflect.decorate(decorators, target, key, desc);
5
- else for (let i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- const __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === 'object' && typeof Reflect.metadata === 'function') return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, '__esModule', { value: true });
12
- exports.PostProcessCustomsPcccValidationResult = exports.PostProcessCustomsPcccValidationPayload = void 0;
13
- const class_transformer_1 = require('class-transformer');
14
- const class_validator_1 = require('class-validator');
15
- const request_customs_pccc_validation_dto_1 = require('./request-customs-pccc-validation.dto');
16
- /** @author 홍준 @description 관세청 PER003 장애 사후처리 DTO @process 관세청 장애 기간에 응답받지 못한 PER001 요청을 주문완료·호출시각과 함께 순차 재검증한다. */
17
- class PostProcessCustomsPcccValidationPayload {
18
- }
19
- exports.PostProcessCustomsPcccValidationPayload = PostProcessCustomsPcccValidationPayload;
20
- __decorate([
21
- (0, class_validator_1.IsString)(),
22
- (0, class_validator_1.Matches)(/^\d{18}$/),
23
- __metadata('design:type', String),
24
- ], PostProcessCustomsPcccValidationPayload.prototype, 'reqt_no', void 0);
25
- __decorate([
26
- (0, class_validator_1.IsIn)([
27
- '01',
28
- '02',
29
- ]),
30
- __metadata('design:type', String),
31
- ], PostProcessCustomsPcccValidationPayload.prototype, 'reqt_tp', void 0);
32
- __decorate([
33
- (0, class_validator_1.ValidateNested)(),
34
- (0, class_transformer_1.Type)(() => request_customs_pccc_validation_dto_1.CustomsOrdererInfoPayload),
35
- __metadata('design:type', request_customs_pccc_validation_dto_1.CustomsOrdererInfoPayload),
36
- ], PostProcessCustomsPcccValidationPayload.prototype, 'ordrr_info', void 0);
37
- __decorate([
38
- (0, class_validator_1.ValidateNested)(),
39
- (0, class_transformer_1.Type)(() => request_customs_pccc_validation_dto_1.CustomsConsigneeInfoPayload),
40
- __metadata('design:type', request_customs_pccc_validation_dto_1.CustomsConsigneeInfoPayload),
41
- ], PostProcessCustomsPcccValidationPayload.prototype, 'cnsi_info', void 0);
42
- __decorate([
43
- (0, class_validator_1.IsString)(),
44
- (0, class_validator_1.IsOptional)(),
45
- (0, class_validator_1.Matches)(/^[PO]\d{12}$/i),
46
- __metadata('design:type', String),
47
- ], PostProcessCustomsPcccValidationPayload.prototype, 'cnsi_pers_ecm', void 0);
48
- __decorate([
49
- (0, class_validator_1.IsString)(),
50
- (0, class_validator_1.Matches)(/^\d{14}$/),
51
- __metadata('design:type', String),
52
- ], PostProcessCustomsPcccValidationPayload.prototype, 'ord_cmpl_dttm', void 0);
53
- __decorate([
54
- (0, class_validator_1.IsString)(),
55
- (0, class_validator_1.Matches)(/^\d{14}$/),
56
- __metadata('design:type', String),
57
- ], PostProcessCustomsPcccValidationPayload.prototype, 'call_dttm', void 0);
58
- __decorate([
59
- (0, class_validator_1.IsString)(),
60
- __metadata('design:type', String),
61
- ], PostProcessCustomsPcccValidationPayload.prototype, 'ord_no', void 0);
62
- class PostProcessCustomsPcccValidationResult extends request_customs_pccc_validation_dto_1.RequestCustomsPcccValidationResult {
63
- }
64
- exports.PostProcessCustomsPcccValidationResult = PostProcessCustomsPcccValidationResult;
@@ -1,15 +0,0 @@
1
- import { CustomsConsigneeInfoPayload, CustomsOrdererInfoPayload } from './request-customs-pccc-validation.dto';
2
- /** @author 홍준 @description 관세청 PER002 개인통관고유부호 재검증 DTO @process 기존 PER001 요청번호를 기준으로 변경된 연락처·우편번호의 유효성을 확인한다. */
3
- export declare class RevalidateCustomsPcccPayload {
4
- reqt_no: string;
5
- brno?: string;
6
- reqt_tp: '01' | '02';
7
- ordrr_info?: CustomsOrdererInfoPayload;
8
- cnsi_info: CustomsConsigneeInfoPayload;
9
- cnsi_pers_ecm?: string;
10
- }
11
- export declare class RevalidateCustomsPcccResult {
12
- reqtNo: string;
13
- validationPeriod: string;
14
- verified: boolean;
15
- }
@@ -1,57 +0,0 @@
1
- const __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
- const c = arguments.length; let r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc; let
3
- d;
4
- if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function') r = Reflect.decorate(decorators, target, key, desc);
5
- else for (let i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- const __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === 'object' && typeof Reflect.metadata === 'function') return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, '__esModule', { value: true });
12
- exports.RevalidateCustomsPcccResult = exports.RevalidateCustomsPcccPayload = void 0;
13
- const class_transformer_1 = require('class-transformer');
14
- const class_validator_1 = require('class-validator');
15
- const request_customs_pccc_validation_dto_1 = require('./request-customs-pccc-validation.dto');
16
- /** @author 홍준 @description 관세청 PER002 개인통관고유부호 재검증 DTO @process 기존 PER001 요청번호를 기준으로 변경된 연락처·우편번호의 유효성을 확인한다. */
17
- class RevalidateCustomsPcccPayload {
18
- }
19
- exports.RevalidateCustomsPcccPayload = RevalidateCustomsPcccPayload;
20
- __decorate([
21
- (0, class_validator_1.IsString)(),
22
- (0, class_validator_1.Matches)(/^\d{18}$/),
23
- __metadata('design:type', String),
24
- ], RevalidateCustomsPcccPayload.prototype, 'reqt_no', void 0);
25
- __decorate([
26
- (0, class_validator_1.IsString)(),
27
- (0, class_validator_1.IsOptional)(),
28
- (0, class_validator_1.Matches)(/^\d{10}$/),
29
- __metadata('design:type', String),
30
- ], RevalidateCustomsPcccPayload.prototype, 'brno', void 0);
31
- __decorate([
32
- (0, class_validator_1.IsIn)([
33
- '01',
34
- '02',
35
- ]),
36
- __metadata('design:type', String),
37
- ], RevalidateCustomsPcccPayload.prototype, 'reqt_tp', void 0);
38
- __decorate([
39
- (0, class_validator_1.ValidateNested)(),
40
- (0, class_transformer_1.Type)(() => request_customs_pccc_validation_dto_1.CustomsOrdererInfoPayload),
41
- (0, class_validator_1.IsOptional)(),
42
- __metadata('design:type', request_customs_pccc_validation_dto_1.CustomsOrdererInfoPayload),
43
- ], RevalidateCustomsPcccPayload.prototype, 'ordrr_info', void 0);
44
- __decorate([
45
- (0, class_validator_1.ValidateNested)(),
46
- (0, class_transformer_1.Type)(() => request_customs_pccc_validation_dto_1.CustomsConsigneeInfoPayload),
47
- __metadata('design:type', request_customs_pccc_validation_dto_1.CustomsConsigneeInfoPayload),
48
- ], RevalidateCustomsPcccPayload.prototype, 'cnsi_info', void 0);
49
- __decorate([
50
- (0, class_validator_1.IsString)(),
51
- (0, class_validator_1.IsOptional)(),
52
- (0, class_validator_1.Matches)(/^[PO]\d{12}$/i),
53
- __metadata('design:type', String),
54
- ], RevalidateCustomsPcccPayload.prototype, 'cnsi_pers_ecm', void 0);
55
- class RevalidateCustomsPcccResult {
56
- }
57
- exports.RevalidateCustomsPcccResult = RevalidateCustomsPcccResult;
@@ -1,4 +0,0 @@
1
- /** @author 홍준 @description 관세청 AUT002 접근 토큰 폐기 결과 DTO @process 서버가 보관한 현재 토큰을 관세청에 폐기 요청하고 로컬 캐시를 비운다. */
2
- export declare class RevokeCustomsAccessTokenResult {
3
- revoked: boolean;
4
- }
@@ -1,6 +0,0 @@
1
- Object.defineProperty(exports, '__esModule', { value: true });
2
- exports.RevokeCustomsAccessTokenResult = void 0;
3
- /** @author 홍준 @description 관세청 AUT002 접근 토큰 폐기 결과 DTO @process 서버가 보관한 현재 토큰을 관세청에 폐기 요청하고 로컬 캐시를 비운다. */
4
- class RevokeCustomsAccessTokenResult {
5
- }
6
- exports.RevokeCustomsAccessTokenResult = RevokeCustomsAccessTokenResult;
@@ -1,5 +0,0 @@
1
- /** @author 홍준 @description 관세청 TRA003 미조회 거래정보 오류 조회 DTO @process 최근 7일 이내 미조회 오류를 수신하여 내부 제출 이력에 반영한다. */
2
- export declare class GetUnreadCustomsTradeErrorsResult {
3
- unreadCount: number;
4
- transactionErrors: Array<Record<string, unknown>>;
5
- }
@@ -1,6 +0,0 @@
1
- Object.defineProperty(exports, '__esModule', { value: true });
2
- exports.GetUnreadCustomsTradeErrorsResult = void 0;
3
- /** @author 홍준 @description 관세청 TRA003 미조회 거래정보 오류 조회 DTO @process 최근 7일 이내 미조회 오류를 수신하여 내부 제출 이력에 반영한다. */
4
- class GetUnreadCustomsTradeErrorsResult {
5
- }
6
- exports.GetUnreadCustomsTradeErrorsResult = GetUnreadCustomsTradeErrorsResult;