@keq-request/cli 5.0.0-alpha.10

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 (142) hide show
  1. package/CHANGELOG.md +764 -0
  2. package/LICENSE +21 -0
  3. package/README.md +23 -0
  4. package/dist/cli.cjs +1949 -0
  5. package/dist/cli.cjs.map +1 -0
  6. package/dist/cli.d.ts +3 -0
  7. package/dist/cli.d.ts.map +1 -0
  8. package/dist/cli.js +1926 -0
  9. package/dist/cli.js.map +1 -0
  10. package/dist/constants/file-naming-style.d.ts +14 -0
  11. package/dist/constants/file-naming-style.d.ts.map +1 -0
  12. package/dist/constants/qs-array-format.d.ts +9 -0
  13. package/dist/constants/qs-array-format.d.ts.map +1 -0
  14. package/dist/constants/supported-methods.d.ts +2 -0
  15. package/dist/constants/supported-methods.d.ts.map +1 -0
  16. package/dist/define-keq-config.d.ts +3 -0
  17. package/dist/define-keq-config.d.ts.map +1 -0
  18. package/dist/exception.d.ts +6 -0
  19. package/dist/exception.d.ts.map +1 -0
  20. package/dist/index.cjs +1855 -0
  21. package/dist/index.cjs.map +1 -0
  22. package/dist/index.d.ts +4 -0
  23. package/dist/index.d.ts.map +1 -0
  24. package/dist/index.js +1816 -0
  25. package/dist/index.js.map +1 -0
  26. package/dist/renderer/json-schema/index.d.ts +3 -0
  27. package/dist/renderer/json-schema/index.d.ts.map +1 -0
  28. package/dist/renderer/operation-request/index.d.ts +8 -0
  29. package/dist/renderer/operation-request/index.d.ts.map +1 -0
  30. package/dist/renderer/operation-type/index.d.ts +5 -0
  31. package/dist/renderer/operation-type/index.d.ts.map +1 -0
  32. package/dist/renderer/request/index.d.ts +2 -0
  33. package/dist/renderer/request/index.d.ts.map +1 -0
  34. package/dist/renderer/types/any-other-attribute.d.ts +5 -0
  35. package/dist/renderer/types/any-other-attribute.d.ts.map +1 -0
  36. package/dist/renderer/types/mixed-schema-object.d.ts +7 -0
  37. package/dist/renderer/types/mixed-schema-object.d.ts.map +1 -0
  38. package/dist/renderer/utils/generate-schema.d.ts +6 -0
  39. package/dist/renderer/utils/generate-schema.d.ts.map +1 -0
  40. package/dist/tasks/append-ignore-rule/index.d.ts +10 -0
  41. package/dist/tasks/append-ignore-rule/index.d.ts.map +1 -0
  42. package/dist/tasks/compile/index.d.ts +8 -0
  43. package/dist/tasks/compile/index.d.ts.map +1 -0
  44. package/dist/tasks/compile/utils/compile-operation-definition.d.ts +12 -0
  45. package/dist/tasks/compile/utils/compile-operation-definition.d.ts.map +1 -0
  46. package/dist/tasks/compile/utils/compile-schema-definition.d.ts +10 -0
  47. package/dist/tasks/compile/utils/compile-schema-definition.d.ts.map +1 -0
  48. package/dist/tasks/download/index.d.ts +10 -0
  49. package/dist/tasks/download/index.d.ts.map +1 -0
  50. package/dist/tasks/index.d.ts +12 -0
  51. package/dist/tasks/index.d.ts.map +1 -0
  52. package/dist/tasks/interactive/index.d.ts +12 -0
  53. package/dist/tasks/interactive/index.d.ts.map +1 -0
  54. package/dist/tasks/interactive/utils/select-operation-definitions.d.ts +5 -0
  55. package/dist/tasks/interactive/utils/select-operation-definitions.d.ts.map +1 -0
  56. package/dist/tasks/persist/index.d.ts +11 -0
  57. package/dist/tasks/persist/index.d.ts.map +1 -0
  58. package/dist/tasks/setup/index.d.ts +10 -0
  59. package/dist/tasks/setup/index.d.ts.map +1 -0
  60. package/dist/tasks/setup/utils/find-nearest-package-json.d.ts +6 -0
  61. package/dist/tasks/setup/utils/find-nearest-package-json.d.ts.map +1 -0
  62. package/dist/tasks/setup/utils/get-project-module-system.d.ts +5 -0
  63. package/dist/tasks/setup/utils/get-project-module-system.d.ts.map +1 -0
  64. package/dist/tasks/setup/utils/index.d.ts +4 -0
  65. package/dist/tasks/setup/utils/index.d.ts.map +1 -0
  66. package/dist/tasks/setup/utils/validate-modules.d.ts +2 -0
  67. package/dist/tasks/setup/utils/validate-modules.d.ts.map +1 -0
  68. package/dist/tasks/shaking/index.d.ts +11 -0
  69. package/dist/tasks/shaking/index.d.ts.map +1 -0
  70. package/dist/tasks/types/ignore-mode.d.ts +2 -0
  71. package/dist/tasks/types/ignore-mode.d.ts.map +1 -0
  72. package/dist/tasks/types/task-context.d.ts +24 -0
  73. package/dist/tasks/types/task-context.d.ts.map +1 -0
  74. package/dist/tasks/utils/api-document.d.ts +18 -0
  75. package/dist/tasks/utils/api-document.d.ts.map +1 -0
  76. package/dist/tasks/utils/api-document_v3_1.d.ts +16 -0
  77. package/dist/tasks/utils/api-document_v3_1.d.ts.map +1 -0
  78. package/dist/tasks/utils/artifact.d.ts +25 -0
  79. package/dist/tasks/utils/artifact.d.ts.map +1 -0
  80. package/dist/tasks/utils/dependency.d.ts +22 -0
  81. package/dist/tasks/utils/dependency.d.ts.map +1 -0
  82. package/dist/tasks/utils/json-schema.d.ts +8 -0
  83. package/dist/tasks/utils/json-schema.d.ts.map +1 -0
  84. package/dist/tasks/utils/module-definition.d.ts +6 -0
  85. package/dist/tasks/utils/module-definition.d.ts.map +1 -0
  86. package/dist/tasks/utils/operation-definition.d.ts +22 -0
  87. package/dist/tasks/utils/operation-definition.d.ts.map +1 -0
  88. package/dist/tasks/utils/schema-definition.d.ts +19 -0
  89. package/dist/tasks/utils/schema-definition.d.ts.map +1 -0
  90. package/dist/tasks/utils/to-comment.d.ts +2 -0
  91. package/dist/tasks/utils/to-comment.d.ts.map +1 -0
  92. package/dist/tasks/validate/index.d.ts +9 -0
  93. package/dist/tasks/validate/index.d.ts.map +1 -0
  94. package/dist/types/build-cli-options.d.ts +19 -0
  95. package/dist/types/build-cli-options.d.ts.map +1 -0
  96. package/dist/types/operation-id-factory.d.ts +10 -0
  97. package/dist/types/operation-id-factory.d.ts.map +1 -0
  98. package/dist/types/qs.d.ts +9 -0
  99. package/dist/types/qs.d.ts.map +1 -0
  100. package/dist/types/runtime-config.d.ts +44 -0
  101. package/dist/types/runtime-config.d.ts.map +1 -0
  102. package/dist/types/to-code-options.d.ts +4 -0
  103. package/dist/types/to-code-options.d.ts.map +1 -0
  104. package/dist/utils/debugger.d.ts +7 -0
  105. package/dist/utils/debugger.d.ts.map +1 -0
  106. package/dist/utils/ignore-matcher.d.ts +19 -0
  107. package/dist/utils/ignore-matcher.d.ts.map +1 -0
  108. package/dist/utils/is-keywords.d.ts +2 -0
  109. package/dist/utils/is-keywords.d.ts.map +1 -0
  110. package/dist/utils/is-reserved-word.d.ts +2 -0
  111. package/dist/utils/is-reserved-word.d.ts.map +1 -0
  112. package/dist/utils/json-schema-utils/index.d.ts +11 -0
  113. package/dist/utils/json-schema-utils/index.d.ts.map +1 -0
  114. package/dist/utils/json-schema-utils/is-array.d.ts +3 -0
  115. package/dist/utils/json-schema-utils/is-array.d.ts.map +1 -0
  116. package/dist/utils/json-schema-utils/is-mixed.d.ts +4 -0
  117. package/dist/utils/json-schema-utils/is-mixed.d.ts.map +1 -0
  118. package/dist/utils/json-schema-utils/is-non-array.d.ts +3 -0
  119. package/dist/utils/json-schema-utils/is-non-array.d.ts.map +1 -0
  120. package/dist/utils/json-schema-utils/is-ref.d.ts +3 -0
  121. package/dist/utils/json-schema-utils/is-ref.d.ts.map +1 -0
  122. package/dist/utils/json-schema-utils/types/any-other-attribute.d.ts +5 -0
  123. package/dist/utils/json-schema-utils/types/any-other-attribute.d.ts.map +1 -0
  124. package/dist/utils/json-schema-utils/types/mixed-schema-object.d.ts +7 -0
  125. package/dist/utils/json-schema-utils/types/mixed-schema-object.d.ts.map +1 -0
  126. package/dist/utils/logger.d.ts +6 -0
  127. package/dist/utils/logger.d.ts.map +1 -0
  128. package/dist/utils/swagger-utils/dereference-deep.d.ts +3 -0
  129. package/dist/utils/swagger-utils/dereference-deep.d.ts.map +1 -0
  130. package/dist/utils/swagger-utils/dereference-operation.d.ts +4 -0
  131. package/dist/utils/swagger-utils/dereference-operation.d.ts.map +1 -0
  132. package/dist/utils/swagger-utils/dereference.d.ts +3 -0
  133. package/dist/utils/swagger-utils/dereference.d.ts.map +1 -0
  134. package/dist/utils/swagger-utils/index.d.ts +15 -0
  135. package/dist/utils/swagger-utils/index.d.ts.map +1 -0
  136. package/dist/utils/swagger-utils/is-ref-defined.d.ts +3 -0
  137. package/dist/utils/swagger-utils/is-ref-defined.d.ts.map +1 -0
  138. package/dist/utils/swagger-utils/remove-undefined-ref.d.ts +3 -0
  139. package/dist/utils/swagger-utils/remove-undefined-ref.d.ts.map +1 -0
  140. package/dist/utils/swagger-utils/update-operation-id.d.ts +5 -0
  141. package/dist/utils/swagger-utils/update-operation-id.d.ts.map +1 -0
  142. package/package.json +80 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,764 @@
