@be-link/pos-cli-nodejs 1.0.49 → 1.0.51-beta.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.
Files changed (86) hide show
  1. package/.github/workflows/JMeter.yml +92 -0
  2. package/.husky/commit-msg +4 -0
  3. package/.versionrc +22 -0
  4. package/CHANGELOG.md +599 -0
  5. package/Makefile +4 -0
  6. package/ceshi.jmx +326 -0
  7. package/ci/index.ts +73 -0
  8. package/commitlint.config.js +3 -0
  9. package/dist/README.md +40 -0
  10. package/dist/package.json +54 -0
  11. package/{types.d.ts → dist/types.d.ts} +138 -16
  12. package/jest.config.js +194 -0
  13. package/package.json +13 -13
  14. package/src/errors/BizError.ts +10 -0
  15. package/src/errors/SystemError.ts +10 -0
  16. package/src/index.ts +33 -0
  17. package/src/pos/http.ts +70 -0
  18. package/src/pos/modules/dataMigrate/service.ts +18 -0
  19. package/src/pos/modules/dataMigrate/types.ts +11 -0
  20. package/src/pos/modules/orderCore/service.ts +80 -0
  21. package/src/pos/modules/orderCore/types.ts +418 -0
  22. package/src/pos/modules/orderFulfill/service.ts +126 -0
  23. package/src/pos/modules/orderFulfill/types.ts +548 -0
  24. package/src/pos/modules/orderJob/service.ts +87 -0
  25. package/src/pos/modules/orderJob/types.ts +54 -0
  26. package/src/pos/modules/orderNote/service.ts +29 -0
  27. package/src/pos/modules/orderNote/types.ts +78 -0
  28. package/src/pos/modules/orderQuery/commodity.ts +59 -0
  29. package/src/pos/modules/orderQuery/store.ts +24 -0
  30. package/src/pos/modules/orderQuery/supplier.ts +34 -0
  31. package/src/pos/modules/orderQuery/types.ts +1159 -0
  32. package/src/pos/modules/orderQuery/user.ts +83 -0
  33. package/src/pos/modules/orderQuery/web.ts +26 -0
  34. package/src/pos/modules/service.ts +31 -0
  35. package/src/types.ts +1237 -0
  36. package/src/utils/env.ts +14 -0
  37. package/src/utils/string.ts +6 -0
  38. package/tsconfig.json +114 -0
  39. package/typedoc.json +15 -0
  40. /package/{errors → dist/errors}/BizError.d.ts +0 -0
  41. /package/{errors → dist/errors}/BizError.js +0 -0
  42. /package/{errors → dist/errors}/SystemError.d.ts +0 -0
  43. /package/{errors → dist/errors}/SystemError.js +0 -0
  44. /package/{index.d.ts → dist/index.d.ts} +0 -0
  45. /package/{index.js → dist/index.js} +0 -0
  46. /package/{pos → dist/pos}/http.d.ts +0 -0
  47. /package/{pos → dist/pos}/http.js +0 -0
  48. /package/{pos → dist/pos}/modules/dataMigrate/service.d.ts +0 -0
  49. /package/{pos → dist/pos}/modules/dataMigrate/service.js +0 -0
  50. /package/{pos → dist/pos}/modules/dataMigrate/types.d.ts +0 -0
  51. /package/{pos → dist/pos}/modules/dataMigrate/types.js +0 -0
  52. /package/{pos → dist/pos}/modules/orderCore/service.d.ts +0 -0
  53. /package/{pos → dist/pos}/modules/orderCore/service.js +0 -0
  54. /package/{pos → dist/pos}/modules/orderCore/types.d.ts +0 -0
  55. /package/{pos → dist/pos}/modules/orderCore/types.js +0 -0
  56. /package/{pos → dist/pos}/modules/orderFulfill/service.d.ts +0 -0
  57. /package/{pos → dist/pos}/modules/orderFulfill/service.js +0 -0
  58. /package/{pos → dist/pos}/modules/orderFulfill/types.d.ts +0 -0
  59. /package/{pos → dist/pos}/modules/orderFulfill/types.js +0 -0
  60. /package/{pos → dist/pos}/modules/orderJob/service.d.ts +0 -0
  61. /package/{pos → dist/pos}/modules/orderJob/service.js +0 -0
  62. /package/{pos → dist/pos}/modules/orderJob/types.d.ts +0 -0
  63. /package/{pos → dist/pos}/modules/orderJob/types.js +0 -0
  64. /package/{pos → dist/pos}/modules/orderNote/service.d.ts +0 -0
  65. /package/{pos → dist/pos}/modules/orderNote/service.js +0 -0
  66. /package/{pos → dist/pos}/modules/orderNote/types.d.ts +0 -0
  67. /package/{pos → dist/pos}/modules/orderNote/types.js +0 -0
  68. /package/{pos → dist/pos}/modules/orderQuery/commodity.d.ts +0 -0
  69. /package/{pos → dist/pos}/modules/orderQuery/commodity.js +0 -0
  70. /package/{pos → dist/pos}/modules/orderQuery/store.d.ts +0 -0
  71. /package/{pos → dist/pos}/modules/orderQuery/store.js +0 -0
  72. /package/{pos → dist/pos}/modules/orderQuery/supplier.d.ts +0 -0
  73. /package/{pos → dist/pos}/modules/orderQuery/supplier.js +0 -0
  74. /package/{pos → dist/pos}/modules/orderQuery/types.d.ts +0 -0
  75. /package/{pos → dist/pos}/modules/orderQuery/types.js +0 -0
  76. /package/{pos → dist/pos}/modules/orderQuery/user.d.ts +0 -0
  77. /package/{pos → dist/pos}/modules/orderQuery/user.js +0 -0
  78. /package/{pos → dist/pos}/modules/orderQuery/web.d.ts +0 -0
  79. /package/{pos → dist/pos}/modules/orderQuery/web.js +0 -0
  80. /package/{pos → dist/pos}/modules/service.d.ts +0 -0
  81. /package/{pos → dist/pos}/modules/service.js +0 -0
  82. /package/{types.js → dist/types.js} +0 -0
  83. /package/{utils → dist/utils}/env.d.ts +0 -0
  84. /package/{utils → dist/utils}/env.js +0 -0
  85. /package/{utils → dist/utils}/string.d.ts +0 -0
  86. /package/{utils → dist/utils}/string.js +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,599 @@
