tb-order-sync 0.3.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.3.1] - 2026-03-19
6
+
7
+ ### Added
8
+
9
+ - Added README badges for npm, GitHub, and license visibility.
10
+ - Added npm metadata fields for repository, homepage, and issue tracking.
11
+
12
+ ### Changed
13
+
14
+ - Improved npm package description and keywords to better reflect order sync, refund workflow, and spreadsheet automation.
15
+ - Prepared GitHub release metadata for the public `tb-order-sync` repository.
16
+
5
17
  ## [0.3.0] - 2026-03-19
6
18
 
7
19
  ### Added
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 SOULRAi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # TB Order Sync
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/tb-order-sync)](https://www.npmjs.com/package/tb-order-sync)
4
+ [![GitHub Repo](https://img.shields.io/badge/GitHub-SOULRAi%2Ftb--order--sync-181717?logo=github)](https://github.com/SOULRAi/tb-order-sync)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/SOULRAi/tb-order-sync/blob/main/LICENSE)
6
+
3
7
  **多表格同步与退款标记服务** — 自动同步腾讯文档 / 飞书多表格数据,计算毛利并标记退款订单。
4
8
 
5
9
  > 一键启动、零配置门槛、支持 Windows / macOS 双平台,可打包为独立 exe 免安装分发。
@@ -46,7 +50,7 @@ tb daemon status
46
50
 
47
51
  ```bash
48
52
  npm pack
49
- npm install -g ./tb-order-sync-0.3.0.tgz
53
+ npm install -g ./tb-order-sync-0.3.1.tgz
50
54
  ```
51
55
 
52
56
  ### 方式一:一键启动(推荐)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tb-order-sync",
3
- "version": "0.3.0",
4
- "description": "Multi-sheet order sync and refund workflow service with a tb CLI launcher",
3
+ "version": "0.3.1",
4
+ "description": "Tencent Docs and Feishu order-sheet sync service with refund workflow, daemon scheduler, and tb CLI",
5
5
  "bin": {
6
6
  "tb": "bin/tb.js"
7
7
  },
@@ -17,6 +17,7 @@
17
17
  "requirements.txt",
18
18
  "README.md",
19
19
  "CHANGELOG.md",
20
+ "LICENSE",
20
21
  ".env.example",
21
22
  "build.py",
22
23
  "sync_service.spec",
@@ -28,13 +29,25 @@
28
29
  "check": "node bin/tb.js check",
29
30
  "pack:local": "npm pack"
30
31
  },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/SOULRAi/tb-order-sync.git"
35
+ },
36
+ "homepage": "https://github.com/SOULRAi/tb-order-sync#readme",
37
+ "bugs": {
38
+ "url": "https://github.com/SOULRAi/tb-order-sync/issues"
39
+ },
31
40
  "keywords": [
32
- "python",
33
- "scheduler",
41
+ "order-sync",
42
+ "refund-workflow",
43
+ "gross-profit",
34
44
  "daemon",
45
+ "scheduler",
35
46
  "rich-cli",
36
47
  "tencent-docs",
37
- "feishu"
48
+ "feishu",
49
+ "spreadsheet-sync",
50
+ "automation"
38
51
  ],
39
52
  "license": "MIT"
40
53
  }