1
+ ## 5.0.0-alpha.6 (2025-09-17)
2
+
3
+ ## 5.0.0-alpha.10
4
+
5
+ ### Patch Changes
6
+
7
+ - e7eb9dc: Don't publish .turbo and jest.config.cts to npm
8
+ - 7343445: Incorrect build before release
9
+ - Updated dependencies [e7eb9dc]
10
+ - Updated dependencies [7343445]
11
+ - keq@5.0.0-alpha.10
12
+
13
+ ## 5.0.0-alpha.9
14
+
15
+ ### Patch Changes
16
+
17
+ - 2686b8d: build with burbo
18
+ - 2686b8d: remove private dependencies
19
+ - Updated dependencies [2686b8d]
20
+ - Updated dependencies [2686b8d]
21
+ - keq@5.0.0-alpha.9
22
+
23
+ ## 5.0.0-alpha.8
24
+
25
+ ### Patch Changes
26
+
27
+ - 0873c7e: Incorrect build before release.
28
+ - Updated dependencies [0873c7e]
29
+ - keq@5.0.0-alpha.8
30
+
31
+ ## 5.0.0-alpha.7
32
+
33
+ ### Major Changes
34
+
35
+ - 339b87d: **BREAKING CHANGE:** Rename the command keq-cli to keq.
36
+ - 153244f: **BREAKING CHANGE:** the request option in keqrc config removed.
37
+ - 5175097: **BREAKING CHANGE:** group all packages under the @keq-request scope
38
+
39
+ - keq-cache => @keq-request/cache
40
+ - keq-headers => @keq-request/headers
41
+ - keq-cli => @keq-request/cli
42
+ - keq-url => @keq-request/url
43
+ - keq-exception => @keq-request/exception
44
+
45
+ ### Patch Changes
46
+
47
+ - 153244f: **Fix:** avoid conflicts between the interface name of operation and the schema name of components
48
+ - Updated dependencies [153244f]
49
+ - Updated dependencies [153244f]
50
+ - Updated dependencies [153244f]
51
+ - Updated dependencies [153244f]
52
+ - Updated dependencies [153244f]
53
+ - Updated dependencies [7ff2162]
54
+ - Updated dependencies [153244f]
55
+ - Updated dependencies [153244f]
56
+ - Updated dependencies [153244f]
57
+ - Updated dependencies [153244f]
58
+ - Updated dependencies [153244f]
59
+ - keq@5.0.0-alpha.7
60
+
61
+ This was a version bump only for keq-cli to align it with other projects, there were no code changes.
62
+
63
+ ## 5.0.0-alpha.5 (2025-09-17)
64
+
65
+ ### 🩹 Fixes
66
+
67
+ - **keq-cli:** cannot import handlebar ([9274423](https://github.com/keq-request/keq/commit/9274423))
68
+
69
+ ### ❤️ Thank You
70
+
71
+ - val.istar.guo
72
+
73
+ # Changelog
74
+
75
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
76
+
77
+ ## [4.10.12](https://github.com/keq-request/keq-cli/compare/v4.10.11...v4.10.12) (2025-09-10)
78
+
79
+ ### Bug Fixes
80
+
81
+ - cannot generete schema named index ([9c0c841](https://github.com/keq-request/keq-cli/commit/9c0c84196158e056c35132824da5b5da6e025fc7))
82
+
83
+ ## [4.10.11](https://github.com/keq-request/keq-cli/compare/v4.10.10...v4.10.11) (2025-09-02)
84
+
85
+ ### Performance Improvements
86
+
87
+ - update generated comments in templates to prevent editing ([6cb6069](https://github.com/keq-request/keq-cli/commit/6cb606924fd895a0a954cb3d32ce7d50db1f6847))
88
+
89
+ ## [4.10.10](https://github.com/keq-request/keq-cli/compare/v4.10.9...v4.10.10) (2025-08-14)
90
+
91
+ ### Performance Improvements
92
+
93
+ - add option to tolerate wrong swagger ([1399ec7](https://github.com/keq-request/keq-cli/commit/1399ec7cea9e82a926375554bd3189fe295b51c2))
94
+
95
+ ## [4.10.9](https://github.com/keq-request/keq-cli/compare/v4.10.8...v4.10.9) (2025-08-06)
96
+
97
+ ### Bug Fixes
98
+
99
+ - escape asterisks in comment template ([c02a76b](https://github.com/keq-request/keq-cli/commit/c02a76bdbf80f5883a959f305a5e2d5ad8a488f9))
100
+ - wrong import paths ([5648e02](https://github.com/keq-request/keq-cli/commit/5648e02fc60eb39281fb0bdb1b7437e133df6920))
101
+
102
+ ## [4.10.8](https://github.com/keq-request/keq-cli/compare/v4.10.7...v4.10.8) (2025-06-13)
103
+
104
+ ### Bug Fixes
105
+
106
+ - undefined should not set into form-data ([4ebc9fe](https://github.com/keq-request/keq-cli/commit/4ebc9fe425ef5ab221d8b1da3880eeb9a19437b8))
107
+
108
+ ## [4.10.7](https://github.com/keq-request/keq-cli/compare/v4.10.6...v4.10.7) (2025-03-28)
109
+
110
+ ### Bug Fixes
111
+
112
+ - wrong typescript types with binary property ([ccad920](https://github.com/keq-request/keq-cli/commit/ccad92056f5902176b76f74899a0151304f55172))
113
+
114
+ ## [4.10.6](https://github.com/keq-request/keq-cli/compare/v4.10.5...v4.10.6) (2025-03-28)
115
+
116
+ ### Bug Fixes
117
+
118
+ - wrong code with binary file ([d432c43](https://github.com/keq-request/keq-cli/commit/d432c43c2459990129f2de732efebb36d894b148))
119
+
120
+ ## [4.10.5](https://github.com/keq-request/keq-cli/compare/v4.10.4...v4.10.5) (2025-03-21)
121
+
122
+ ### Bug Fixes
123
+
124
+ - wrong form data renderer ([869935d](https://github.com/keq-request/keq-cli/commit/869935d4be1e631c10f25e6cd30f2bf27b58a833))
125
+
126
+ ## [4.10.4](https://github.com/keq-request/keq-cli/compare/v4.10.3...v4.10.4) (2025-03-06)
127
+
128
+ ### Bug Fixes
129
+
130
+ - ensure header parameters are set only if they have a value ([0cd82a6](https://github.com/keq-request/keq-cli/commit/0cd82a648f0ac248cb069c76c1415b2c050c0ca4))
131
+
132
+ ## [4.10.3](https://github.com/keq-request/keq-cli/compare/v4.10.2...v4.10.3) (2025-02-12)
133
+
134
+ ### Performance Improvements
135
+
136
+ - use @opendoc/openapi-shaking to simplify code ([c5b55d5](https://github.com/keq-request/keq-cli/commit/c5b55d5a3d390df96c07b97a0bed1c9f263d2647))
137
+
138
+ ## [4.10.2](https://github.com/keq-request/keq-cli/compare/v4.10.1...v4.10.2) (2025-01-21)
139
+
140
+ ### Bug Fixes
141
+
142
+ - cli --pathname and --method not work without -i ([3ee73e9](https://github.com/keq-request/keq-cli/commit/3ee73e90e1e7fde3e3d1aad1544021657d0044d4))
143
+
144
+ ### Performance Improvements
145
+
146
+ - sharking unsupported methods ([efce73a](https://github.com/keq-request/keq-cli/commit/efce73ae3e67fc3cda5379c78c383af9458ffd5f))
147
+
148
+ ## [4.10.1](https://github.com/keq-request/keq-cli/compare/v4.10.0...v4.10.1) (2025-01-21)
149
+
150
+ ### Bug Fixes
151
+
152
+ - cli filters not work ([dd41863](https://github.com/keq-request/keq-cli/commit/dd4186325c0960abe65ada4fcf937732498af95b))
153
+
154
+ ## [4.10.0](https://github.com/keq-request/keq-cli/compare/v4.9.2...v4.10.0) (2025-01-20)
155
+
156
+ ### Features
157
+
158
+ - cli could accept arrays for method and pathname ([db872e5](https://github.com/keq-request/keq-cli/commit/db872e53da2b388af69538b2d3fd5b65cbddb555))
159
+
160
+ ### Performance Improvements
161
+
162
+ - cli method option case insensitive ([93c8095](https://github.com/keq-request/keq-cli/commit/93c8095d1ae80a77e2ef519f378f344eb216b550))
163
+
164
+ ## [4.9.2](https://github.com/keq-request/keq-cli/compare/v4.9.1...v4.9.2) (2025-01-14)
165
+
166
+ ### Bug Fixes
167
+
168
+ - effective schema be removed ([c273da3](https://github.com/keq-request/keq-cli/commit/c273da38ad51b6ebe1f011ebb04a43c4cc10ea36))
169
+
170
+ ## [4.9.1](https://github.com/keq-request/keq-cli/compare/v4.9.0...v4.9.1) (2025-01-09)
171
+
172
+ ### Performance Improvements
173
+
174
+ - do not valid opeartion that be sharked ([914cdbc](https://github.com/keq-request/keq-cli/commit/914cdbcbbee78ab4df947f9e14ea3d490c32a835))
175
+
176
+ ## [4.9.0](https://github.com/keq-request/keq-cli/compare/v4.8.1...v4.9.0) (2024-12-23)
177
+
178
+ ### Features
179
+
180
+ - you could get pathname form <operation>.pathname ([4cc4218](https://github.com/keq-request/keq-cli/commit/4cc4218f9893f86a986481dbf9d20c5b130ea45a))
181
+
182
+ ### Performance Improvements
183
+
184
+ - beautify the error message when fetch wrong swagger url ([2295cdf](https://github.com/keq-request/keq-cli/commit/2295cdf15cf62b486b1f5819f0a0f9cf6e31dc03))
185
+ - export operation types ([989c338](https://github.com/keq-request/keq-cli/commit/989c338730782707f830ad01fa0fc85d30e23f28))
186
+ - unified quotation mark style ([dcf3bb3](https://github.com/keq-request/keq-cli/commit/dcf3bb32d026a44e7125f62a498c6a5066ef7063))
187
+
188
+ ## [4.8.1](https://github.com/keq-request/keq-cli/compare/v4.8.0...v4.8.1) (2024-12-18)
189
+
190
+ ### Performance Improvements
191
+
192
+ - support summary in comments ([59320e0](https://github.com/keq-request/keq-cli/commit/59320e0bdd78342b3c2402916ceb04d2c1b9cbdb))
193
+
194
+ ## [4.8.0](https://github.com/keq-request/keq-cli/compare/v4.7.10...v4.8.0) (2024-12-15)
195
+
196
+ ### Features
197
+
198
+ - support form-data ([35da404](https://github.com/keq-request/keq-cli/commit/35da40438d8284143fd7407d6eda2f1cc91b6bdc)), closes [#102](https://github.com/keq-request/keq-cli/issues/102)
199
+
200
+ ### Bug Fixes
201
+
202
+ - [#102](https://github.com/keq-request/keq-cli/issues/102) ([35da404](https://github.com/keq-request/keq-cli/commit/35da40438d8284143fd7407d6eda2f1cc91b6bdc))
203
+
204
+ ## [4.7.10](https://github.com/keq-request/keq-cli/compare/v4.7.9...v4.7.10) (2024-12-10)
205
+
206
+ ### Bug Fixes
207
+
208
+ - update peer dependency keq to version 2.7.4 ([fab64c8](https://github.com/keq-request/keq-cli/commit/fab64c8472db307035d4c105b771193a22a7f147))
209
+
210
+ ## [4.7.9](https://github.com/keq-request/keq-cli/compare/v4.7.8...v4.7.9) (2024-12-03)
211
+
212
+ ### Bug Fixes
213
+
214
+ - generation error when allOf and properties are present at the same time ([d51b39e](https://github.com/keq-request/keq-cli/commit/d51b39ec362a189a7c35601649e3caf83cb9b6e5))
215
+
216
+ ## [4.7.8](https://github.com/keq-request/keq-cli/compare/v4.7.7...v4.7.8) (2024-11-29)
217
+
218
+ ### Performance Improvements
219
+
220
+ - explicit error messages when cannot find schema ([0a35364](https://github.com/keq-request/keq-cli/commit/0a35364a452a6ad3471738cb9efe6b8677c1be87))
221
+
222
+ ## [4.7.7](https://github.com/keq-request/keq-cli/compare/v4.7.6...v4.7.7) (2024-10-23)
223
+
224
+ ### Performance Improvements
225
+
226
+ - use operationIdFactory replace operationId ([ed1d8d3](https://github.com/keq-request/keq-cli/commit/ed1d8d34eda4b5b3e1acec693c3c1149fbb680e9))
227
+
228
+ ## [4.7.6](https://github.com/keq-request/keq-cli/compare/v4.7.5...v4.7.6) (2024-09-27)
229
+
230
+ ### Bug Fixes
231
+
232
+ - avoid Chinese characters being replaced by random numbers ([9108908](https://github.com/keq-request/keq-cli/commit/91089080e6379dd43fbc150483165857eb0c10a0))
233
+
234
+ ## [4.7.5](https://github.com/keq-request/keq-cli/compare/v4.7.4...v4.7.5) (2024-09-25)
235
+
236
+ ### Bug Fixes
237
+
238
+ - special characters cause Chinese replacement to fail ([08ec464](https://github.com/keq-request/keq-cli/commit/08ec464d63adb74ead9b1a233325e7a3b0e674be))
239
+
240
+ ## [4.7.4](https://github.com/keq-request/keq-cli/compare/v4.7.3...v4.7.4) (2024-09-04)
241
+
242
+ ### Bug Fixes
243
+
244
+ - --debug not work ([dda42cc](https://github.com/keq-request/keq-cli/commit/dda42ccf11d9a830c7eaac6794ef58179b2a6ca9))
245
+ - error when allof without $ref ([4339583](https://github.com/keq-request/keq-cli/commit/4339583bc07fa78f544f0610a39db312250e1723))
246
+
247
+ ## [4.7.3](https://github.com/keq-request/keq-cli/compare/v4.7.2...v4.7.3) (2024-08-22)
248
+
249
+ ### Bug Fixes
250
+
251
+ - prompts the wrong skip module ([3621e01](https://github.com/keq-request/keq-cli/commit/3621e0160293e5be4aa01c6ce7b3b43574b4eac8))
252
+
253
+ ## [4.7.2](https://github.com/keq-request/keq-cli/compare/v4.7.1...v4.7.2) (2024-08-21)
254
+
255
+ ### Performance Improvements
256
+
257
+ - add alert when not select any pathname in interactive mode ([743caba](https://github.com/keq-request/keq-cli/commit/743cabaa1809ae2ef125acbf40a63ad2408efe60))
258
+
259
+ ## [4.7.1](https://github.com/keq-request/keq-cli/compare/v4.7.0...v4.7.1) (2024-08-19)
260
+
261
+ ### Bug Fixes
262
+
263
+ - throw error when swagger has null property ([e556e1f](https://github.com/keq-request/keq-cli/commit/e556e1f7ca229dca1dd89896978cd5e07315b42f))
264
+
265
+ ## [4.7.0](https://github.com/keq-request/keq-cli/compare/v4.6.4...v4.7.0) (2024-08-19)
266
+
267
+ ### Features
268
+
269
+ - sharking unselected schemas ([f73b738](https://github.com/keq-request/keq-cli/commit/f73b7387bad6be362cf033f6de9270b7bc71d04b))
270
+
271
+ ### Performance Improvements
272
+
273
+ - log the number of impacts after generated ([7d7da39](https://github.com/keq-request/keq-cli/commit/7d7da39a0c6c3ea730aed6f139fc99bf0fded026))
274
+
275
+ ## [4.6.4](https://github.com/keq-request/keq-cli/compare/v4.6.3...v4.6.4) (2024-08-13)
276
+
277
+ ### Bug Fixes
278
+
279
+ - the number type defined in header/routeParams/query is incorrectly compiled into string type ([d2ad9d1](https://github.com/keq-request/keq-cli/commit/d2ad9d17c6775fc31a3a4f18e1ea1b145526806c))
280
+
281
+ ## [4.6.3](https://github.com/keq-request/keq-cli/compare/v4.6.2...v4.6.3) (2024-08-13)
282
+
283
+ ### Performance Improvements
284
+
285
+ - allow header to add number type fields ([37ab442](https://github.com/keq-request/keq-cli/commit/37ab44235d01690b4e88971842ebc95866172ba1))
286
+
287
+ ## [4.6.2](https://github.com/keq-request/keq-cli/compare/v4.6.1...v4.6.2) (2024-08-12)
288
+
289
+ ### Performance Improvements
290
+
291
+ - prompt when no method is selected in interactive mode ([3adeb81](https://github.com/keq-request/keq-cli/commit/3adeb8118f720102ffab5b487646945e621dfae7))
292
+ - set default method in interactive mode ([3b9bf5b](https://github.com/keq-request/keq-cli/commit/3b9bf5b7390d5278fe609cc6c7d6ee22103d46fe))
293
+ - trim space in search ([1526d2a](https://github.com/keq-request/keq-cli/commit/1526d2af410ea59aa5ad891b3de18c38687e3f0b))
294
+
295
+ ## [4.6.1](https://github.com/keq-request/keq-cli/compare/v4.6.0...v4.6.1) (2024-08-10)
296
+
297
+ ### Bug Fixes
298
+
299
+ - requestBody,response and paramaters cannot be parsed correctly when $ref appears ([d2f5871](https://github.com/keq-request/keq-cli/commit/d2f587152ff22514c6ac364773bd4f08a5a6a079))
300
+
301
+ ## [4.6.0](https://github.com/keq-request/keq-cli/compare/v4.5.7...v4.6.0) (2024-08-09)
302
+
303
+ ### Features
304
+
305
+ - add interactive filter ([6908d2b](https://github.com/keq-request/keq-cli/commit/6908d2bc25bcf8a3388dc753e988347c066b4ca2))
306
+ - add operation filter ([772c614](https://github.com/keq-request/keq-cli/commit/772c6145f2e7bd1e2e84f82e110ad1a1f05b9176))
307
+
308
+ ## [4.5.7](https://github.com/keq-request/keq-cli/compare/v4.5.6...v4.5.7) (2024-07-24)
309
+
310
+ ### Bug Fixes
311
+
312
+ - wrong typescript definition ([bb2856e](https://github.com/keq-request/keq-cli/commit/bb2856e68ea84f22d54f61dffe197efaf0d8e8f9))
313
+
314
+ ## [4.5.6](https://github.com/keq-request/keq-cli/compare/v4.5.5...v4.5.6) (2024-07-08)
315
+
316
+ ### Bug Fixes
317
+
318
+ - build fails when there is a boolean attribute in the query ([ea4d06e](https://github.com/keq-request/keq-cli/commit/ea4d06ec13ec76f92e8bb9a1cf72e6511e6d893b))
319
+
320
+ ## [4.5.5](https://github.com/keq-request/keq-cli/compare/v4.5.4...v4.5.5) (2024-06-26)
321
+
322
+ ### Bug Fixes
323
+
324
+ - compilation error caused by trace and option interfaces in swagger file ([2032aae](https://github.com/keq-request/keq-cli/commit/2032aae9ff9bb21e8a2a8746c9a6447cf8598811))
325
+
326
+ ## [4.5.4](https://github.com/keq-request/keq-cli/compare/v4.5.3...v4.5.4) (2024-06-21)
327
+
328
+ ### Bug Fixes
329
+
330
+ - cli config option not work ([c991369](https://github.com/keq-request/keq-cli/commit/c991369bbfba4127a9b6d4f3e70bbef94b25df61))
331
+
332
+ ### Performance Improvements
333
+
334
+ - check node version and lock typescript version ([3dbb509](https://github.com/keq-request/keq-cli/commit/3dbb50968846a3a117936cd4dfc1242e15a8bfa0))
335
+
336
+ ## [4.5.3](https://github.com/keq-request/keq-cli/compare/v4.5.2...v4.5.3) (2024-06-07)
337
+
338
+ ### Bug Fixes
339
+
340
+ - cannot import KeqOperation type ([578fd00](https://github.com/keq-request/keq-cli/commit/578fd00789c0957b6360cca5e969d9f4eacab899))
341
+
342
+ ## [4.5.2](https://github.com/keq-request/keq-cli/compare/v4.5.1...v4.5.2) (2024-06-04)
343
+
344
+ ### Bug Fixes
345
+
346
+ - esm option not work ([e527975](https://github.com/keq-request/keq-cli/commit/e5279754702960be834e574810c03d16fa9d82c9))
347
+
348
+ ## [4.5.1](https://github.com/keq-request/keq-cli/compare/v4.5.0...v4.5.1) (2024-06-04)
349
+
350
+ ### Bug Fixes
351
+
352
+ - add esm configuration to control the generated code to comply with esm specifications ([04fda6a](https://github.com/keq-request/keq-cli/commit/04fda6aa330f59d1ab3432b26f2c154dd51643a7))
353
+
354
+ ## [4.5.0](https://github.com/keq-request/keq-cli/compare/v4.4.1...v4.5.0) (2024-06-02)
355
+
356
+ ### Features
357
+
358
+ - support code hints for keq ([39f5810](https://github.com/keq-request/keq-cli/commit/39f5810239395f3f70a7456bd49dea930ba44ddc))
359
+
360
+ ### Performance Improvements
361
+
362
+ - generate the ts definition file of the interface independently ([6c8b970](https://github.com/keq-request/keq-cli/commit/6c8b9708427edda5fa5f668f31e54c34cd9ef24b))
363
+
364
+ ## [4.4.1](https://github.com/keq-request/keq-cli/compare/v4.4.0...v4.4.1) (2024-05-31)
365
+
366
+ ### Bug Fixes
367
+
368
+ - swagger from remote url not fix and convert correctly ([48917b8](https://github.com/keq-request/keq-cli/commit/48917b81489b8b4aa46571e96f2e227581d233de))
369
+
370
+ ## [4.4.0](https://github.com/keq-request/keq-cli/compare/v4.3.1...v4.4.0) (2024-05-30)
371
+
372
+ ### Features
373
+
374
+ - support custom operationId ([ec2bfe5](https://github.com/keq-request/keq-cli/commit/ec2bfe5283a7af8d9acc557ad2e1661b30c392f2))
375
+
376
+ ## [4.3.1](https://github.com/keq-request/keq-cli/compare/v4.3.0...v4.3.1) (2024-05-29)
377
+
378
+ ### Bug Fixes
379
+
380
+ - update swagger-fix to 1.0.1 ([2a37482](https://github.com/keq-request/keq-cli/commit/2a37482296a3f74a007b9576498187def20a16d6))
381
+
382
+ ## [4.3.0](https://github.com/keq-request/keq-cli/compare/v4.2.1...v4.3.0) (2024-05-29)
383
+
384
+ ### Features
385
+
386
+ - fix invalid content in swagger using swagger-fix ([42ee607](https://github.com/keq-request/keq-cli/commit/42ee6078735675900ba63618637b3074160327a4))
387
+
388
+ ## [4.2.1](https://github.com/keq-request/keq-cli/compare/v4.2.0...v4.2.1) (2024-05-16)
389
+
390
+ ### Bug Fixes
391
+
392
+ - swagger@2 maybe outpu nothing ([10fc715](https://github.com/keq-request/keq-cli/commit/10fc715d354f78e9cb7b3a6db19cc8030376d779))
393
+
394
+ ## [4.2.0](https://github.com/keq-request/keq-cli/compare/v4.1.3...v4.2.0) (2024-05-15)
395
+
396
+ ### Features
397
+
398
+ - auto covert swagger@2 to swagger@3 ([391d13d](https://github.com/keq-request/keq-cli/commit/391d13d0e3e11f4d58665c98c403139dfdea367d))
399
+
400
+ ## [4.1.3](https://github.com/keq-request/keq-cli/compare/v4.1.2...v4.1.3) (2024-05-14)
401
+
402
+ ### Documentation
403
+
404
+ - ues keq@2 API as example ([ce981ac](https://github.com/keq-request/keq-cli/commit/ce981acea2041da735ab173515e9ba3d357c76d5))
405
+
406
+ ## [4.1.2](https://github.com/keq-request/keq-cli/compare/v4.1.1...v4.1.2) (2024-05-13)
407
+
408
+ ### Performance Improvements
409
+
410
+ - beautify operation code ([7441b41](https://github.com/keq-request/keq-cli/commit/7441b413cec6ff7668b4d499155ba7b74c67963b))
411
+
412
+ ## [4.1.1](https://github.com/keq-request/keq-cli/compare/v4.1.0...v4.1.1) (2024-03-18)
413
+
414
+ ### Bug Fixes
415
+
416
+ - middle line in the header will cause errors in the generated code ([acb0426](https://github.com/keq-request/keq-cli/commit/acb04265076e758534ccf0111f3c322d451fa61a))
417
+
418
+ ## [4.1.0](https://github.com/keq-request/keq-cli/compare/v4.0.2...v4.1.0) (2024-03-14)
419
+
420
+ ### Features
421
+
422
+ - support multiple status schema ([94c06e4](https://github.com/keq-request/keq-cli/commit/94c06e4340078830aac743cabdec3c462600b99b))
423
+
424
+ ## [4.0.2](https://github.com/keq-request/keq-cli/compare/v4.0.1...v4.0.2) (2024-03-14)
425
+
426
+ ### Bug Fixes
427
+
428
+ - hyphens in object keys will cause the generated interface exception ([e0e718e](https://github.com/keq-request/keq-cli/commit/e0e718ea9575a468e262ca8752003487a7bd9202))
429
+
430
+ ## [4.0.1](https://github.com/keq-request/keq-cli/compare/v4.0.0...v4.0.1) (2024-01-22)
431
+
432
+ ### Bug Fixes
433
+
434
+ - wrong peerDependencies ([623da11](https://github.com/keq-request/keq-cli/commit/623da11d8f5081ba4e45ac7f8a3df2106890c307))
435
+
436
+ ### Performance Improvements
437
+
438
+ - human error message ([16874a3](https://github.com/keq-request/keq-cli/commit/16874a34d56bba4f747b20aba32439cc0ae02628))
439
+
440
+ ## [4.0.0](https://github.com/keq-request/keq-cli/compare/v3.1.5...v4.0.0) (2024-01-19)
441
+
442
+ ### ⚠ BREAKING CHANGES
443
+
444
+ - Drop support node@16 and keq@1
445
+
446
+ ### Features
447
+
448
+ - update dependencies,docs and build tools ([45abafc](https://github.com/keq-request/keq-cli/commit/45abafc04d6c8e6dba5ee1d55177df03e7acad6c))
449
+
450
+ ### Bug Fixes
451
+
452
+ - operation cannot be generated correctly when allOf/oneOf/anyOf exits in the request body ([c2ddb7f](https://github.com/keq-request/keq-cli/commit/c2ddb7fee555f30cb1e60c4acc7a05bd997ac14d))
453
+
454
+ ### [3.1.5](https://www.github.com/keq-request/keq-cli/compare/v3.1.4...v3.1.5) (2023-02-08)
455
+
456
+ ### Bug Fixes
457
+
458
+ - operation name unescaped all special characters ([a9a29c0](https://www.github.com/keq-request/keq-cli/commit/a9a29c0e364b8dcbdf71c4be362d27369c2896b8))
459
+
460
+ ### [3.1.4](https://www.github.com/keq-request/keq-cli/compare/v3.1.3...v3.1.4) (2023-02-08)
461
+
462
+ ### Bug Fixes
463
+
464
+ - avoid operation naming duplicates with javascript keywords ([c9ce69a](https://www.github.com/keq-request/keq-cli/commit/c9ce69a2cc1e937f8bf2fda676f77e2cbba6c3e7))
465
+ - the operation do not import schema of parameters ([7a4d265](https://www.github.com/keq-request/keq-cli/commit/7a4d265761b27ad638d39c71d964bc8882ca7495))
466
+
467
+ ### [3.1.3](https://www.github.com/keq-request/keq-cli/compare/v3.1.2...v3.1.3) (2023-01-03)
468
+
469
+ ### Bug Fixes
470
+
471
+ - support integer type ([c325428](https://www.github.com/keq-request/keq-cli/commit/c325428b05d6ff3456ad1a669cf2dcb2b9ce6c74))
472
+
473
+ ### [3.1.2](https://www.github.com/keq-request/keq-cli/compare/v3.1.1...v3.1.2) (2022-12-29)
474
+
475
+ ### Bug Fixes
476
+
477
+ - generate wrong operation when has multiple route params ([fc18ba0](https://www.github.com/keq-request/keq-cli/commit/fc18ba0ed070c2248cf2fa984a376a172ec47647))
478
+
479
+ ### [3.1.1](https://www.github.com/keq-request/keq-cli/compare/v3.1.0...v3.1.1) (2022-12-16)
480
+
481
+ ### Bug Fixes
482
+
483
+ - compile wrong when items is undefined ([6a4897d](https://www.github.com/keq-request/keq-cli/commit/6a4897d1541d0f61377a9a96ac3963779bbc7256))
484
+
485
+ ## [3.1.0](https://www.github.com/keq-request/keq-cli/compare/v3.0.15...v3.1.0) (2022-12-14)
486
+
487
+ ### Features
488
+
489
+ - beautify logging and avoid individual modules blocking other modules from compiling ([3e883b9](https://www.github.com/keq-request/keq-cli/commit/3e883b9d88fc9976cfe2de7d8115da62e07b7e7c))
490
+
491
+ ### Bug Fixes
492
+
493
+ - import is lost when $ref is in additionalProperties ([31aedb6](https://www.github.com/keq-request/keq-cli/commit/31aedb6ef1d6fba83618f7d8d49d037407d878d7))
494
+ - the compiled index file wrong, when operationId is "index" ([e264f92](https://www.github.com/keq-request/keq-cli/commit/e264f929d6f877cd18fe339d48f209eec1faad8a))
495
+
496
+ ### [3.0.15](https://www.github.com/keq-request/keq-cli/compare/v3.0.14...v3.0.15) (2022-10-14)
497
+
498
+ ### Bug Fixes
499
+
500
+ - the wrong file is output when the swagger file contentType exists _/_ ([fdec6dc](https://www.github.com/keq-request/keq-cli/commit/fdec6dcad1863f9bd2fbab474c1d22d4dd4520b1))
501
+
502
+ ### [3.0.14](https://www.github.com/keq-request/keq-cli/compare/v3.0.13...v3.0.14) (2022-10-13)
503
+
504
+ ### Bug Fixes
505
+
506
+ - program chashed when swagger without parameters ([bbe6105](https://www.github.com/keq-request/keq-cli/commit/bbe61051b6d6360d57ae4162007e8f239474351c))
507
+
508
+ ### [3.0.13](https://www.github.com/keq-request/keq-cli/compare/v3.0.12...v3.0.13) (2022-08-03)
509
+
510
+ ### Bug Fixes
511
+
512
+ - wrong request instance when run build ([4f1809e](https://www.github.com/keq-request/keq-cli/commit/4f1809e9e2bbdf9ce9275efa942b9e239f0fa7bc))
513
+
514
+ ### [3.0.12](https://www.github.com/keq-request/keq-cli/compare/v3.0.11...v3.0.12) (2022-08-03)
515
+
516
+ ### Bug Fixes
517
+
518
+ - wrong default request instance ([313acea](https://www.github.com/keq-request/keq-cli/commit/313aceacb787ed5432153fdd89d7f7c70da4c00a))
519
+
520
+ ### [3.0.11](https://www.github.com/keq-request/keq-cli/compare/v3.0.10...v3.0.11) (2022-07-23)
521
+
522
+ ### Bug Fixes
523
+
524
+ - the wrong custom request instance path in generated file ([d92d2d9](https://www.github.com/keq-request/keq-cli/commit/d92d2d94fe3413c3a96fe09fdd88862e539da077))
525
+
526
+ ### [3.0.10](https://www.github.com/keq-request/keq-cli/compare/v3.0.9...v3.0.10) (2022-06-19)
527
+
528
+ ### Bug Fixes
529
+
530
+ - url template not transformed in module pathname ([4dcc092](https://www.github.com/keq-request/keq-cli/commit/4dcc092b120111cc19b1f710350feb3f69ef71a0))
531
+
532
+ ### [3.0.9](https://www.github.com/keq-request/keq-cli/compare/v3.0.8...v3.0.9) (2022-06-19)
533
+
534
+ ### Bug Fixes
535
+
536
+ - url template is not transformed automatically ([d7257cc](https://www.github.com/keq-request/keq-cli/commit/d7257ccc4e0cac758d34a8503b7e99b35cbf7325))
537
+
538
+ ### [3.0.8](https://www.github.com/keq-request/keq-cli/compare/v3.0.7...v3.0.8) (2022-06-19)
539
+
540
+ ### Bug Fixes
541
+
542
+ - the request body is not autofilled ([35e48e7](https://www.github.com/keq-request/keq-cli/commit/35e48e7e7496e723b1b2480698476110db7333b0))
543
+
544
+ ### [3.0.7](https://www.github.com/keq-request/keq-cli/compare/v3.0.6...v3.0.7) (2022-06-16)
545
+
546
+ ### Bug Fixes
547
+
548
+ - export unnecessary type declarations ([5d36b87](https://www.github.com/keq-request/keq-cli/commit/5d36b87e68e5c281a8fbd04ddc1f3eda6d3edb0c))
549
+ - schema dependencies are deduplicated ([7a6df88](https://www.github.com/keq-request/keq-cli/commit/7a6df88d0f741af3a18ad6672aef235c5822ab35))
550
+
551
+ ### [3.0.6](https://www.github.com/keq-request/keq-cli/compare/v3.0.5...v3.0.6) (2022-06-15)
552
+
553
+ ### Bug Fixes
554
+
555
+ - missing export file ([e8d9ef0](https://www.github.com/keq-request/keq-cli/commit/e8d9ef0861a357a85e95a98f49addd3f9200ab64))
556
+
557
+ ### [3.0.5](https://www.github.com/keq-request/keq-cli/compare/v3.0.4...v3.0.5) (2022-06-15)
558
+
559
+ ### Bug Fixes
560
+
561
+ - error generated by recursive interface ([c23318f](https://www.github.com/keq-request/keq-cli/commit/c23318fe059765f8402a174ebe531a7aaec1568a))
562
+ - missing return type of operation ([43b0e81](https://www.github.com/keq-request/keq-cli/commit/43b0e81f40088d67db0e25cf1778545e9df9a118))
563
+ - query args compatible in operation ([084884f](https://www.github.com/keq-request/keq-cli/commit/084884f7035cde7869caa93d99d5ed592d583e20))
564
+ - return type declaration error when multiple return values ([516284a](https://www.github.com/keq-request/keq-cli/commit/516284a388f27b3a3fdd9cd4a3a9a77747e4373e))
565
+
566
+ ### Performance Improvements
567
+
568
+ - reduce file write times ([1f28a75](https://www.github.com/keq-request/keq-cli/commit/1f28a75d133e995bd271ee8e7cb5303db47a1ace))
569
+
570
+ ### [3.0.4](https://www.github.com/keq-request/keq-cli/compare/v3.0.3...v3.0.4) (2022-06-14)
571
+
572
+ ### Bug Fixes
573
+
574
+ - cannot find hbs files ([3c1210b](https://www.github.com/keq-request/keq-cli/commit/3c1210bdd87d9d8da3298d9537394cd7a524835c))
575
+
576
+ ### [3.0.3](https://www.github.com/keq-request/keq-cli/compare/v3.0.2...v3.0.3) (2022-06-14)
577
+
578
+ ### Bug Fixes
579
+
580
+ - missing dependencies: @apidevtools/swagger-parser ([a195cf9](https://www.github.com/keq-request/keq-cli/commit/a195cf9a46e8bc99424ef7b8f5c4893d3d99222c))
581
+
582
+ ### [3.0.2](https://www.github.com/keq-request/keq-cli/compare/v3.0.1...v3.0.2) (2022-06-14)
583
+
584
+ ### Bug Fixes
585
+
586
+ - remove husky from postinstall ([6f730f4](https://www.github.com/keq-request/keq-cli/commit/6f730f41edb54bfb22a8e3b48c9d54c187236331))
587
+
588
+ ### [3.0.1](https://www.github.com/keq-request/keq-cli/compare/v3.0.0...v3.0.1) (2022-06-14)
589
+
590
+ ### Bug Fixes
591
+
592
+ - cannot find command ([d597bdb](https://www.github.com/keq-request/keq-cli/commit/d597bdbbd74a7be89a23b70150a5204df4dcff1b))
593
+
594
+ ## [3.0.0](https://www.github.com/keq-request/keq-cli/compare/v2.5.0...v3.0.0) (2022-06-14)
595
+
596
+ ### ⚠ BREAKING CHANGES
597
+
598
+ - never support env setting
599
+
600
+ ### Code Refactoring
601
+
602
+ - replace mustache with handlebars ([a1b381b](https://www.github.com/keq-request/keq-cli/commit/a1b381b454546197cab9e3fad9333ce7b30769d7))
603
+
604
+ ## [2.5.0](https://www.github.com/keq-request/keq-cli/compare/v2.4.0...v2.5.0) (2022-05-10)
605
+
606
+ ### Features
607
+
608
+ - support nullable ([62cf7f6](https://www.github.com/keq-request/keq-cli/commit/62cf7f667638bcb149c57b804c63cdf5a7469602))
609
+
610
+ ## [2.4.0](https://www.github.com/keq-request/keq-cli/compare/v2.3.3...v2.4.0) (2022-04-23)
611
+
612
+ ### Features
613
+
614
+ - remove unnecessary env definition ([384fee7](https://www.github.com/keq-request/keq-cli/commit/384fee7fc4a900ac79e5b337b01e3f0d8998d4be))
615
+
616
+ ### [2.3.3](https://www.github.com/keq-request/keq-cli/compare/v2.3.2...v2.3.3) (2022-04-15)
617
+
618
+ ### Bug Fixes
619
+
620
+ - additional properties generate wrong ts interface ([a6bf3a8](https://www.github.com/keq-request/keq-cli/commit/a6bf3a88e55b45a6bab8d5e5205cea48d6fc3e2a))
621
+
622
+ ### [2.3.2](https://www.github.com/keq-request/keq-cli/compare/v2.3.1...v2.3.2) (2022-04-13)
623
+
624
+ ### Bug Fixes
625
+
626
+ - the type error in compile result ([b044ec5](https://www.github.com/keq-request/keq-cli/commit/b044ec506f4aac48dcdb51a8d143d27821d9babe))
627
+
628
+ ### [2.3.1](https://www.github.com/keq-request/keq-cli/compare/v2.3.0...v2.3.1) (2022-04-13)
629
+
630
+ ### Bug Fixes
631
+
632
+ - envName option not work ([727c030](https://www.github.com/keq-request/keq-cli/commit/727c0303f318adf50106fab563f867f2e207ce15))
633
+
634
+ ## [2.3.0](https://www.github.com/keq-request/keq-cli/compare/v2.2.0...v2.3.0) (2022-04-13)
635
+
636
+ ### Features
637
+
638
+ - enable change the request instance and set environment vairable ([3c2cf96](https://www.github.com/keq-request/keq-cli/commit/3c2cf960231865b15dcc5947061366a06beb5ffc))
639
+
640
+ ## [2.2.0](https://www.github.com/keq-request/keq-cli/compare/v2.1.2...v2.2.0) (2022-04-11)
641
+
642
+ ### Features
643
+
644
+ - auto transform url template ([106e585](https://www.github.com/keq-request/keq-cli/commit/106e585f7c9e480a541bd2350b51836a6a31b3f9))
645
+
646
+ ### [2.1.2](https://www.github.com/keq-request/keq-cli/compare/v2.1.1...v2.1.2) (2022-03-21)
647
+
648
+ ### Bug Fixes
649
+
650
+ - the return type of operation is a Keq<T> rather than Promise ([30f4db4](https://www.github.com/keq-request/keq-cli/commit/30f4db4e5e12636f8ea2b489314493ff433ef97f))
651
+
652
+ ### [2.1.1](https://www.github.com/keq-request/keq-cli/compare/v2.1.0...v2.1.1) (2022-03-01)
653
+
654
+ ### Bug Fixes
655
+
656
+ - not render array items, if reponse is an array ([6912b44](https://www.github.com/keq-request/keq-cli/commit/6912b4424b40585202c6a2778ed0a6a22223c214))
657
+
658
+ ## [2.1.0](https://www.github.com/keq-request/keq-cli/compare/v2.0.2...v2.1.0) (2022-02-25)
659
+
660
+ ### Features
661
+
662
+ - it is no longer necessary to fill in the parameter, if no parameters ([05c0f44](https://www.github.com/keq-request/keq-cli/commit/05c0f44553aadf10e8d09f7a235689826891dbf7))
663
+
664
+ ### Bug Fixes
665
+
666
+ - generate error when response body is an array ([a4cdfc0](https://www.github.com/keq-request/keq-cli/commit/a4cdfc07c14121bfe443ad7eb0d247961d27fcfe))
667
+
668
+ ### [2.0.2](https://www.github.com/keq-request/keq-cli/compare/v2.0.1...v2.0.2) (2022-01-17)
669
+
670
+ ### Bug Fixes
671
+
672
+ - component schmea not find in schema file ([1b4711c](https://www.github.com/keq-request/keq-cli/commit/1b4711cb7201199da87ffdf39581d86878767eb8))
673
+
674
+ ### [2.0.1](https://www.github.com/keq-request/keq-cli/compare/v2.0.0...v2.0.1) (2022-01-17)
675
+
676
+ ### Bug Fixes
677
+
678
+ - component schmea not find in operation ([6084457](https://www.github.com/keq-request/keq-cli/commit/6084457e921be01ad8fe3bdc14e3d231a1f21fdc))
679
+
680
+ ## [2.0.0](https://www.github.com/keq-request/keq-cli/compare/v1.2.2...v2.0.0) (2022-01-17)
681
+
682
+ ### ⚠ BREAKING CHANGES
683
+
684
+ - Never export operation/schema as default; No longer support keq-proxy<1.2, keq<1.7.
685
+
686
+ ### Features
687
+
688
+ - change the import method and auto export all module operations ([1cc5038](https://www.github.com/keq-request/keq-cli/commit/1cc50380f2fb80c7948442134db7d399585ee761))
689
+
690
+ ### Bug Fixes
691
+
692
+ - import the self file ([4110d1d](https://www.github.com/keq-request/keq-cli/commit/4110d1d76bf34c5e9fe191561efb792dafa50c37))
693
+ - incorrect file path import ([53fadc7](https://www.github.com/keq-request/keq-cli/commit/53fadc787f572da3cd9e3c2a131c6908f1df5801))
694
+ - multiline comments do not handle line break ([c6e407a](https://www.github.com/keq-request/keq-cli/commit/c6e407a214cd909970ed64cb424d7263b92d971c))
695
+
696
+ ### [1.2.2](https://www.github.com/keq-request/keq-cli/compare/v1.2.1...v1.2.2) (2021-05-14)
697
+
698
+ ### Bug Fixes
699
+
700
+ - unused env variable in module template ([7d3b567](https://www.github.com/keq-request/keq-cli/commit/7d3b56703adf7e7d2c3fb1e6edce926698d4c910))
701
+
702
+ ### [1.2.1](https://www.github.com/keq-request/keq-cli/compare/v1.2.0...v1.2.1) (2021-05-13)
703
+
704
+ ### Bug Fixes
705
+
706
+ - url is optional field but throw error when it is not set ([14140a2](https://www.github.com/keq-request/keq-cli/commit/14140a2b9d754d36510c6cef1ffd1c7de0f2ca2b))
707
+
708
+ ## [1.2.0](https://www.github.com/keq-request/keq-cli/compare/v1.1.3...v1.2.0) (2021-05-13)
709
+
710
+ ### Features
711
+
712
+ - add strict mode ([1f0391d](https://www.github.com/keq-request/keq-cli/commit/1f0391dc2ec4f1890339bb951d19cebe9400b9b3))
713
+ - beautify stderr ([7782e38](https://www.github.com/keq-request/keq-cli/commit/7782e381b91f00465f5952d627e18ff3e44bf042))
714
+
715
+ ### Bug Fixes
716
+
717
+ - `$ref` is not imported ([6a202b2](https://www.github.com/keq-request/keq-cli/commit/6a202b2f41dbf491acee9195dc95e7ec3e1048c8))
718
+ - not throw error when config invalid ([83abe3b](https://www.github.com/keq-request/keq-cli/commit/83abe3b9d045ff27a532cc48a6335afcaf6b165e))
719
+ - unknown keyword "require" in ajv@8 ([aba034c](https://www.github.com/keq-request/keq-cli/commit/aba034c8a7d2daa9abd7214e41e3baaecef32d91))
720
+
721
+ ### [1.1.3](https://www.github.com/keq-request/keq-cli/compare/v1.1.2...v1.1.3) (2021-05-12)
722
+
723
+ ### Bug Fixes
724
+
725
+ - unable build ([0f56acf](https://www.github.com/keq-request/keq-cli/commit/0f56acff7f2bec334395d8a81d89bd210d9507ef))
726
+
727
+ ### [1.1.2](https://www.github.com/keq-request/keq-cli/compare/v1.1.1...v1.1.2) (2021-05-12)
728
+
729
+ ### Bug Fixes
730
+
731
+ - cannot find ajv ([0e4fd9c](https://www.github.com/keq-request/keq-cli/commit/0e4fd9cdae9f74d996effb423aac33c370458f37))
732
+
733
+ ### [1.1.1](https://www.github.com/keq-request/keq-cli/compare/v1.1.0...v1.1.1) (2021-05-12)
734
+
735
+ ### Bug Fixes
736
+
737
+ - keq should be dependencies ([b862714](https://www.github.com/keq-request/keq-cli/commit/b8627141afa95703614392cb53afde715942fbaa))
738
+ - valid-url is undefined ([bdacad6](https://www.github.com/keq-request/keq-cli/commit/bdacad6f952701e08217a1d2a0ea5631b5f865a4))
739
+
740
+ ## [1.1.0](https://www.github.com/keq-request/keq-cli/compare/v1.0.3...v1.1.0) (2021-05-11)
741
+
742
+ ### Features
743
+
744
+ - can get swagger file from url ([3f64462](https://www.github.com/keq-request/keq-cli/commit/3f64462c0dc2ed2c845c812d6a32e32135e1836b)), closes [#4](https://www.github.com/keq-request/keq-cli/issues/4)
745
+
746
+ ### [1.0.3](https://www.github.com/keq-request/keq-cli/compare/v1.0.2...v1.0.3) (2021-05-11)
747
+
748
+ ### Bug Fixes
749
+
750
+ - cannot find ramda ([4270dca](https://www.github.com/keq-request/keq-cli/commit/4270dca65d5a5ce2c8cc08368692199dc9f13227))
751
+
752
+ ### [1.0.2](https://www.github.com/keq-request/keq-cli/compare/v1.0.1...v1.0.2) (2021-05-11)
753
+
754
+ ### Bug Fixes
755
+
756
+ - cannot find fs-extra ([d68d049](https://www.github.com/keq-request/keq-cli/commit/d68d049a34e09c622bed6da72283f373e62ab41b))
757
+
758
+ ### [1.0.1](https://www.github.com/keq-request/keq-cli/compare/v1.0.0...v1.0.1) (2021-05-11)
759
+
760
+ ### Bug Fixes
761
+
762
+ - the file path of bin cannot run ([c6c9cf3](https://www.github.com/keq-request/keq-cli/commit/c6c9cf301e6a5bf1b39e02399da39749454ebfa0))
763
+
764
+ ## 1.0.0 (2021-05-06)