byzip-v2-sdk 1.0.4 → 1.0.5

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.
@@ -0,0 +1,148 @@
1
+ export interface CreateHousingSupplyDto {
2
+ houseManageNo?: string;
3
+ pblancNo: string;
4
+ houseName?: string;
5
+ houseSecd?: string;
6
+ houseSecdNm?: string;
7
+ houseDtlSecd?: string;
8
+ houseDtlSecdNm?: string;
9
+ rentSecd?: string;
10
+ rentSecdNm?: string;
11
+ subscrptAreaCode?: string;
12
+ subscrptAreaCodeNm?: string;
13
+ hssplyZip?: string;
14
+ hssplyAdres?: string;
15
+ latitude?: number;
16
+ longitude?: number;
17
+ totSuplyHshldco?: number;
18
+ rcritPblancDe?: string;
19
+ rceptBgnde?: string;
20
+ rceptEndde?: string;
21
+ spsplyRceptBgnde?: string;
22
+ spsplyRceptEndde?: string;
23
+ przwnerPresnatnDe?: string;
24
+ cntrctCnclsBgnde?: string;
25
+ cntrctCnclsEndde?: string;
26
+ mvnPrearngeYm?: string;
27
+ hmpgAdres?: string;
28
+ pblancUrl?: string;
29
+ mdhsTelno?: string;
30
+ cnstrctEntrpsNm?: string;
31
+ bsnsMbyNm?: string;
32
+ nsprcNm?: string;
33
+ specltRdnEarthAt?: string;
34
+ mdatTrgetAreaSecd?: string;
35
+ parcprcUlsAt?: string;
36
+ imprmnBsnsAt?: string;
37
+ publicHouseEarthAt?: string;
38
+ lrsclBldlndAt?: string;
39
+ nplnPrvoprPublicHouseAt?: string;
40
+ publicHouseSpclwApplcAt?: string;
41
+ }
42
+ export interface UpdateHousingSupplyDto {
43
+ houseName?: string;
44
+ subscrptAreaCodeNm?: string;
45
+ hssplyAdres?: string;
46
+ latitude?: number;
47
+ longitude?: number;
48
+ totSuplyHshldco?: number;
49
+ rcritPblancDe?: string;
50
+ rceptBgnde?: string;
51
+ rceptEndde?: string;
52
+ mdhsTelno?: string;
53
+ }
54
+ export interface GetHousingSuppliesQueryDto {
55
+ search?: string;
56
+ houseSecd?: string;
57
+ houseSecdNm?: string;
58
+ houseDtlSecd?: string;
59
+ rentSecd?: string;
60
+ subscrptAreaCodeNm?: string;
61
+ rcritPblancDeFrom?: string;
62
+ rcritPblancDeTo?: string;
63
+ rceptBgndeFrom?: string;
64
+ rceptBgndeTo?: string;
65
+ parcprcUlsAt?: string;
66
+ specltRdnEarthAt?: string;
67
+ page?: number;
68
+ limit?: number;
69
+ sortBy?: string;
70
+ sortOrder?: 'ASC' | 'DESC';
71
+ }
72
+ export interface PaginationMetaDto {
73
+ page: number;
74
+ limit: number;
75
+ total: number;
76
+ totalPages: number;
77
+ itemCount: number;
78
+ }
79
+ export interface HousingSupplyDataDto {
80
+ id: number;
81
+ houseManageNo?: string;
82
+ pblancNo?: string;
83
+ houseName?: string;
84
+ houseSecd?: string;
85
+ houseSecdNm?: string;
86
+ houseDtlSecd?: string;
87
+ houseDtlSecdNm?: string;
88
+ rentSecd?: string;
89
+ rentSecdNm?: string;
90
+ subscrptAreaCode?: string;
91
+ subscrptAreaCodeNm?: string;
92
+ hssplyZip?: string;
93
+ hssplyAdres?: string;
94
+ latitude?: number;
95
+ longitude?: number;
96
+ totSuplyHshldco?: number;
97
+ rcritPblancDe?: Date;
98
+ rceptBgnde?: Date;
99
+ rceptEndde?: Date;
100
+ spsplyRceptBgnde?: Date;
101
+ spsplyRceptEndde?: Date;
102
+ przwnerPresnatnDe?: Date;
103
+ cntrctCnclsBgnde?: Date;
104
+ cntrctCnclsEndde?: Date;
105
+ mvnPrearngeYm?: Date;
106
+ hmpgAdres?: string;
107
+ pblancUrl?: string;
108
+ mdhsTelno?: string;
109
+ cnstrctEntrpsNm?: string;
110
+ bsnsMbyNm?: string;
111
+ nsprcNm?: string;
112
+ specltRdnEarthAt?: string;
113
+ mdatTrgetAreaSecd?: string;
114
+ parcprcUlsAt?: string;
115
+ imprmnBsnsAt?: string;
116
+ publicHouseEarthAt?: string;
117
+ lrsclBldlndAt?: string;
118
+ nplnPrvoprPublicHouseAt?: string;
119
+ publicHouseSpclwApplcAt?: string;
120
+ collectedAt: Date;
121
+ createdAt: Date;
122
+ updatedAt: Date;
123
+ }
124
+ export interface GetHousingSupplyResponseDto {
125
+ success: boolean;
126
+ message: string;
127
+ data: HousingSupplyDataDto;
128
+ }
129
+ export interface GetHousingSuppliesResponseDto {
130
+ success: boolean;
131
+ message: string;
132
+ data: HousingSupplyDataDto[];
133
+ meta: PaginationMetaDto;
134
+ }
135
+ export interface CreateHousingSupplyResponseDto {
136
+ success: boolean;
137
+ message: string;
138
+ data: HousingSupplyDataDto;
139
+ }
140
+ export interface UpdateHousingSupplyResponseDto {
141
+ success: boolean;
142
+ message: string;
143
+ data: HousingSupplyDataDto;
144
+ }
145
+ export interface DeleteHousingSupplyResponseDto {
146
+ success: boolean;
147
+ message: string;
148
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@
5
5
  export * from './auth.const';
6
6
  export * from './auth.dto';
7
7
  export * from './bug-report.dto';
8
+ export * from './housing-supply.dto';
8
9
  export * from './jwt.types';
9
10
  export * from './response.dto';
10
11
  export * from './response.helpers';
package/dist/index.js CHANGED
@@ -21,6 +21,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
21
21
  __exportStar(require("./auth.const"), exports);
22
22
  __exportStar(require("./auth.dto"), exports);
23
23
  __exportStar(require("./bug-report.dto"), exports);
24
+ __exportStar(require("./housing-supply.dto"), exports);
24
25
  __exportStar(require("./jwt.types"), exports);
25
26
  __exportStar(require("./response.dto"), exports);
26
27
  __exportStar(require("./response.helpers"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "byzip-v2-sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [