taiwan-logistics-skill 1.0.0
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/README.md +186 -0
- package/assets/taiwan-logistics/EXAMPLES.md +3183 -0
- package/assets/taiwan-logistics/README.md +33 -0
- package/assets/taiwan-logistics/SKILL.md +827 -0
- package/assets/taiwan-logistics/data/field-mappings.csv +27 -0
- package/assets/taiwan-logistics/data/logistics-types.csv +11 -0
- package/assets/taiwan-logistics/data/operations.csv +8 -0
- package/assets/taiwan-logistics/data/providers.csv +9 -0
- package/assets/taiwan-logistics/data/status-codes.csv +14 -0
- package/assets/taiwan-logistics/examples/newebpay-logistics-cvs-example.py +524 -0
- package/assets/taiwan-logistics/examples/payuni-logistics-cvs-example.py +605 -0
- package/assets/taiwan-logistics/references/NEWEBPAY_LOGISTICS_REFERENCE.md +774 -0
- package/assets/taiwan-logistics/references/ecpay-logistics-api.md +536 -0
- package/assets/taiwan-logistics/references/payuni-logistics-api.md +712 -0
- package/assets/taiwan-logistics/scripts/core.py +276 -0
- package/assets/taiwan-logistics/scripts/search.py +127 -0
- package/assets/taiwan-logistics/scripts/test_logistics.py +236 -0
- package/dist/index.js +16377 -0
- package/package.json +58 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Taiwan Logistics Integration Toolkit
|
|
2
|
+
|
|
3
|
+
**Professional logistics integration solution for Taiwan market**
|
|
4
|
+
|
|
5
|
+
Supporting ECPay (綠界物流), NewebPay (藍新物流), and PAYUNi (統一物流) with comprehensive API documentation, intelligent tools, and **production-ready Python/TypeScript examples**.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Overview
|
|
10
|
+
|
|
11
|
+
This toolkit provides enterprise-grade integration capabilities for Taiwan's major logistics providers, featuring:
|
|
12
|
+
|
|
13
|
+
- **Complete API Documentation**: Detailed specifications for all three providers
|
|
14
|
+
- **Production-Ready Python Examples**: 4 complete implementations following strict coding standards
|
|
15
|
+
- **Intelligent Search Engine**: BM25-powered search across 5 domains
|
|
16
|
+
- **Data-Driven Architecture**: 5 CSV datasets for easy maintenance and updates
|
|
17
|
+
- **Multi-Platform Support**: Compatible with 14 AI coding assistants
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Supported Logistics Providers
|
|
22
|
+
|
|
23
|
+
| Provider | Encryption | API Style | Supported Services | Python Example | Status |
|
|
24
|
+
|----------|-----------|-----------|-------------------|----------------|--------|
|
|
25
|
+
| **ECPay (綠界物流)** | MD5 CheckMacValue | Form POST | 7-11, FamilyMart, Hi-Life, OK, T-Cat, Pelican | [EXAMPLES.md](EXAMPLES.md#ecpay-cvs-python) | Full Support |
|
|
26
|
+
| **NewebPay (藍新物流)** | AES-256-CBC + SHA256 | Form POST + AES | 7-11, FamilyMart, Hi-Life, OK, T-Cat | [newebpay-logistics-cvs-example.py](examples/newebpay-logistics-cvs-example.py) | Full Support |
|
|
27
|
+
| **PAYUNi (統一物流)** | AES-256-GCM + SHA256 | RESTful JSON | 7-11, T-Cat (normal, frozen, refrigerated) | [payuni-logistics-cvs-example.py](examples/payuni-logistics-cvs-example.py) | Full Support |
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
✅ All Python examples follow strict coding standards (taiwan-invoice quality level)
|
|
32
|
+
✅ 3 廠商完整支援 (ECPay + NewebPay + PAYUNi)
|
|
33
|
+
✅ 包含 CVS 超商物流 + 宅配物流 + 溫控物流
|