1
+ # 更新日志
2
+
3
+
4
+ ### [1.0.51-beta.0](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.22...v1.0.51-beta.0) (2025-02-18)
5
+
6
+ ### [1.0.22](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.16...v1.0.22) (2024-08-13)
7
+
8
+
9
+ ### 📦 Chores | 其他更新
10
+
11
+ * **release:** 1.0.17 ([a985cec](https://github.com/snowmountain-top/pos-cli-nodejs/commit/a985cec5d06be9b90f422a5186476806a20f5bac))
12
+ * **release:** 1.0.18 ([bbc436b](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bbc436b83c9e41c4717118a3b5e198e5beb4ed73))
13
+ * **release:** 1.0.21 ([e3f3cc7](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e3f3cc7606cf9285891ac97028c54c74c63cdbe7))
14
+
15
+ ### [1.0.21](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.20...v1.0.21) (2024-08-13)
16
+
17
+ ### [1.0.18](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.17...v1.0.18) (2024-08-08)
18
+
19
+ ### [1.0.17](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.9...v1.0.17) (2024-08-08)
20
+
21
+
22
+ ### 📦 Chores | 其他更新
23
+
24
+ * **release:** 1.0.10 ([78bd6da](https://github.com/snowmountain-top/pos-cli-nodejs/commit/78bd6dadc90cb8661af3d001144aaec3502df2fd))
25
+ * **release:** 1.0.11 ([0c0185b](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0c0185b8be33daadc379ce9601aad30ead0961f4))
26
+ * **release:** 1.0.12 ([20b9db0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/20b9db09cba55c479ff52f1c2984ab1d3ac0db68))
27
+ * **release:** 1.0.13 ([4e2115f](https://github.com/snowmountain-top/pos-cli-nodejs/commit/4e2115fba878b4d64ec1d5ac32075df6ecf849be))
28
+ * **release:** 1.0.14 ([dccdfed](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dccdfed0e1871bc44908d6f4c8dba1e6e15ce341))
29
+ * **release:** 1.0.15 ([d593b1c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d593b1c83741b99a353ff48d2392335503007928))
30
+ * **release:** 1.0.16 ([3e99638](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3e99638648428d2ef96a16d40088897e6cbb54c5))
31
+
32
+ ### [1.0.16](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.15...v1.0.16) (2024-08-04)
33
+
34
+ ### [1.0.15](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.14...v1.0.15) (2024-08-02)
35
+
36
+ ### [1.0.14](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.13...v1.0.14) (2024-08-02)
37
+
38
+ ### [1.0.13](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.12...v1.0.13) (2024-08-02)
39
+
40
+ ### [1.0.12](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.11...v1.0.12) (2024-08-01)
41
+
42
+ ### [1.0.11](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.10...v1.0.11) (2024-08-01)
43
+
44
+ ### [1.0.10](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.7...v1.0.10) (2024-07-22)
45
+
46
+
47
+ ### 📦 Chores | 其他更新
48
+
49
+ * **release:** 1.0.8 ([b6ce936](https://github.com/snowmountain-top/pos-cli-nodejs/commit/b6ce936f0e35f800657f25559faa969c816dc37a))
50
+ * **release:** 1.0.9 ([27da297](https://github.com/snowmountain-top/pos-cli-nodejs/commit/27da2974925a95e7e22332c81af713030a2995f1))
51
+
52
+ ### [1.0.9](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.8...v1.0.9) (2024-07-16)
53
+
54
+ ### [1.0.8](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.5...v1.0.8) (2024-07-16)
55
+
56
+
57
+ ### 📦 Chores | 其他更新
58
+
59
+ * **release:** 1.0.6 ([6c3b2d6](https://github.com/snowmountain-top/pos-cli-nodejs/commit/6c3b2d65c94cba21aece40ce5e3af6f5977f4df2))
60
+ * **release:** 1.0.7 ([1b4f32c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/1b4f32cbdcada88bb31ce78853a79b668c7671a0))
61
+
62
+ ### [1.0.7](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.6...v1.0.7) (2024-07-15)
63
+
64
+ ### [1.0.6](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.4...v1.0.6) (2024-07-15)
65
+
66
+
67
+ ### 📦 Chores | 其他更新
68
+
69
+ * **release:** 1.0.5 ([aa9dc12](https://github.com/snowmountain-top/pos-cli-nodejs/commit/aa9dc12d0d5fbcbae6e29d3fc9797b4e5c8ed00f))
70
+
71
+ ### [1.0.5](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.173...v1.0.5) (2024-07-12)
72
+
73
+
74
+ ### 📦 Chores | 其他更新
75
+
76
+ * **release:** 0.0.174 ([3e599f4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3e599f43006e040a3eee213561891a9e3c683786))
77
+ * **release:** 0.0.175 ([e1a6c43](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e1a6c431e891efcf94d408730d78060a3fa1af4d))
78
+ * **release:** 0.0.176 ([113697c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/113697ce2cb05fe79aaa4b33fdb1e64faddc4e4f))
79
+ * **release:** 0.0.177 ([3a38d8d](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3a38d8d7a7242c396a6a53f4b5f1f8009859eca5))
80
+ * **release:** 0.0.178 ([7437c56](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7437c5614b0a8f65c9c95703bfb8ec82736c35a0))
81
+ * **release:** 0.0.179 ([7b44e1b](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7b44e1bc697eaf5854ee17a14584d20f07b92bfa))
82
+ * **release:** 0.0.180 ([416c9e9](https://github.com/snowmountain-top/pos-cli-nodejs/commit/416c9e912c823075323b2cb4462ea7b29a78e6e7))
83
+ * **release:** 1.0.0 ([436d772](https://github.com/snowmountain-top/pos-cli-nodejs/commit/436d772c719dfd2525c952cf551449af40361de9))
84
+ * **release:** 1.0.1 ([bdf5bd1](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bdf5bd1b876a2203fd14c2d7a7d3b1a79bc52534))
85
+ * **release:** 1.0.2 ([66a5689](https://github.com/snowmountain-top/pos-cli-nodejs/commit/66a56895c030d41454d0a07b301518866cfcba42))
86
+ * **release:** 1.0.3 ([66ed9b4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/66ed9b4d4669c37511a361138f669f11c1f743a5))
87
+ * **release:** 1.0.4 ([cc7dcda](https://github.com/snowmountain-top/pos-cli-nodejs/commit/cc7dcdae008bf23a221ea6adbf297acde667df93))
88
+
89
+ ### [1.0.4](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.3...v1.0.4) (2024-07-08)
90
+
91
+ ### [1.0.3](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.2...v1.0.3) (2024-07-08)
92
+
93
+ ### [1.0.2](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.1...v1.0.2) (2024-07-04)
94
+
95
+ ### [1.0.1](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v1.0.0...v1.0.1) (2024-07-04)
96
+
97
+ ## [1.0.0](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.180...v1.0.0) (2024-07-01)
98
+
99
+ ### [0.0.180](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.179...v0.0.180) (2024-07-01)
100
+
101
+ ### [0.0.179](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.178...v0.0.179) (2024-06-24)
102
+
103
+ ### [0.0.178](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.177...v0.0.178) (2024-06-24)
104
+
105
+ ### [0.0.177](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.176...v0.0.177) (2024-06-13)
106
+
107
+ ### [0.0.176](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.175...v0.0.176) (2024-06-13)
108
+
109
+ ### [0.0.175](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.174...v0.0.175) (2024-06-13)
110
+
111
+ ### [0.0.174](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.172...v0.0.174) (2024-06-11)
112
+
113
+
114
+ ### 📦 Chores | 其他更新
115
+
116
+ * **release:** 0.0.173 ([39faaf6](https://github.com/snowmountain-top/pos-cli-nodejs/commit/39faaf620950b20833aad715de7cd403ac6d4e8e))
117
+
118
+ ### [0.0.173](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.162...v0.0.173) (2024-06-11)
119
+
120
+
121
+ ### 📦 Chores | 其他更新
122
+
123
+ * **release:** 0.0.163 ([79bdd3d](https://github.com/snowmountain-top/pos-cli-nodejs/commit/79bdd3d16d4a8faa3d1449db54cc2901add7750b))
124
+ * **release:** 0.0.164 ([8b41c03](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8b41c03e8f64a5fa0a01e96f86c49fffa03d0a78))
125
+ * **release:** 0.0.165 ([e7d3245](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e7d3245f3c0015d75ec48627ef0261860c2ffa6e))
126
+ * **release:** 0.0.166 ([8521cdd](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8521cdd934ecacecc1c791085a9dc61a79499bb4))
127
+ * **release:** 0.0.167 ([63bdba4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/63bdba420ec7351397f612438e350109a4ef7953))
128
+ * **release:** 0.0.168 ([9e8aeab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/9e8aeaba771c8a6f8516c75395dfccba4b433e7a))
129
+ * **release:** 0.0.169 ([a6f5a60](https://github.com/snowmountain-top/pos-cli-nodejs/commit/a6f5a60d8900624a93ab2ad7d19fd26f327bf1f1))
130
+ * **release:** 0.0.170 ([44ec4e9](https://github.com/snowmountain-top/pos-cli-nodejs/commit/44ec4e94f052b17262b3785eb433d41607b0be00))
131
+ * **release:** 0.0.171 ([0b66bc0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0b66bc0fa7d80313a4a8b91721b456614ac66cd5))
132
+ * **release:** 0.0.171 ([00124b3](https://github.com/snowmountain-top/pos-cli-nodejs/commit/00124b3b79116369bb6aaa416b9161e8d272ce18))
133
+ * **release:** 0.0.172 ([b4ce94c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/b4ce94c0c54d08d6473cbd423033259e43ca1bb6))
134
+
135
+ ### [0.0.172](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.171...v0.0.172) (2024-06-11)
136
+
137
+
138
+ ### 📦 Chores | 其他更新
139
+
140
+ * **release:** 0.0.171 ([0b66bc0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0b66bc0fa7d80313a4a8b91721b456614ac66cd5))
141
+
142
+ ### [0.0.171](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.170...v0.0.171) (2024-06-11)
143
+
144
+ ### [0.0.170](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.169...v0.0.170) (2024-06-11)
145
+
146
+ ### [0.0.169](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.168...v0.0.169) (2024-06-11)
147
+
148
+ ### [0.0.168](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.167...v0.0.168) (2024-06-07)
149
+
150
+ ### [0.0.167](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.166...v0.0.167) (2024-06-07)
151
+
152
+ ### [0.0.166](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.165...v0.0.166) (2024-06-06)
153
+
154
+ ### [0.0.165](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.164...v0.0.165) (2024-05-17)
155
+
156
+ ### [0.0.164](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.156...v0.0.164) (2024-05-15)
157
+
158
+
159
+ ### 📦 Chores | 其他更新
160
+
161
+ * **release:** 0.0.157 ([9a59601](https://github.com/snowmountain-top/pos-cli-nodejs/commit/9a59601256f2270641d321e83b0385f43a1ed357))
162
+ * **release:** 0.0.158 ([16969d0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/16969d0f031199e8bcf911987836666ccab19f72))
163
+ * **release:** 0.0.159 ([3339f2a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3339f2a72acbae49eab45912cb391ca6c0d0822c))
164
+ * **release:** 0.0.160 ([6ae2b35](https://github.com/snowmountain-top/pos-cli-nodejs/commit/6ae2b35da173f292f34fe5cbb8169d33d1c3c939))
165
+ * **release:** 0.0.161 ([c337c76](https://github.com/snowmountain-top/pos-cli-nodejs/commit/c337c76de8e1b3957dfb1319b6ee0d8738843b21))
166
+ * **release:** 0.0.162 ([f480218](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f480218ef7acbf04ec87510465621d9737d929b2))
167
+ * **release:** 0.0.163 ([79bdd3d](https://github.com/snowmountain-top/pos-cli-nodejs/commit/79bdd3d16d4a8faa3d1449db54cc2901add7750b))
168
+
169
+ ### [0.0.163](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.156...v0.0.163) (2024-05-15)
170
+
171
+
172
+ ### 📦 Chores | 其他更新
173
+
174
+ * **release:** 0.0.157 ([9a59601](https://github.com/snowmountain-top/pos-cli-nodejs/commit/9a59601256f2270641d321e83b0385f43a1ed357))
175
+ * **release:** 0.0.158 ([16969d0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/16969d0f031199e8bcf911987836666ccab19f72))
176
+ * **release:** 0.0.159 ([3339f2a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3339f2a72acbae49eab45912cb391ca6c0d0822c))
177
+ * **release:** 0.0.160 ([6ae2b35](https://github.com/snowmountain-top/pos-cli-nodejs/commit/6ae2b35da173f292f34fe5cbb8169d33d1c3c939))
178
+ * **release:** 0.0.161 ([c337c76](https://github.com/snowmountain-top/pos-cli-nodejs/commit/c337c76de8e1b3957dfb1319b6ee0d8738843b21))
179
+ * **release:** 0.0.162 ([f480218](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f480218ef7acbf04ec87510465621d9737d929b2))
180
+
181
+ ### [0.0.162](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.161...v0.0.162) (2024-04-29)
182
+
183
+ ### [0.0.161](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.160...v0.0.161) (2024-04-29)
184
+
185
+ ### [0.0.160](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.159...v0.0.160) (2024-04-29)
186
+
187
+ ### [0.0.159](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.156...v0.0.159) (2024-04-24)
188
+
189
+
190
+ ### 📦 Chores | 其他更新
191
+
192
+ * **release:** 0.0.157 ([9a59601](https://github.com/snowmountain-top/pos-cli-nodejs/commit/9a59601256f2270641d321e83b0385f43a1ed357))
193
+ * **release:** 0.0.158 ([16969d0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/16969d0f031199e8bcf911987836666ccab19f72))
194
+
195
+ ### [0.0.158](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.157...v0.0.158) (2024-04-24)
196
+
197
+ ### [0.0.157](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.156...v0.0.157) (2024-04-24)
198
+
199
+ ### [0.0.156](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.114...v0.0.156) (2024-04-24)
200
+
201
+
202
+ ### ✨ Features | 新功能
203
+
204
+ * 发票接口添加返回值 ([0396c6c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0396c6cb20d864b593fb1ed734ec50eacd7a19e4))
205
+ * 发票接口添加返回值 ([ffc4291](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ffc42919cfaa4d26cc43e110531f58b21db615bb))
206
+ * 发票接口添加新属性 ([ccdb837](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ccdb837049fc461fbcc6552ae686079a11328356))
207
+ * 开票 ([f911b30](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f911b30b3abc323cada2a866d0cfa2e7712792d8))
208
+ * 开票” ([d230b6f](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d230b6fa5858410961f81ad045b3c119dde818fc))
209
+ * jm ([8fdf1ab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8fdf1ab315e4d90597a118bf34fa82e0b9fb8ad0))
210
+ * jm ([2ab8488](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2ab848861301a5a526fa614679ed4fd3caa5322c))
211
+
212
+
213
+ ### 📦 Chores | 其他更新
214
+
215
+ * **release:** 0.0.115 ([37e7788](https://github.com/snowmountain-top/pos-cli-nodejs/commit/37e77887c7015196868474f10675cf9603aaf595))
216
+ * **release:** 0.0.116 ([39b8895](https://github.com/snowmountain-top/pos-cli-nodejs/commit/39b8895ad142c61c79b57a20c7dfb0994a86143e))
217
+ * **release:** 0.0.117-beta.0 ([175955e](https://github.com/snowmountain-top/pos-cli-nodejs/commit/175955e011e0dfd108be0bec08dadf1914c0ffbb))
218
+ * **release:** 0.0.118 ([ca46971](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ca46971a3ec82effcd9fde4e5550e83d37983303))
219
+ * **release:** 0.0.119 ([34835fb](https://github.com/snowmountain-top/pos-cli-nodejs/commit/34835fb1ad865a30cef7da66855b3ac88714a454))
220
+ * **release:** 0.0.120 ([0536ff7](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0536ff7426d283f73d0dd84c79b3e97d1beac1ea))
221
+ * **release:** 0.0.121 ([a93334c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/a93334cad1f5510ef5d87f2e4d1e1ba2c3a735fe))
222
+ * **release:** 0.0.122 ([2d79bd0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2d79bd094afc276615c1a784a953750ec2092e4b))
223
+ * **release:** 0.0.123 ([7217631](https://github.com/snowmountain-top/pos-cli-nodejs/commit/72176317942345ee696c42734b5ba58a9b4ba99d))
224
+ * **release:** 0.0.124 ([8ae1416](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8ae1416450d9579ba18877e8a44a86f2f7b51323))
225
+ * **release:** 0.0.125 ([32c136c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/32c136c77ada6d551f647e5bf03a9c6a2d16b94f))
226
+ * **release:** 0.0.126 ([eaa898b](https://github.com/snowmountain-top/pos-cli-nodejs/commit/eaa898b1300cade41e254ec748db86afbc715a73))
227
+ * **release:** 0.0.127 ([faf948a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/faf948a33dd2f110c227db14d807685767c8016f))
228
+ * **release:** 0.0.128 ([bafc1f2](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bafc1f2a6d7f8fb6e208b91696a319a72d8b997e))
229
+ * **release:** 0.0.129 ([ce4400c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ce4400cbb93555f7e54ecff1588f80b08bddc247))
230
+ * **release:** 0.0.130 ([dbd91bc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dbd91bc0e59b13ddad87e4eca12b20f827eebefa))
231
+ * **release:** 0.0.131 ([dd88679](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dd8867951dda1bc168f3c83c76ed21e85e77b3e7))
232
+ * **release:** 0.0.132 ([ba39d77](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba39d776e59a977b348e6067fe9687576ad5cf24))
233
+ * **release:** 0.0.133 ([2a52b2d](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2a52b2d636977857eb528b5da0ad2fd26d157397))
234
+ * **release:** 0.0.134 ([70878e6](https://github.com/snowmountain-top/pos-cli-nodejs/commit/70878e6416575536ca9b6c4d0f9cf9cbdf2a6646))
235
+ * **release:** 0.0.135 ([1317b31](https://github.com/snowmountain-top/pos-cli-nodejs/commit/1317b31d9a70cf68570724be958e31ebfd2024fb))
236
+ * **release:** 0.0.136 ([e5ceb02](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e5ceb02148bdf8a9a99213c8e0ae86d8690f410f))
237
+ * **release:** 0.0.137 ([5285f7e](https://github.com/snowmountain-top/pos-cli-nodejs/commit/5285f7ef9fa2b5c3f3b7663bdf19779e4a2b84be))
238
+ * **release:** 0.0.138 ([8b7a162](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8b7a1623de93e2200d76be36f8779e1e878c145f))
239
+ * **release:** 0.0.139 ([0452df5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0452df543b640bff4de896228445485396c9aaac))
240
+ * **release:** 0.0.140 ([cdc38b8](https://github.com/snowmountain-top/pos-cli-nodejs/commit/cdc38b89ed53638ca8ddb7f8604de8ceac0dcf6c))
241
+ * **release:** 0.0.141 ([3026d62](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3026d6252428cd60f3b09a5d16200d4e481cdbff))
242
+ * **release:** 0.0.142 ([d844c1a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d844c1ab3b68d0e7c54c5614b23df9de4391eeda))
243
+ * **release:** 0.0.143 ([b38dca1](https://github.com/snowmountain-top/pos-cli-nodejs/commit/b38dca15559a6be7b26dc02f52f482bf3cc9fe05))
244
+ * **release:** 0.0.144 ([920eb31](https://github.com/snowmountain-top/pos-cli-nodejs/commit/920eb31ef10ac39251048a94db068a0596173161))
245
+ * **release:** 0.0.145 ([3ca84bf](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3ca84bfbf2a557a7cd82ee87e80a1736bae92445))
246
+ * **release:** 0.0.146 ([75cccf2](https://github.com/snowmountain-top/pos-cli-nodejs/commit/75cccf2900e397b3e59aab8aef7d118160895f12))
247
+ * **release:** 0.0.147 ([94a65de](https://github.com/snowmountain-top/pos-cli-nodejs/commit/94a65de30a5339de2bbb30a927d91931de3c3783))
248
+ * **release:** 0.0.148 ([34582d3](https://github.com/snowmountain-top/pos-cli-nodejs/commit/34582d383e5b53b9c0273ceb57ce5e4b654aacc7))
249
+ * **release:** 0.0.149 ([256239f](https://github.com/snowmountain-top/pos-cli-nodejs/commit/256239fda3145a926780cc96835334010665cd30))
250
+ * **release:** 0.0.150 ([5a86a17](https://github.com/snowmountain-top/pos-cli-nodejs/commit/5a86a17f349fe3fa5683dd49a9a193cf3dafb3df))
251
+ * **release:** 0.0.151 ([5ac310a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/5ac310a81b5f167b82bfbf7fedf16d1df3d0a141))
252
+ * **release:** 0.0.152 ([712aebc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/712aebc040cf3caa31056ce3a581666e3509d9d1))
253
+ * **release:** 0.0.153 ([9cff017](https://github.com/snowmountain-top/pos-cli-nodejs/commit/9cff0176a74ee0d786950fb191d243936d44e6e6))
254
+ * **release:** 0.0.154 ([e148749](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e1487492e72044aef8704b4952232b8e6ff43f29))
255
+ * **release:** 0.0.155 ([a70f4e5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/a70f4e51ffbdb088e2f794d733750c83730e3a28))
256
+
257
+ ### [0.0.155](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.154...v0.0.155) (2024-04-16)
258
+
259
+ ### [0.0.154](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.153...v0.0.154) (2024-04-16)
260
+
261
+ ### [0.0.153](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.152...v0.0.153) (2024-04-12)
262
+
263
+ ### [0.0.152](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.151...v0.0.152) (2024-04-11)
264
+
265
+ ### [0.0.151](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.150...v0.0.151) (2024-04-03)
266
+
267
+ ### [0.0.150](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.149...v0.0.150) (2024-03-21)
268
+
269
+ ### [0.0.149](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.148...v0.0.149) (2024-03-11)
270
+
271
+
272
+ ### ✨ Features | 新功能
273
+
274
+ * jm ([8fdf1ab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8fdf1ab315e4d90597a118bf34fa82e0b9fb8ad0))
275
+ * jm ([2ab8488](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2ab848861301a5a526fa614679ed4fd3caa5322c))
276
+
277
+ ### [0.0.148](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.147...v0.0.148) (2024-02-21)
278
+
279
+ ### [0.0.147](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.145...v0.0.147) (2024-02-21)
280
+
281
+
282
+ ### 📦 Chores | 其他更新
283
+
284
+ * **release:** 0.0.146 ([75cccf2](https://github.com/snowmountain-top/pos-cli-nodejs/commit/75cccf2900e397b3e59aab8aef7d118160895f12))
285
+
286
+ ### [0.0.146](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.144...v0.0.146) (2024-02-21)
287
+
288
+
289
+ ### 📦 Chores | 其他更新
290
+
291
+ * **release:** 0.0.145 ([3ca84bf](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3ca84bfbf2a557a7cd82ee87e80a1736bae92445))
292
+
293
+ ### [0.0.145](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.124...v0.0.145) (2024-02-21)
294
+
295
+
296
+ ### ✨ Features | 新功能
297
+
298
+ * 发票接口添加新属性 ([ccdb837](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ccdb837049fc461fbcc6552ae686079a11328356))
299
+ * 发票接口添加返回值 ([0396c6c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0396c6cb20d864b593fb1ed734ec50eacd7a19e4))
300
+ * 发票接口添加返回值 ([ffc4291](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ffc42919cfaa4d26cc43e110531f58b21db615bb))
301
+ * 开票 ([f911b30](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f911b30b3abc323cada2a866d0cfa2e7712792d8))
302
+ * 开票” ([d230b6f](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d230b6fa5858410961f81ad045b3c119dde818fc))
303
+
304
+
305
+ ### 📦 Chores | 其他更新
306
+
307
+ * **release:** 0.0.125 ([32c136c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/32c136c77ada6d551f647e5bf03a9c6a2d16b94f))
308
+ * **release:** 0.0.126 ([eaa898b](https://github.com/snowmountain-top/pos-cli-nodejs/commit/eaa898b1300cade41e254ec748db86afbc715a73))
309
+ * **release:** 0.0.127 ([faf948a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/faf948a33dd2f110c227db14d807685767c8016f))
310
+ * **release:** 0.0.128 ([bafc1f2](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bafc1f2a6d7f8fb6e208b91696a319a72d8b997e))
311
+ * **release:** 0.0.129 ([ce4400c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ce4400cbb93555f7e54ecff1588f80b08bddc247))
312
+ * **release:** 0.0.130 ([dbd91bc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dbd91bc0e59b13ddad87e4eca12b20f827eebefa))
313
+ * **release:** 0.0.131 ([dd88679](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dd8867951dda1bc168f3c83c76ed21e85e77b3e7))
314
+ * **release:** 0.0.132 ([ba39d77](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba39d776e59a977b348e6067fe9687576ad5cf24))
315
+ * **release:** 0.0.133 ([2a52b2d](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2a52b2d636977857eb528b5da0ad2fd26d157397))
316
+ * **release:** 0.0.134 ([70878e6](https://github.com/snowmountain-top/pos-cli-nodejs/commit/70878e6416575536ca9b6c4d0f9cf9cbdf2a6646))
317
+ * **release:** 0.0.135 ([1317b31](https://github.com/snowmountain-top/pos-cli-nodejs/commit/1317b31d9a70cf68570724be958e31ebfd2024fb))
318
+ * **release:** 0.0.136 ([e5ceb02](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e5ceb02148bdf8a9a99213c8e0ae86d8690f410f))
319
+ * **release:** 0.0.137 ([5285f7e](https://github.com/snowmountain-top/pos-cli-nodejs/commit/5285f7ef9fa2b5c3f3b7663bdf19779e4a2b84be))
320
+ * **release:** 0.0.138 ([8b7a162](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8b7a1623de93e2200d76be36f8779e1e878c145f))
321
+ * **release:** 0.0.139 ([0452df5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0452df543b640bff4de896228445485396c9aaac))
322
+ * **release:** 0.0.140 ([cdc38b8](https://github.com/snowmountain-top/pos-cli-nodejs/commit/cdc38b89ed53638ca8ddb7f8604de8ceac0dcf6c))
323
+ * **release:** 0.0.141 ([3026d62](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3026d6252428cd60f3b09a5d16200d4e481cdbff))
324
+ * **release:** 0.0.142 ([d844c1a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d844c1ab3b68d0e7c54c5614b23df9de4391eeda))
325
+ * **release:** 0.0.143 ([b38dca1](https://github.com/snowmountain-top/pos-cli-nodejs/commit/b38dca15559a6be7b26dc02f52f482bf3cc9fe05))
326
+ * **release:** 0.0.144 ([920eb31](https://github.com/snowmountain-top/pos-cli-nodejs/commit/920eb31ef10ac39251048a94db068a0596173161))
327
+
328
+ ### [0.0.144](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.143...v0.0.144) (2024-02-21)
329
+
330
+
331
+ ### ✨ Features | 新功能
332
+
333
+ * 开票 ([f911b30](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f911b30b3abc323cada2a866d0cfa2e7712792d8))
334
+
335
+ ### [0.0.143](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.142...v0.0.143) (2024-02-21)
336
+
337
+
338
+ ### ✨ Features | 新功能
339
+
340
+ * 开票” ([d230b6f](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d230b6fa5858410961f81ad045b3c119dde818fc))
341
+
342
+ ### [0.0.142](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.141...v0.0.142) (2024-02-21)
343
+
344
+
345
+ ### ✨ Features | 新功能
346
+
347
+ * 发票接口添加返回值 ([0396c6c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0396c6cb20d864b593fb1ed734ec50eacd7a19e4))
348
+
349
+ ### [0.0.141](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.140...v0.0.141) (2024-02-20)
350
+
351
+
352
+ ### ✨ Features | 新功能
353
+
354
+ * 发票接口添加返回值 ([ffc4291](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ffc42919cfaa4d26cc43e110531f58b21db615bb))
355
+
356
+ ### [0.0.140](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.103-beta.0...v0.0.140) (2024-02-20)
357
+
358
+
359
+ ### 📦 Chores | 其他更新
360
+
361
+ * **release:** 0.0.103 ([50e9a37](https://github.com/snowmountain-top/pos-cli-nodejs/commit/50e9a37874fe4fd63065e05f01f32f06493a78c0))
362
+ * **release:** 0.0.103-beta.1 ([ba2076a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba2076ac45384cce64c72b3b9e5df018c999cda5))
363
+ * **release:** 0.0.104 ([76707b5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/76707b533902bea62128b0b9df151a006c82450c))
364
+ * **release:** 0.0.105 ([f66a2f4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f66a2f440994c5239b2f20fcf884424c8220899a))
365
+ * **release:** 0.0.106 ([e7fa956](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e7fa956a4a3997a8fd0956ca779eef75e5148b6b))
366
+ * **release:** 0.0.107 ([367507a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/367507a264e9ed74805164d1c57c8b266778d508))
367
+ * **release:** 0.0.108 ([bf0a6a5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bf0a6a55a6ffa661b4079a1b4b3ee1180435f666))
368
+ * **release:** 0.0.109 ([ea2e27a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ea2e27a23d6f0c5ed3d48e9bb0ed856bca2fd93c))
369
+ * **release:** 0.0.110 ([4ed8681](https://github.com/snowmountain-top/pos-cli-nodejs/commit/4ed8681f1fc3fe4e29021d83fe5b6cfe2290bd95))
370
+ * **release:** 0.0.111 ([3d57a71](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3d57a710fa013e276eed1b79874266a158bc3830))
371
+ * **release:** 0.0.112 ([d9547b4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d9547b4083d2bb26e34c36ab4f71487bb6479317))
372
+ * **release:** 0.0.113 ([d0664e3](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d0664e39023f96a632252d00760bce07d3e253d7))
373
+ * **release:** 0.0.114 ([db22491](https://github.com/snowmountain-top/pos-cli-nodejs/commit/db224911abc891ced13699bfe2bc2c4458283edc))
374
+ * **release:** 0.0.115 ([37e7788](https://github.com/snowmountain-top/pos-cli-nodejs/commit/37e77887c7015196868474f10675cf9603aaf595))
375
+ * **release:** 0.0.116 ([39b8895](https://github.com/snowmountain-top/pos-cli-nodejs/commit/39b8895ad142c61c79b57a20c7dfb0994a86143e))
376
+ * **release:** 0.0.117-beta.0 ([175955e](https://github.com/snowmountain-top/pos-cli-nodejs/commit/175955e011e0dfd108be0bec08dadf1914c0ffbb))
377
+ * **release:** 0.0.118 ([ca46971](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ca46971a3ec82effcd9fde4e5550e83d37983303))
378
+ * **release:** 0.0.119 ([34835fb](https://github.com/snowmountain-top/pos-cli-nodejs/commit/34835fb1ad865a30cef7da66855b3ac88714a454))
379
+ * **release:** 0.0.120 ([0536ff7](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0536ff7426d283f73d0dd84c79b3e97d1beac1ea))
380
+ * **release:** 0.0.121 ([a93334c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/a93334cad1f5510ef5d87f2e4d1e1ba2c3a735fe))
381
+ * **release:** 0.0.122 ([2d79bd0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2d79bd094afc276615c1a784a953750ec2092e4b))
382
+ * **release:** 0.0.123 ([7217631](https://github.com/snowmountain-top/pos-cli-nodejs/commit/72176317942345ee696c42734b5ba58a9b4ba99d))
383
+ * **release:** 0.0.124 ([8ae1416](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8ae1416450d9579ba18877e8a44a86f2f7b51323))
384
+ * **release:** 0.0.125 ([32c136c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/32c136c77ada6d551f647e5bf03a9c6a2d16b94f))
385
+ * **release:** 0.0.126 ([eaa898b](https://github.com/snowmountain-top/pos-cli-nodejs/commit/eaa898b1300cade41e254ec748db86afbc715a73))
386
+ * **release:** 0.0.127 ([faf948a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/faf948a33dd2f110c227db14d807685767c8016f))
387
+ * **release:** 0.0.128 ([bafc1f2](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bafc1f2a6d7f8fb6e208b91696a319a72d8b997e))
388
+ * **release:** 0.0.129 ([ce4400c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ce4400cbb93555f7e54ecff1588f80b08bddc247))
389
+ * **release:** 0.0.130 ([dbd91bc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dbd91bc0e59b13ddad87e4eca12b20f827eebefa))
390
+ * **release:** 0.0.131 ([dd88679](https://github.com/snowmountain-top/pos-cli-nodejs/commit/dd8867951dda1bc168f3c83c76ed21e85e77b3e7))
391
+ * **release:** 0.0.132 ([ba39d77](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba39d776e59a977b348e6067fe9687576ad5cf24))
392
+ * **release:** 0.0.133 ([2a52b2d](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2a52b2d636977857eb528b5da0ad2fd26d157397))
393
+ * **release:** 0.0.134 ([70878e6](https://github.com/snowmountain-top/pos-cli-nodejs/commit/70878e6416575536ca9b6c4d0f9cf9cbdf2a6646))
394
+ * **release:** 0.0.135 ([1317b31](https://github.com/snowmountain-top/pos-cli-nodejs/commit/1317b31d9a70cf68570724be958e31ebfd2024fb))
395
+ * **release:** 0.0.136 ([e5ceb02](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e5ceb02148bdf8a9a99213c8e0ae86d8690f410f))
396
+ * **release:** 0.0.137 ([5285f7e](https://github.com/snowmountain-top/pos-cli-nodejs/commit/5285f7ef9fa2b5c3f3b7663bdf19779e4a2b84be))
397
+ * **release:** 0.0.138 ([8b7a162](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8b7a1623de93e2200d76be36f8779e1e878c145f))
398
+ * **release:** 0.0.139 ([0452df5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0452df543b640bff4de896228445485396c9aaac))
399
+
400
+
401
+ ### ✨ Features | 新功能
402
+
403
+ * 发票接口添加新属性 ([ccdb837](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ccdb837049fc461fbcc6552ae686079a11328356))
404
+
405
+ ### [0.0.139](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.138...v0.0.139) (2024-01-26)
406
+
407
+ ### [0.0.138](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.137...v0.0.138) (2024-01-26)
408
+
409
+ ### [0.0.137](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.136...v0.0.137) (2024-01-26)
410
+
411
+ ### [0.0.136](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.135...v0.0.136) (2024-01-26)
412
+
413
+ ### [0.0.135](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.134...v0.0.135) (2024-01-25)
414
+
415
+ ### [0.0.134](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.133...v0.0.134) (2024-01-24)
416
+
417
+ ### [0.0.133](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.132...v0.0.133) (2024-01-24)
418
+
419
+ ### [0.0.132](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.131...v0.0.132) (2024-01-24)
420
+
421
+ ### [0.0.131](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.130...v0.0.131) (2024-01-24)
422
+
423
+ ### [0.0.130](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.129...v0.0.130) (2024-01-24)
424
+
425
+ ### [0.0.129](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.128...v0.0.129) (2024-01-24)
426
+
427
+ ### [0.0.128](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.127...v0.0.128) (2024-01-23)
428
+
429
+ ### [0.0.127](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.126...v0.0.127) (2024-01-23)
430
+
431
+ ### [0.0.126](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.125...v0.0.126) (2024-01-23)
432
+
433
+ ### [0.0.125](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.112...v0.0.125) (2024-01-23)
434
+
435
+
436
+ ### 📦 Chores | 其他更新
437
+
438
+ * **release:** 0.0.113 ([d0664e3](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d0664e39023f96a632252d00760bce07d3e253d7))
439
+ * **release:** 0.0.114 ([db22491](https://github.com/snowmountain-top/pos-cli-nodejs/commit/db224911abc891ced13699bfe2bc2c4458283edc))
440
+ * **release:** 0.0.115 ([37e7788](https://github.com/snowmountain-top/pos-cli-nodejs/commit/37e77887c7015196868474f10675cf9603aaf595))
441
+ * **release:** 0.0.116 ([39b8895](https://github.com/snowmountain-top/pos-cli-nodejs/commit/39b8895ad142c61c79b57a20c7dfb0994a86143e))
442
+ * **release:** 0.0.117-beta.0 ([175955e](https://github.com/snowmountain-top/pos-cli-nodejs/commit/175955e011e0dfd108be0bec08dadf1914c0ffbb))
443
+ * **release:** 0.0.118 ([ca46971](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ca46971a3ec82effcd9fde4e5550e83d37983303))
444
+ * **release:** 0.0.119 ([34835fb](https://github.com/snowmountain-top/pos-cli-nodejs/commit/34835fb1ad865a30cef7da66855b3ac88714a454))
445
+ * **release:** 0.0.120 ([0536ff7](https://github.com/snowmountain-top/pos-cli-nodejs/commit/0536ff7426d283f73d0dd84c79b3e97d1beac1ea))
446
+ * **release:** 0.0.121 ([a93334c](https://github.com/snowmountain-top/pos-cli-nodejs/commit/a93334cad1f5510ef5d87f2e4d1e1ba2c3a735fe))
447
+ * **release:** 0.0.122 ([2d79bd0](https://github.com/snowmountain-top/pos-cli-nodejs/commit/2d79bd094afc276615c1a784a953750ec2092e4b))
448
+ * **release:** 0.0.123 ([7217631](https://github.com/snowmountain-top/pos-cli-nodejs/commit/72176317942345ee696c42734b5ba58a9b4ba99d))
449
+ * **release:** 0.0.124 ([8ae1416](https://github.com/snowmountain-top/pos-cli-nodejs/commit/8ae1416450d9579ba18877e8a44a86f2f7b51323))
450
+
451
+ ### [0.0.124](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.123...v0.0.124) (2024-01-18)
452
+
453
+ ### [0.0.123](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.122...v0.0.123) (2024-01-15)
454
+
455
+ ### [0.0.122](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.121...v0.0.122) (2024-01-15)
456
+
457
+ ### [0.0.121](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.120...v0.0.121) (2024-01-15)
458
+
459
+ ### [0.0.120](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.119...v0.0.120) (2024-01-15)
460
+
461
+ ### [0.0.119](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.118...v0.0.119) (2024-01-04)
462
+
463
+ ### [0.0.118](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.117-beta.0...v0.0.118) (2024-01-02)
464
+
465
+ ### [0.0.117-beta.0](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.116...v0.0.117-beta.0) (2024-01-02)
466
+
467
+ ### [0.0.116](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.115...v0.0.116) (2023-12-27)
468
+
469
+ ### [0.0.115](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.106...v0.0.115) (2023-12-26)
470
+
471
+
472
+ ### 📦 Chores | 其他更新
473
+
474
+ * **release:** 0.0.107 ([367507a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/367507a264e9ed74805164d1c57c8b266778d508))
475
+ * **release:** 0.0.108 ([bf0a6a5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bf0a6a55a6ffa661b4079a1b4b3ee1180435f666))
476
+ * **release:** 0.0.109 ([ea2e27a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ea2e27a23d6f0c5ed3d48e9bb0ed856bca2fd93c))
477
+ * **release:** 0.0.110 ([4ed8681](https://github.com/snowmountain-top/pos-cli-nodejs/commit/4ed8681f1fc3fe4e29021d83fe5b6cfe2290bd95))
478
+ * **release:** 0.0.111 ([3d57a71](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3d57a710fa013e276eed1b79874266a158bc3830))
479
+ * **release:** 0.0.112 ([d9547b4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d9547b4083d2bb26e34c36ab4f71487bb6479317))
480
+ * **release:** 0.0.113 ([d0664e3](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d0664e39023f96a632252d00760bce07d3e253d7))
481
+ * **release:** 0.0.114 ([db22491](https://github.com/snowmountain-top/pos-cli-nodejs/commit/db224911abc891ced13699bfe2bc2c4458283edc))
482
+
483
+ ### [0.0.114](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.102...v0.0.114) (2023-12-26)
484
+
485
+
486
+ ### 📝 Documentation | 文档
487
+
488
+ * 添加 conmitlint config ([465aaab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/465aaab585013c78ebe8e52f5b841dd8c6a51216))
489
+
490
+
491
+ ### 📦 Chores | 其他更新
492
+
493
+ * **release:** 0.0.103 ([50e9a37](https://github.com/snowmountain-top/pos-cli-nodejs/commit/50e9a37874fe4fd63065e05f01f32f06493a78c0))
494
+ * **release:** 0.0.103-beta.0 ([7e14cfc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7e14cfcae295c3420f18b7919b7542192f2a045c))
495
+ * **release:** 0.0.103-beta.1 ([ba2076a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba2076ac45384cce64c72b3b9e5df018c999cda5))
496
+ * **release:** 0.0.104 ([76707b5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/76707b533902bea62128b0b9df151a006c82450c))
497
+ * **release:** 0.0.105 ([f66a2f4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f66a2f440994c5239b2f20fcf884424c8220899a))
498
+ * **release:** 0.0.106 ([e7fa956](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e7fa956a4a3997a8fd0956ca779eef75e5148b6b))
499
+ * **release:** 0.0.107 ([367507a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/367507a264e9ed74805164d1c57c8b266778d508))
500
+ * **release:** 0.0.108 ([bf0a6a5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bf0a6a55a6ffa661b4079a1b4b3ee1180435f666))
501
+ * **release:** 0.0.109 ([ea2e27a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ea2e27a23d6f0c5ed3d48e9bb0ed856bca2fd93c))
502
+ * **release:** 0.0.110 ([4ed8681](https://github.com/snowmountain-top/pos-cli-nodejs/commit/4ed8681f1fc3fe4e29021d83fe5b6cfe2290bd95))
503
+ * **release:** 0.0.111 ([3d57a71](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3d57a710fa013e276eed1b79874266a158bc3830))
504
+ * **release:** 0.0.112 ([d9547b4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d9547b4083d2bb26e34c36ab4f71487bb6479317))
505
+ * **release:** 0.0.113 ([d0664e3](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d0664e39023f96a632252d00760bce07d3e253d7))
506
+
507
+ ### [0.0.113](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.102...v0.0.113) (2023-12-26)
508
+
509
+
510
+ ### 📝 Documentation | 文档
511
+
512
+ * 添加 conmitlint config ([465aaab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/465aaab585013c78ebe8e52f5b841dd8c6a51216))
513
+
514
+
515
+ ### 📦 Chores | 其他更新
516
+
517
+ * **release:** 0.0.103 ([50e9a37](https://github.com/snowmountain-top/pos-cli-nodejs/commit/50e9a37874fe4fd63065e05f01f32f06493a78c0))
518
+ * **release:** 0.0.103-beta.0 ([7e14cfc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7e14cfcae295c3420f18b7919b7542192f2a045c))
519
+ * **release:** 0.0.103-beta.1 ([ba2076a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba2076ac45384cce64c72b3b9e5df018c999cda5))
520
+ * **release:** 0.0.104 ([76707b5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/76707b533902bea62128b0b9df151a006c82450c))
521
+ * **release:** 0.0.105 ([f66a2f4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f66a2f440994c5239b2f20fcf884424c8220899a))
522
+ * **release:** 0.0.106 ([e7fa956](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e7fa956a4a3997a8fd0956ca779eef75e5148b6b))
523
+ * **release:** 0.0.107 ([367507a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/367507a264e9ed74805164d1c57c8b266778d508))
524
+ * **release:** 0.0.108 ([bf0a6a5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bf0a6a55a6ffa661b4079a1b4b3ee1180435f666))
525
+ * **release:** 0.0.109 ([ea2e27a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ea2e27a23d6f0c5ed3d48e9bb0ed856bca2fd93c))
526
+ * **release:** 0.0.110 ([4ed8681](https://github.com/snowmountain-top/pos-cli-nodejs/commit/4ed8681f1fc3fe4e29021d83fe5b6cfe2290bd95))
527
+ * **release:** 0.0.111 ([3d57a71](https://github.com/snowmountain-top/pos-cli-nodejs/commit/3d57a710fa013e276eed1b79874266a158bc3830))
528
+ * **release:** 0.0.112 ([d9547b4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/d9547b4083d2bb26e34c36ab4f71487bb6479317))
529
+
530
+ ### [0.0.112](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.111...v0.0.112) (2023-12-25)
531
+
532
+ ### [0.0.111](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.110...v0.0.111) (2023-12-25)
533
+
534
+ ### [0.0.110](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.109...v0.0.110) (2023-12-24)
535
+
536
+ ### 0.0.109 (2023-12-21)
537
+
538
+
539
+ ### 📝 Documentation | 文档
540
+
541
+ * 添加 conmitlint config ([465aaab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/465aaab585013c78ebe8e52f5b841dd8c6a51216))
542
+
543
+
544
+ ### 📦 Chores | 其他更新
545
+
546
+ * **release:** 0.0.103 ([50e9a37](https://github.com/snowmountain-top/pos-cli-nodejs/commit/50e9a37874fe4fd63065e05f01f32f06493a78c0))
547
+ * **release:** 0.0.103-beta.0 ([7e14cfc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7e14cfcae295c3420f18b7919b7542192f2a045c))
548
+ * **release:** 0.0.103-beta.1 ([ba2076a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba2076ac45384cce64c72b3b9e5df018c999cda5))
549
+ * **release:** 0.0.104 ([76707b5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/76707b533902bea62128b0b9df151a006c82450c))
550
+ * **release:** 0.0.105 ([f66a2f4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f66a2f440994c5239b2f20fcf884424c8220899a))
551
+ * **release:** 0.0.106 ([e7fa956](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e7fa956a4a3997a8fd0956ca779eef75e5148b6b))
552
+ * **release:** 0.0.107 ([367507a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/367507a264e9ed74805164d1c57c8b266778d508))
553
+ * **release:** 0.0.108 ([bf0a6a5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/bf0a6a55a6ffa661b4079a1b4b3ee1180435f666))
554
+
555
+ ### [0.0.108](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.107...v0.0.108) (2023-12-19)
556
+
557
+ ### 0.0.107 (2023-12-19)
558
+
559
+
560
+ ### 📝 Documentation | 文档
561
+
562
+ * 添加 conmitlint config ([465aaab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/465aaab585013c78ebe8e52f5b841dd8c6a51216))
563
+
564
+
565
+ ### 📦 Chores | 其他更新
566
+
567
+ * **release:** 0.0.103 ([50e9a37](https://github.com/snowmountain-top/pos-cli-nodejs/commit/50e9a37874fe4fd63065e05f01f32f06493a78c0))
568
+ * **release:** 0.0.103-beta.0 ([7e14cfc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7e14cfcae295c3420f18b7919b7542192f2a045c))
569
+ * **release:** 0.0.103-beta.1 ([ba2076a](https://github.com/snowmountain-top/pos-cli-nodejs/commit/ba2076ac45384cce64c72b3b9e5df018c999cda5))
570
+ * **release:** 0.0.104 ([76707b5](https://github.com/snowmountain-top/pos-cli-nodejs/commit/76707b533902bea62128b0b9df151a006c82450c))
571
+ * **release:** 0.0.105 ([f66a2f4](https://github.com/snowmountain-top/pos-cli-nodejs/commit/f66a2f440994c5239b2f20fcf884424c8220899a))
572
+ * **release:** 0.0.106 ([e7fa956](https://github.com/snowmountain-top/pos-cli-nodejs/commit/e7fa956a4a3997a8fd0956ca779eef75e5148b6b))
573
+
574
+ ### [0.0.106](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.105...v0.0.106) (2023-12-13)
575
+
576
+ ### [0.0.105](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.104...v0.0.105) (2023-12-12)
577
+
578
+ ### [0.0.104](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.103...v0.0.104) (2023-11-30)
579
+
580
+ ### [0.0.103](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.103-beta.1...v0.0.103) (2023-11-30)
581
+
582
+ ### [0.0.103-beta.1](https://github.com/snowmountain-top/pos-cli-nodejs/compare/v0.0.101...v0.0.103-beta.1) (2023-11-30)
583
+
584
+
585
+ ### 📝 Documentation | 文档
586
+
587
+ * 添加 conmitlint config ([465aaab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/465aaab585013c78ebe8e52f5b841dd8c6a51216))
588
+
589
+
590
+ ### 📦 Chores | 其他更新
591
+
592
+ * **release:** 0.0.103-beta.0 ([7e14cfc](https://github.com/snowmountain-top/pos-cli-nodejs/commit/7e14cfcae295c3420f18b7919b7542192f2a045c))
593
+
594
+ ### 0.0.103-beta.0 (2023-11-29)
595
+
596
+
597
+ ### 📝 Documentation | 文档
598
+
599
+ * 添加 conmitlint config ([465aaab](https://github.com/snowmountain-top/pos-cli-nodejs/commit/465aaab585013c78ebe8e52f5b841dd8c6a51216))
package/Makefile ADDED
@@ -0,0 +1,4 @@
1
+ patch-version:
2
+ pnpm version patch && git push
3
+ publish:
4
+ npm run build && cd dist && npm publish && cd ..