deliveryapi 0.1.0 → 0.1.1
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/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -85,7 +85,7 @@ var TrackingResource = class {
|
|
|
85
85
|
* @param includeProgresses 진행 내역 포함 여부 (기본값: true)
|
|
86
86
|
*/
|
|
87
87
|
async get(items, includeProgresses = true) {
|
|
88
|
-
return this.http.post("/v1/
|
|
88
|
+
return this.http.post("/v1/tracking/trace", {
|
|
89
89
|
items,
|
|
90
90
|
includeProgresses
|
|
91
91
|
});
|
|
@@ -183,7 +183,7 @@ var CouriersResource = class {
|
|
|
183
183
|
* 지원 택배사 목록 조회
|
|
184
184
|
*/
|
|
185
185
|
async list() {
|
|
186
|
-
return this.http.get("/v1/
|
|
186
|
+
return this.http.get("/v1/tracking/couriers");
|
|
187
187
|
}
|
|
188
188
|
};
|
|
189
189
|
|
package/dist/index.js
CHANGED
|
@@ -83,7 +83,7 @@ var TrackingResource = class {
|
|
|
83
83
|
* @param includeProgresses 진행 내역 포함 여부 (기본값: true)
|
|
84
84
|
*/
|
|
85
85
|
async get(items, includeProgresses = true) {
|
|
86
|
-
return this.http.post("/v1/
|
|
86
|
+
return this.http.post("/v1/tracking/trace", {
|
|
87
87
|
items,
|
|
88
88
|
includeProgresses
|
|
89
89
|
});
|
|
@@ -181,7 +181,7 @@ var CouriersResource = class {
|
|
|
181
181
|
* 지원 택배사 목록 조회
|
|
182
182
|
*/
|
|
183
183
|
async list() {
|
|
184
|
-
return this.http.get("/v1/
|
|
184
|
+
return this.http.get("/v1/tracking/couriers");
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
187
|
|