@common-stack/generate-plugin 6.0.6-alpha.7 → 6.0.6-alpha.71

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 (232) hide show
  1. package/CHANGELOG.md +234 -0
  2. package/README.md +157 -211
  3. package/cde-config.json +43 -42
  4. package/generators.json +5 -0
  5. package/lib/{constants/index.cjs → common/constants.cjs} +1 -1
  6. package/lib/common/constants.cjs.map +1 -0
  7. package/lib/{constants/index.mjs → common/constants.mjs} +1 -1
  8. package/lib/common/constants.mjs.map +1 -0
  9. package/lib/generators/add-backend/files/package.json +5 -4
  10. package/lib/generators/add-backend/files/src/api/root-schema.graphqls +1 -7
  11. package/lib/generators/add-backend/generator.cjs +12 -3
  12. package/lib/generators/add-backend/generator.cjs.map +1 -1
  13. package/lib/generators/add-backend/generator.mjs +12 -3
  14. package/lib/generators/add-backend/generator.mjs.map +1 -1
  15. package/lib/generators/add-backend/schema.json +6 -1
  16. package/lib/generators/add-frontend/frameworks/antui/root.tsx.template +2 -2
  17. package/lib/generators/add-frontend/frameworks/chakraui/root.tsx.template +4 -3
  18. package/lib/generators/add-frontend/frameworks/tailwindui/root.tsx.template +2 -2
  19. package/lib/generators/add-frontend/generator.cjs +17 -13
  20. package/lib/generators/add-frontend/generator.cjs.map +1 -1
  21. package/lib/generators/add-frontend/generator.mjs +12 -8
  22. package/lib/generators/add-frontend/generator.mjs.map +1 -1
  23. package/lib/generators/add-frontend/schema.json +8 -3
  24. package/lib/generators/add-frontend/templates/config.json +2 -47
  25. package/lib/generators/add-frontend/templates/package.json +5 -8
  26. package/lib/generators/add-frontend/templates/tools/checkQueryUsage.mjs +192 -0
  27. package/lib/generators/add-frontend/templates/tools/mergeConfig.js +3 -0
  28. package/lib/generators/add-frontend/templates/vite.config.ts.template +53 -32
  29. package/lib/generators/add-fullstack/files/Jenkinsfile +7 -7
  30. package/lib/generators/add-fullstack/files/package.json +19 -14
  31. package/lib/generators/add-fullstack/files/tools/html-plugin-template.ejs +28 -0
  32. package/lib/generators/add-fullstack/files/tools/update-dependencies.mjs +95 -63
  33. package/lib/generators/add-fullstack/files/tools/update-dependency-link.mjs +12 -10
  34. package/lib/generators/add-fullstack/files/tools/{update-dependency-version.js → update-dependency-version.mjs} +57 -26
  35. package/lib/generators/add-fullstack/generator.cjs +39 -30
  36. package/lib/generators/add-fullstack/generator.cjs.map +1 -1
  37. package/lib/generators/add-fullstack/generator.mjs +39 -30
  38. package/lib/generators/add-fullstack/generator.mjs.map +1 -1
  39. package/lib/generators/add-fullstack/updates/htmlPluginUpdate.cjs +8 -0
  40. package/lib/generators/add-fullstack/updates/htmlPluginUpdate.cjs.map +1 -0
  41. package/lib/generators/add-fullstack/updates/htmlPluginUpdate.d.ts +2 -0
  42. package/lib/generators/add-fullstack/updates/htmlPluginUpdate.mjs +8 -0
  43. package/lib/generators/add-fullstack/updates/htmlPluginUpdate.mjs.map +1 -0
  44. package/lib/generators/add-fullstack/updates/ignoreUpdate.cjs +19 -0
  45. package/lib/generators/add-fullstack/updates/ignoreUpdate.cjs.map +1 -0
  46. package/lib/generators/add-fullstack/updates/ignoreUpdate.d.ts +3 -0
  47. package/lib/generators/add-fullstack/updates/ignoreUpdate.mjs +19 -0
  48. package/lib/generators/add-fullstack/updates/ignoreUpdate.mjs.map +1 -0
  49. package/lib/generators/add-fullstack/updates/index.d.ts +4 -0
  50. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.cjs +5 -4
  51. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.cjs.map +1 -1
  52. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.d.ts +2 -1
  53. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.mjs +5 -4
  54. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.mjs.map +1 -1
  55. package/lib/generators/add-fullstack/updates/lernaJsonUpdate.cjs +45 -0
  56. package/lib/generators/add-fullstack/updates/lernaJsonUpdate.cjs.map +1 -0
  57. package/lib/generators/add-fullstack/updates/lernaJsonUpdate.d.ts +3 -0
  58. package/lib/generators/add-fullstack/updates/lernaJsonUpdate.mjs +45 -0
  59. package/lib/generators/add-fullstack/updates/lernaJsonUpdate.mjs.map +1 -0
  60. package/lib/generators/add-fullstack/updates/licenseUpdate.cjs +19 -0
  61. package/lib/generators/add-fullstack/updates/licenseUpdate.cjs.map +1 -0
  62. package/lib/generators/add-fullstack/updates/licenseUpdate.d.ts +2 -0
  63. package/lib/generators/add-fullstack/updates/licenseUpdate.mjs +19 -0
  64. package/lib/generators/add-fullstack/updates/licenseUpdate.mjs.map +1 -0
  65. package/lib/generators/add-fullstack/updates/packageJsonUpdate.cjs +38 -4
  66. package/lib/generators/add-fullstack/updates/packageJsonUpdate.cjs.map +1 -1
  67. package/lib/generators/add-fullstack/updates/packageJsonUpdate.d.ts +2 -1
  68. package/lib/generators/add-fullstack/updates/packageJsonUpdate.mjs +38 -4
  69. package/lib/generators/add-fullstack/updates/packageJsonUpdate.mjs.map +1 -1
  70. package/lib/generators/add-moleculer/files/charts/chart/Chart.yaml +1 -1
  71. package/lib/generators/add-moleculer/files/package.json +5 -5
  72. package/lib/generators/add-moleculer/generator.cjs +7 -4
  73. package/lib/generators/add-moleculer/generator.cjs.map +1 -1
  74. package/lib/generators/add-moleculer/generator.mjs +7 -4
  75. package/lib/generators/add-moleculer/generator.mjs.map +1 -1
  76. package/lib/generators/add-moleculer/schema.json +9 -4
  77. package/lib/generators/add-package/generator.cjs +50 -0
  78. package/lib/generators/add-package/generator.cjs.map +1 -0
  79. package/lib/generators/add-package/generator.d.ts +5 -0
  80. package/lib/generators/add-package/generator.mjs +50 -0
  81. package/lib/generators/add-package/generator.mjs.map +1 -0
  82. package/lib/generators/add-package/schema.json +29 -0
  83. package/lib/index.cjs +1 -1
  84. package/lib/index.d.ts +1 -4
  85. package/lib/index.mjs +1 -1
  86. package/lib/utils/filesConfig.cjs +76 -0
  87. package/lib/utils/filesConfig.cjs.map +1 -0
  88. package/lib/utils/filesConfig.d.ts +2 -0
  89. package/lib/utils/filesConfig.mjs +76 -0
  90. package/lib/utils/filesConfig.mjs.map +1 -0
  91. package/lib/utils/index.cjs +28 -2
  92. package/lib/utils/index.cjs.map +1 -1
  93. package/lib/utils/index.d.ts +3 -0
  94. package/lib/utils/index.mjs +28 -2
  95. package/lib/utils/index.mjs.map +1 -1
  96. package/lib/utils/syncConfig.cjs +116 -0
  97. package/lib/utils/syncConfig.cjs.map +1 -0
  98. package/lib/utils/syncConfig.d.ts +9 -0
  99. package/lib/utils/syncConfig.mjs +116 -0
  100. package/lib/utils/syncConfig.mjs.map +1 -0
  101. package/package.json +3 -4
  102. package/rollup.config.mjs +2 -8
  103. package/src/generators/add-backend/generator.ts +14 -3
  104. package/src/generators/add-backend/schema.d.ts +1 -0
  105. package/src/generators/add-backend/schema.json +6 -1
  106. package/src/generators/add-frontend/frameworks/antui/root.tsx.template +2 -2
  107. package/src/generators/add-frontend/frameworks/chakraui/root.tsx.template +4 -3
  108. package/src/generators/add-frontend/frameworks/tailwindui/root.tsx.template +2 -2
  109. package/src/generators/add-frontend/generator.ts +12 -8
  110. package/src/generators/add-frontend/schema.d.ts +1 -0
  111. package/src/generators/add-frontend/schema.json +8 -3
  112. package/src/generators/add-fullstack/files/Jenkinsfile +7 -7
  113. package/src/generators/add-fullstack/files/LICENSE-IST +39 -0
  114. package/src/generators/add-fullstack/files/package.json +19 -14
  115. package/src/generators/add-fullstack/files/tools/html-plugin-template.ejs +28 -0
  116. package/src/generators/add-fullstack/files/tools/update-dependencies.mjs +95 -63
  117. package/src/generators/add-fullstack/files/tools/update-dependency-link.mjs +12 -10
  118. package/src/generators/add-fullstack/files/tools/{update-dependency-version.js → update-dependency-version.mjs} +57 -26
  119. package/src/generators/add-fullstack/generator.ts +64 -38
  120. package/src/generators/add-fullstack/updates/htmlPluginUpdate.ts +11 -0
  121. package/src/generators/add-fullstack/updates/ignoreUpdate.ts +23 -0
  122. package/src/generators/add-fullstack/updates/index.ts +4 -0
  123. package/src/generators/add-fullstack/updates/jenkinsfileUpdate.ts +6 -4
  124. package/src/generators/add-fullstack/updates/lernaJsonUpdate.ts +53 -0
  125. package/src/generators/add-fullstack/updates/licenseUpdate.ts +23 -0
  126. package/src/generators/add-fullstack/updates/packageJsonUpdate.ts +45 -4
  127. package/src/generators/add-moleculer/files/charts/chart/Chart.yaml +1 -1
  128. package/src/generators/add-moleculer/files/package.json +5 -5
  129. package/src/generators/add-moleculer/generator.spec.ts +1 -1
  130. package/src/generators/add-moleculer/generator.ts +8 -3
  131. package/src/generators/add-moleculer/schema.d.ts +2 -1
  132. package/src/generators/add-moleculer/schema.json +9 -4
  133. package/src/generators/{add-core-package → add-package}/generator.spec.ts +5 -5
  134. package/src/generators/add-package/generator.ts +62 -0
  135. package/src/generators/add-package/schema.d.ts +6 -0
  136. package/src/generators/add-package/schema.json +29 -0
  137. package/src/index.ts +1 -4
  138. package/src/utils/filesConfig.ts +84 -0
  139. package/src/utils/index.ts +31 -0
  140. package/src/utils/syncConfig.ts +128 -0
  141. package/lib/constants/index.cjs.map +0 -1
  142. package/lib/constants/index.mjs.map +0 -1
  143. package/lib/generators/add-browser-package/files/jest.config.js +0 -8
  144. package/lib/generators/add-browser-package/files/package.json +0 -49
  145. package/lib/generators/add-browser-package/files/rollup.config.mjs +0 -29
  146. package/lib/generators/add-browser-package/files/src/index.ts.template +0 -4
  147. package/lib/generators/add-browser-package/files/src/interfaces/index.ts.template +0 -1
  148. package/lib/generators/add-browser-package/files/src/interfaces/interfaces.ts.template +0 -1
  149. package/lib/generators/add-browser-package/files/src/module.tsx.template +0 -7
  150. package/lib/generators/add-browser-package/files/tsconfig.json +0 -28
  151. package/lib/generators/add-browser-package/files/webpack.config.js +0 -71
  152. package/lib/generators/add-browser-package/generator.cjs +0 -17
  153. package/lib/generators/add-browser-package/generator.cjs.map +0 -1
  154. package/lib/generators/add-browser-package/generator.d.ts +0 -5
  155. package/lib/generators/add-browser-package/generator.mjs +0 -17
  156. package/lib/generators/add-browser-package/generator.mjs.map +0 -1
  157. package/lib/generators/add-browser-package/schema.json +0 -19
  158. package/lib/generators/add-client-package/files/CHANGELOG.md +0 -807
  159. package/lib/generators/add-client-package/files/jest.config.js +0 -13
  160. package/lib/generators/add-client-package/files/package.json +0 -30
  161. package/lib/generators/add-client-package/files/rollup.config.mjs +0 -29
  162. package/lib/generators/add-client-package/files/src/components/index.tsx.template +0 -1
  163. package/lib/generators/add-client-package/files/src/index.ts.template +0 -1
  164. package/lib/generators/add-client-package/files/tsconfig.json +0 -27
  165. package/lib/generators/add-client-package/files/webpack.config.js +0 -72
  166. package/lib/generators/add-client-package/generator.cjs +0 -17
  167. package/lib/generators/add-client-package/generator.cjs.map +0 -1
  168. package/lib/generators/add-client-package/generator.d.ts +0 -5
  169. package/lib/generators/add-client-package/generator.mjs +0 -17
  170. package/lib/generators/add-client-package/generator.mjs.map +0 -1
  171. package/lib/generators/add-client-package/generator.spec.d.ts +0 -1
  172. package/lib/generators/add-client-package/schema.json +0 -19
  173. package/lib/generators/add-core-package/files/jest.config.js +0 -3
  174. package/lib/generators/add-core-package/files/package.json +0 -30
  175. package/lib/generators/add-core-package/files/rollup.config.mjs +0 -65
  176. package/lib/generators/add-core-package/files/src/constants/index.ts.template +0 -1
  177. package/lib/generators/add-core-package/files/src/constants/types.ts.template +0 -3
  178. package/lib/generators/add-core-package/files/src/index.ts.template +0 -2
  179. package/lib/generators/add-core-package/files/src/types/index.ts.template +0 -1
  180. package/lib/generators/add-core-package/files/src/types/types.ts.template +0 -17
  181. package/lib/generators/add-core-package/files/tsconfig.json +0 -22
  182. package/lib/generators/add-core-package/files/webpack.config.js +0 -53
  183. package/lib/generators/add-core-package/generator.cjs +0 -17
  184. package/lib/generators/add-core-package/generator.cjs.map +0 -1
  185. package/lib/generators/add-core-package/generator.d.ts +0 -5
  186. package/lib/generators/add-core-package/generator.mjs +0 -17
  187. package/lib/generators/add-core-package/generator.mjs.map +0 -1
  188. package/lib/generators/add-core-package/generator.spec.d.ts +0 -1
  189. package/lib/generators/add-core-package/schema.json +0 -19
  190. package/lib/generators/add-fullstack/files/CHANGELOG.md +0 -20
  191. package/lib/generators/add-server-package/files/CHANGELOG.md +0 -2599
  192. package/lib/generators/add-server-package/files/LICENSE +0 -674
  193. package/lib/generators/add-server-package/files/jest.config.js +0 -32
  194. package/lib/generators/add-server-package/files/package.json +0 -78
  195. package/lib/generators/add-server-package/files/rollup.config.mjs +0 -30
  196. package/lib/generators/add-server-package/files/src/constants/constants.ts.template +0 -62
  197. package/lib/generators/add-server-package/files/src/constants/index.ts.template +0 -1
  198. package/lib/generators/add-server-package/files/src/constants/types.ts.template +0 -21
  199. package/lib/generators/add-server-package/files/src/index.ts.template +0 -6
  200. package/lib/generators/add-server-package/files/src/module.ts.template +0 -6
  201. package/lib/generators/add-server-package/files/tsconfig.json +0 -27
  202. package/lib/generators/add-server-package/generator.cjs +0 -17
  203. package/lib/generators/add-server-package/generator.cjs.map +0 -1
  204. package/lib/generators/add-server-package/generator.d.ts +0 -5
  205. package/lib/generators/add-server-package/generator.mjs +0 -17
  206. package/lib/generators/add-server-package/generator.mjs.map +0 -1
  207. package/lib/generators/add-server-package/generator.spec.d.ts +0 -1
  208. package/lib/generators/add-server-package/schema.json +0 -19
  209. package/src/generators/add-browser-package/generator.spec.ts +0 -20
  210. package/src/generators/add-browser-package/generator.ts +0 -24
  211. package/src/generators/add-browser-package/schema.d.ts +0 -4
  212. package/src/generators/add-browser-package/schema.json +0 -19
  213. package/src/generators/add-client-package/generator.spec.ts +0 -20
  214. package/src/generators/add-client-package/generator.ts +0 -24
  215. package/src/generators/add-client-package/schema.d.ts +0 -4
  216. package/src/generators/add-client-package/schema.json +0 -19
  217. package/src/generators/add-core-package/generator.ts +0 -24
  218. package/src/generators/add-core-package/schema.d.ts +0 -4
  219. package/src/generators/add-core-package/schema.json +0 -19
  220. package/src/generators/add-fullstack/files/CHANGELOG.md +0 -28
  221. package/src/generators/add-server-package/generator.spec.ts +0 -20
  222. package/src/generators/add-server-package/generator.ts +0 -24
  223. package/src/generators/add-server-package/schema.d.ts +0 -4
  224. package/src/generators/add-server-package/schema.json +0 -19
  225. /package/lib/{constants/index.d.ts → common/constants.d.ts} +0 -0
  226. /package/lib/generators/{add-browser-package/files/LICENSE → add-fullstack/files/LICENSE-GNU} +0 -0
  227. /package/lib/generators/{add-core-package/files/LICENSE → add-fullstack/files/LICENSE-IST} +0 -0
  228. /package/lib/generators/add-fullstack/files/{LICENSE → LICENSE-MIT} +0 -0
  229. /package/lib/generators/{add-browser-package → add-package}/generator.spec.d.ts +0 -0
  230. /package/src/{constants/index.ts → common/constants.ts} +0 -0
  231. /package/{lib/generators/add-client-package/files/LICENSE → src/generators/add-fullstack/files/LICENSE-GNU} +0 -0
  232. /package/src/generators/add-fullstack/files/{LICENSE → LICENSE-MIT} +0 -0
@@ -1,2599 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [3.1.1-alpha.5](https://github.com/CDEBase/adminIde-stack/compare/v3.1.1-alpha.4...v3.1.1-alpha.5) (2023-01-23)
7
-
8
- ### Bug Fixes
9
-
10
- - **billing:** typescript issues ([3de36ce](https://github.com/CDEBase/adminIde-stack/commit/3de36ce95b9b52935c09e69ec6d0e8edfddeb85d))
11
-
12
- ## [3.1.1-alpha.4](https://github.com/CDEBase/adminIde-stack/compare/v3.1.1-alpha.3...v3.1.1-alpha.4) (2023-01-22)
13
-
14
- **Note:** Version bump only for package @adminide-stack/billing-api-server
15
-
16
- ## [2.0.1-alpha.13](https://github.com/CDEBase/adminIde-stack/compare/v2.0.1-alpha.12...v2.0.1-alpha.13) (2023-01-11)
17
-
18
- **Note:** Version bump only for package @adminide-stack/billing-api-server
19
-
20
- ## [2.0.1-alpha.7](https://github.com/cdmbase/adminide-stack/compare/v2.0.1-alpha.6...v2.0.1-alpha.7) (2022-12-29)
21
-
22
- ### Bug Fixes
23
-
24
- - paypal payment issue ([b7eb858](https://github.com/cdmbase/adminide-stack/commit/b7eb85860be9d7782af00e43db93bd078bbb04ed))
25
-
26
- ## [2.0.1-alpha.3](https://github.com/cdmbase/adminide-stack/compare/v2.0.1-alpha.2...v2.0.1-alpha.3) (2022-12-27)
27
-
28
- **Note:** Version bump only for package @adminide-stack/billing-api-server
29
-
30
- ## [2.0.1-alpha.2](https://github.com/cdmbase/adminide-stack/compare/v2.0.1-alpha.0...v2.0.1-alpha.2) (2022-12-27)
31
-
32
- **Note:** Version bump only for package @adminide-stack/billing-api-server
33
-
34
- ## [2.0.1-alpha.0](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.201...v2.0.1-alpha.0) (2022-12-25)
35
-
36
- **Note:** Version bump only for package @adminide-stack/billing-api-server
37
-
38
- ## [1.1.3-alpha.201](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.200...v1.1.3-alpha.201) (2022-12-22)
39
-
40
- **Note:** Version bump only for package @adminide-stack/billing-api-server
41
-
42
- ## [1.1.3-alpha.193](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.192...v1.1.3-alpha.193) (2022-12-17)
43
-
44
- **Note:** Version bump only for package @adminide-stack/billing-api-server
45
-
46
- ## [1.1.3-alpha.190](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.189...v1.1.3-alpha.190) (2022-12-13)
47
-
48
- **Note:** Version bump only for package @adminide-stack/billing-api-server
49
-
50
- ## [1.1.3-alpha.185](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.184...v1.1.3-alpha.185) (2022-12-10)
51
-
52
- **Note:** Version bump only for package @adminide-stack/billing-api-server
53
-
54
- ## [1.1.3-alpha.181](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.180...v1.1.3-alpha.181) (2022-12-09)
55
-
56
- **Note:** Version bump only for package @adminide-stack/billing-api-server
57
-
58
- ## [1.1.3-alpha.179](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.178...v1.1.3-alpha.179) (2022-12-09)
59
-
60
- **Note:** Version bump only for package @adminide-stack/billing-api-server
61
-
62
- ## [1.1.3-alpha.178](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.177...v1.1.3-alpha.178) (2022-12-09)
63
-
64
- **Note:** Version bump only for package @adminide-stack/billing-api-server
65
-
66
- ## [1.1.3-alpha.177](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.176...v1.1.3-alpha.177) (2022-12-07)
67
-
68
- ### Bug Fixes
69
-
70
- - **billing:** migrations for the billing plan seeds ([c9d1db3](https://github.com/cdmbase/adminide-stack/commit/c9d1db3d7297f53edcf43cb00ff0ac41166926d1))
71
-
72
- ## [1.1.3-alpha.175](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.174...v1.1.3-alpha.175) (2022-12-06)
73
-
74
- **Note:** Version bump only for package @adminide-stack/billing-api-server
75
-
76
- ## [1.1.3-alpha.173](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.172...v1.1.3-alpha.173) (2022-12-01)
77
-
78
- **Note:** Version bump only for package @adminide-stack/billing-api-server
79
-
80
- ## [1.1.3-alpha.170](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.169...v1.1.3-alpha.170) (2022-12-01)
81
-
82
- **Note:** Version bump only for package @adminide-stack/billing-api-server
83
-
84
- ## [1.1.3-alpha.169](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.168...v1.1.3-alpha.169) (2022-12-01)
85
-
86
- **Note:** Version bump only for package @adminide-stack/billing-api-server
87
-
88
- ## [1.1.3-alpha.162](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.161...v1.1.3-alpha.162) (2022-11-15)
89
-
90
- **Note:** Version bump only for package @adminide-stack/billing-api-server
91
-
92
- ## [1.1.3-alpha.161](https://github.com/cdmbase/adminide-stack/compare/v0.0.16-3...v1.1.3-alpha.161) (2022-11-15)
93
-
94
- ### Bug Fixes
95
-
96
- - **backend-server:** sequence of stripe and template migrations ([2ce7bfd](https://github.com/cdmbase/adminide-stack/commit/2ce7bfdc09b72b4a85780beda6c8dd7b437dd989))
97
- - **billing-api:** fix subscriptions not getting assigned on sign up ([fe1878b](https://github.com/cdmbase/adminide-stack/commit/fe1878b85e111f58bf87c6afe65b0ab1273e7518))
98
- - **billing-api:** make description unique for all rules ([f31e717](https://github.com/cdmbase/adminide-stack/commit/f31e717f0de7ae7ae99f28d3ec087faf3a10ea70))
99
- - **billing-api:** update change plan ([6225b22](https://github.com/cdmbase/adminide-stack/commit/6225b2248899ede6c30ae41f8c84d024175ac444))
100
- - **billing-api:** update plan button state enable/disable based on dirty state ([1450e08](https://github.com/cdmbase/adminide-stack/commit/1450e0881aa5f734632fda81c2776e7846168e56))
101
- - **billing-server:** graphql resolver registeration ([41be44c](https://github.com/cdmbase/adminide-stack/commit/41be44cce5eceec85495560548c1d1fca395a050))
102
- - **billing-server:** multiple small fixes ([34d4d55](https://github.com/cdmbase/adminide-stack/commit/34d4d5575de143314d1ede0ec3afad2a44ea0e19))
103
- - **billing/invoices:** add missing invoices status ([72c3196](https://github.com/cdmbase/adminide-stack/commit/72c3196f824eaeb0129aa90249fe5ae9cdcba61f)), closes [#1104](https://github.com/cdmbase/adminide-stack/issues/1104)
104
- - **billing:** add all previous plans as deprecated plans ([858970f](https://github.com/cdmbase/adminide-stack/commit/858970f3c99762e9f4b164e70e2f234da84b5def))
105
- - **billing:** add default options in the stripe service ([c503d79](https://github.com/cdmbase/adminide-stack/commit/c503d796537cf1f50bb4190c249400c55cabed49))
106
- - **billing:** add missing refund methods ([cd86ba7](https://github.com/cdmbase/adminide-stack/commit/cd86ba748509a82f7afaf42561262cc627f6e0d0))
107
- - **billing:** addPayment directive ([c44987e](https://github.com/cdmbase/adminide-stack/commit/c44987e24efba2961097b83f77896c4e241a4c65))
108
- - **billing:** change plan subscription changes ([48ec431](https://github.com/cdmbase/adminide-stack/commit/48ec43174967cdec738f8ffa69eb102029c9d6ad)), closes [#1104](https://github.com/cdmbase/adminide-stack/issues/1104)
109
- - **billing:** fetching all invoices in case of no customer ([67cfccb](https://github.com/cdmbase/adminide-stack/commit/67cfccb7e081162bf0c1d5356db7177ccb82c8c4))
110
- - **billing:** invalid strip API verison ([016714c](https://github.com/cdmbase/adminide-stack/commit/016714c46341291e6cd75cc12c68fddba13a209a))
111
- - **billing:** metadata issue in the plans ([4a2f4f7](https://github.com/cdmbase/adminide-stack/commit/4a2f4f7615bc0c23027373f7a89371550693aa03))
112
- - **billing:** minor issues in stripe moleculer service ([e4595c8](https://github.com/cdmbase/adminide-stack/commit/e4595c848f6921eb6f60baa94c484e9f05b8cde6))
113
- - **billing:** missing customer id for free user ([4a0c32e](https://github.com/cdmbase/adminide-stack/commit/4a0c32e2b65e21ad3a594f7b93cae7a35c4c23e0))
114
- - **billing:** moleculer create bug ([b140453](https://github.com/cdmbase/adminide-stack/commit/b1404531c7e8fcdab7d4cd2fffdd519e23a135d0))
115
- - **billing:** notification template ([c17206c](https://github.com/cdmbase/adminide-stack/commit/c17206c60d2975ab346796d503556396641e8d9f))
116
- - **billing:** plans not loading completely ([005d63b](https://github.com/cdmbase/adminide-stack/commit/005d63b8f898b859342573be54324f0040ecf5a8))
117
- - **billing:** policy not being updated correctly after plan change ([7d47f54](https://github.com/cdmbase/adminide-stack/commit/7d47f54e2efc0b299235667943e5f557bc8bd4bf))
118
- - **billing:** replace &lt and &gt text with appropriate signs of <, > ([5a8e9e2](https://github.com/cdmbase/adminide-stack/commit/5a8e9e2de8d7a89288bf08bde4ffedc46b2a0fcb))
119
- - **billing:** replace email with account Id in stripe meta data ([832c02b](https://github.com/cdmbase/adminide-stack/commit/832c02b9362a26ce4d70be47db2c55e59ee1e014))
120
- - **billing:** stop deCamelizing of promotionCode ([cb66614](https://github.com/cdmbase/adminide-stack/commit/cb66614005da98f34055e050cd96ac3ad9b3b61d))
121
- - **billing:** stripe connect resolvers and services ([4719f00](https://github.com/cdmbase/adminide-stack/commit/4719f00103821649e07413d3784463f13ae1a5e4))
122
- - **billing:** update invoice resolver to return only user's invoice ([8ebae1e](https://github.com/cdmbase/adminide-stack/commit/8ebae1e53c46116d751f09294af8a6ba999cdb0f))
123
- - **billing:** update tier policy value along with others ([f67ec0f](https://github.com/cdmbase/adminide-stack/commit/f67ec0f43f01c9c4e43f554882c02be7fb71d1db))
124
- - call moleculer service for stripe migrations ([96a33bb](https://github.com/cdmbase/adminide-stack/commit/96a33bb366bb9c40cf784facf7698c2aaed3cb25)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
125
- - hide invoices with 0 amount ([2c05c52](https://github.com/cdmbase/adminide-stack/commit/2c05c52aafdd5eb98008eddc16140f7c5ac849d2))
126
- - **paypal-integration:** update custom Oauth integration ([13fe09a](https://github.com/cdmbase/adminide-stack/commit/13fe09ac274fca29cd4465596783e47b456f55d4))
127
- - **paypal:** transfer of payments from the payapl business account instead ([2d07017](https://github.com/cdmbase/adminide-stack/commit/2d07017d2d84f1df4e967041b88b76bc75630862))
128
- - resolved issue related to paypal integration not getting linked. ([d273379](https://github.com/cdmbase/adminide-stack/commit/d2733798686490d7a8a8b3b54c9729338963c8ea))
129
- - resolved paypal issues and also refactored epics ([b44a696](https://github.com/cdmbase/adminide-stack/commit/b44a696de2f1f0532bd291ff555e05027a75c867)), closes [#1467](https://github.com/cdmbase/adminide-stack/issues/1467)
130
- - restrict mongoose version ([3f00cbe](https://github.com/cdmbase/adminide-stack/commit/3f00cbe642655bf6aa7e2459e03bd61c9c7e7a80))
131
- - save user's subscription information on sign up ([9cfbca6](https://github.com/cdmbase/adminide-stack/commit/9cfbca6796a4094fb9f84cd2aef50b060095e452))
132
- - treat pro plan as archive unless all cli copies gets updated ([4158bcf](https://github.com/cdmbase/adminide-stack/commit/4158bcf2dff2ba740f89d5a673051a7d63f0c0c8))
133
- - update templates to have templateId to avoid null code error ([e5fb37c](https://github.com/cdmbase/adminide-stack/commit/e5fb37c6ea38b052981974eba600f00629f218ce)), closes [#1137](https://github.com/cdmbase/adminide-stack/issues/1137)
134
- - user creation and stripe customer & subscription workflow ([e1bb3b4](https://github.com/cdmbase/adminide-stack/commit/e1bb3b4ec0fae7e28499127f06d99ec562d1c747))
135
-
136
- ### Features
137
-
138
- - add annual plans ([dad30e8](https://github.com/cdmbase/adminide-stack/commit/dad30e8fb53c7ddd4d916ef2efb22e68713fe051))
139
- - add backend gql query to fetch payments payouts ([a223a32](https://github.com/cdmbase/adminide-stack/commit/a223a328dcca313e1ecda3a19e0ac9a608771eda))
140
- - add billing plan migrations & policies to multiple modules ([a24102c](https://github.com/cdmbase/adminide-stack/commit/a24102c5784e8f2fbd70328f4ade1034f0b353c4)), closes [#1175](https://github.com/cdmbase/adminide-stack/issues/1175)
141
- - add paypal payout support on the UI ([4179769](https://github.com/cdmbase/adminide-stack/commit/41797692c454bfa6f9b779717017a55d823cd774))
142
- - add roles and permissions in billing module ([08a7a25](https://github.com/cdmbase/adminide-stack/commit/08a7a25e565402a4567e8a1695629c1dda2fabb0))
143
- - **billing-api-server:** add subscriptions and custom fields resolvers ([5df9952](https://github.com/cdmbase/adminide-stack/commit/5df9952054d3e00a148369a5b4971ac72fa175b0))
144
- - **billing-api:** add complete workflow of plan subscriptions ([7212b5b](https://github.com/cdmbase/adminide-stack/commit/7212b5b011e90ffae37b0d5300a214aed6df99e2))
145
- - **billing-api:** add CRUD for payment methods ([8403291](https://github.com/cdmbase/adminide-stack/commit/840329171148f39c51518356af9b6e90d9a1ea0f))
146
- - **billing-api:** add scheduler to limit Stripe API calls according to rate limit ([284f460](https://github.com/cdmbase/adminide-stack/commit/284f460a21dad135eaef02677a7abc9833a0c3d9)), closes [#10101](https://github.com/cdmbase/adminide-stack/issues/10101)
147
- - **billing-api:** add support to change usage through plan cards ([b56ffc0](https://github.com/cdmbase/adminide-stack/commit/b56ffc02a09c68188b282c7c4242a9e4bc6cceed))
148
- - **billing-api:** add types and docs to stripe plans ([22fce98](https://github.com/cdmbase/adminide-stack/commit/22fce987118d356fe6e24ed0047a31df14ff4865))
149
- - **billing-api:** make dynamic payment plan cards ([e144968](https://github.com/cdmbase/adminide-stack/commit/e1449680ee17854d92cb98059a84fab043ad4da0))
150
- - **billing-server:** add local payouts collection ([a1fdb9a](https://github.com/cdmbase/adminide-stack/commit/a1fdb9a90f33c4dd84c1fc0ec36580ebe93960d4))
151
- - **billing-server:** add rollup build ([6883676](https://github.com/cdmbase/adminide-stack/commit/68836761162e997dd3c41d3c0c1ca704616cc905))
152
- - **billing/payment-integration:** add paypal payment integration ([de13feb](https://github.com/cdmbase/adminide-stack/commit/de13feb94b8556b57c7ae3301ed1fd2541e33d8c))
153
- - **billing/payment-integrations:** add external account crud and dashboard ([4b5b267](https://github.com/cdmbase/adminide-stack/commit/4b5b2675ae1a4a9a32573f4606f37b647cdc319a)), closes [#989](https://github.com/cdmbase/adminide-stack/issues/989)
154
- - **billing/payment-profile:** add transfer between two stripe connect accounts ([5c25adf](https://github.com/cdmbase/adminide-stack/commit/5c25adf86f744a89f64992d791676c93eb114e9c))
155
- - **billing/payment-transfer:** add payment method step ([8a6b87e](https://github.com/cdmbase/adminide-stack/commit/8a6b87e23f2512e6f41f3178eda9b7ef4574a0a3))
156
- - **billing/plans:** move meta data details from plan to resolver ([6274715](https://github.com/cdmbase/adminide-stack/commit/6274715048d360381baa8ac26f64317bc7f540f1))
157
- - **billing:** add billing plan and products db migrations ([8018d91](https://github.com/cdmbase/adminide-stack/commit/8018d9187de04f6cbb9a0085cca05e9f96cf5e6a)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
158
- - **billing:** add CRUD operations for bank account source ([21625cb](https://github.com/cdmbase/adminide-stack/commit/21625cbbb6efd28e9664c5b2a77388847d1a13f7))
159
- - **billing:** add default usage on subscription create ([c615dce](https://github.com/cdmbase/adminide-stack/commit/c615dcef0b65ca52413a96fdc39099b0c97f8399))
160
- - **billing:** add default userId filter ([b041962](https://github.com/cdmbase/adminide-stack/commit/b041962333225bb4279aadfe016c76063208e9a6))
161
- - **billing:** add dynamic configuration policies inside plan meta data ([75b113d](https://github.com/cdmbase/adminide-stack/commit/75b113d2fccedba59a43b79ea584a8c75ba077e3)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
162
- - **billing:** add email template for all the billing related notification emails ([3473ea5](https://github.com/cdmbase/adminide-stack/commit/3473ea5857224348c6bc44fe2308eadf550086b2)), closes [#793](https://github.com/cdmbase/adminide-stack/issues/793)
163
- - **billing:** add history table in the paypal configuration ([2a5cbe7](https://github.com/cdmbase/adminide-stack/commit/2a5cbe7d99b6009e7e8957dd717accad44da4430))
164
- - **billing:** add home screen to the billing module ([b40c67f](https://github.com/cdmbase/adminide-stack/commit/b40c67ffab3a8af78a82ebb2d0bccb5126682d90))
165
- - **billing:** add notification preferences ([ac087b2](https://github.com/cdmbase/adminide-stack/commit/ac087b2105620d5fb7e85624d511fbbae10dc339))
166
- - **billing:** add payment profiles & stripe connect integration ([5836c0b](https://github.com/cdmbase/adminide-stack/commit/5836c0b0d43611908d13c929f0de18be351f5e1e))
167
- - **billing:** add payout options for stripe ([cc6dd18](https://github.com/cdmbase/adminide-stack/commit/cc6dd18a9004365925a46e544e453967227afbc1)), closes [#989](https://github.com/cdmbase/adminide-stack/issues/989)
168
- - **billing:** add paypal integration configuration ([2577565](https://github.com/cdmbase/adminide-stack/commit/2577565d0f75153471ef5d0e5e9eb288cb583f58))
169
- - **billing:** add paypal payout integration ([bc1db34](https://github.com/cdmbase/adminide-stack/commit/bc1db3423b2c47b4babbbee9492fe36cba6fba2b))
170
- - **billing:** add pro plans in migrations ([dc5af41](https://github.com/cdmbase/adminide-stack/commit/dc5af414fa299bdf4fa3a045fc90cab1c13f214e))
171
- - **billing:** add route to plan page in policies ([0e26d36](https://github.com/cdmbase/adminide-stack/commit/0e26d360b2c4e3676184ed38e3575742d8701f93)), closes [#806](https://github.com/cdmbase/adminide-stack/issues/806)
172
- - **billing:** add separate pricing for containers storage ([0e57053](https://github.com/cdmbase/adminide-stack/commit/0e570537ffb383a5c040db94b02feb57f2f1210f))
173
- - **billing:** add status in billing schema ([6254c5a](https://github.com/cdmbase/adminide-stack/commit/6254c5ae5d8f783c9e9d692d1154ac4d8e6a8165)), closes [#875](https://github.com/cdmbase/adminide-stack/issues/875)
174
- - **billing:** add stripe data sources and implement methods ([ff1d100](https://github.com/cdmbase/adminide-stack/commit/ff1d10015ff328823529ae4587bef698e08d94fa))
175
- - **billing:** add support for invoices ([2847a54](https://github.com/cdmbase/adminide-stack/commit/2847a54219ed526b6993a963bf58b79cea20e3e4))
176
- - **billing:** add support to archive plans ([7de4665](https://github.com/cdmbase/adminide-stack/commit/7de4665ebd648fd1228736665e27f00879f4a084))
177
- - **billing:** add users in subscription plans ([c54a9ae](https://github.com/cdmbase/adminide-stack/commit/c54a9ae5c2bf59141f08b2fa1f52243329630afe)), closes [#872](https://github.com/cdmbase/adminide-stack/issues/872)
178
- - **billing:** change plan with existing user ([6c81368](https://github.com/cdmbase/adminide-stack/commit/6c81368fc768953ba852581a0465d8352004800f)), closes [#449](https://github.com/cdmbase/adminide-stack/issues/449)
179
- - **billing:** charge transfer fee from the preferences ([df904dc](https://github.com/cdmbase/adminide-stack/commit/df904dc5d838c65c17557e1dff91514ae1f78b0f))
180
- - **billing:** handle free plans with policy only ([cbb8f5f](https://github.com/cdmbase/adminide-stack/commit/cbb8f5f68072edf04c403a694aa9712d2cada609))
181
- - **billing:** introduced new payment plans ([f269aa5](https://github.com/cdmbase/adminide-stack/commit/f269aa50f50b1177b234c98da93aefb1aeaf0f2b))
182
- - **billing:** make payment screen modular ([108e614](https://github.com/cdmbase/adminide-stack/commit/108e614510cc9d381112ed13f6a852ee29b0b941))
183
- - **billing:** make stripe migrations optional ([63e89a5](https://github.com/cdmbase/adminide-stack/commit/63e89a5d8f74cfd0afea5cbe4da87594074a6273))
184
- - **billing:** move billing module from user to organization ([c2c5abb](https://github.com/cdmbase/adminide-stack/commit/c2c5abb80886df20cac11a5756c6fa02ce8fde27))
185
- - **billing:** move from metered plans to fixed price plans ([1ccb791](https://github.com/cdmbase/adminide-stack/commit/1ccb7915c4fbcd8bde78f3ac2efe7abacc35b28b))
186
- - **billing:** notify users and revert back to free plan ([979f849](https://github.com/cdmbase/adminide-stack/commit/979f8499c2868c7acb0c1ffb7b7146331e56e9be))
187
- - **billing:** send billing notification to users with specific roles ([bea03a7](https://github.com/cdmbase/adminide-stack/commit/bea03a73ee98b9bb846aace79fabe6f54a174382))
188
- - **billing:** setup notification for Plan changes ([6e255fd](https://github.com/cdmbase/adminide-stack/commit/6e255fd4a11750679c678ec82d2cbe7976cef03c))
189
- - **billing:** store per container storage in policy ([bd23ff4](https://github.com/cdmbase/adminide-stack/commit/bd23ff4436e6bda9b374860b7f872fc42cb024bc))
190
- - **billing:** store prev and current subscription ([351256f](https://github.com/cdmbase/adminide-stack/commit/351256f737966865856045fe8f198a728d11180d)), closes [#919](https://github.com/cdmbase/adminide-stack/issues/919)
191
- - **billing:** update invoices table ([72c005f](https://github.com/cdmbase/adminide-stack/commit/72c005f0bbecb16e3bb81724ec37585eb844883b))
192
- - **billing:** update some stripe methods ([1f944d5](https://github.com/cdmbase/adminide-stack/commit/1f944d58fb402f3fa1d07b3e7b0e67a6f379969a))
193
- - **configuration:** add support for readOnly and disabled options in configuration ([38711e4](https://github.com/cdmbase/adminide-stack/commit/38711e40149a6822df30d28d962a35970a093a5f)), closes [#1136](https://github.com/cdmbase/adminide-stack/issues/1136)
194
- - make separate schema for billing plans ([a2e92f4](https://github.com/cdmbase/adminide-stack/commit/a2e92f456226e53648c7ee450fe5073df29e868a))
195
- - make stripe integration compatible with our integration workflow ([a815c28](https://github.com/cdmbase/adminide-stack/commit/a815c28f53ca14b58f04d0846ffa405a8d4c3f54))
196
- - **migration:** add down migration in all existing migration ([7c040c5](https://github.com/cdmbase/adminide-stack/commit/7c040c587cf805bf0ed513620075384e1e40a35e))
197
- - read rules from single module ([52eb42c](https://github.com/cdmbase/adminide-stack/commit/52eb42c2c4a058850fbac26fbae8648ac7ad80e9))
198
- - **registry-api:** add api management backend ([a0f3921](https://github.com/cdmbase/adminide-stack/commit/a0f392153b686e1bdfaae4f3823ab17085684067)), closes [#1003](https://github.com/cdmbase/adminide-stack/issues/1003)
199
- - **roles-n-permissions:** add new role and permissions, add permissions in preferences UI ([cf5fa21](https://github.com/cdmbase/adminide-stack/commit/cf5fa212712a3343d16ddcaf17e88f35c82e7693))
200
- - **roles:** add common wrapper to handle permission and config ([a568d94](https://github.com/cdmbase/adminide-stack/commit/a568d9442ffc7ffd32f260c814e77eb91bdc980d))
201
- - **teams:** restrict team invites base on the policy value ([469ea60](https://github.com/cdmbase/adminide-stack/commit/469ea6048a8b031362f0a693a93016785c0a9a14))
202
- - update paypal payment profile implementation ([94c150f](https://github.com/cdmbase/adminide-stack/commit/94c150f0e36b89aac48e8d9fd24d58f741a7f5bb))
203
- - update typescript version to 3.8 ([017d749](https://github.com/cdmbase/adminide-stack/commit/017d749bbe9fed24c63f6957aa45a1553d561a0e))
204
- - updated common-stack version ([70a2b93](https://github.com/cdmbase/adminide-stack/commit/70a2b939a35763ddb8fabdec59757d2c17841d39))
205
-
206
- ### Reverts
207
-
208
- - Revert "Move orgId to orgName to get subscription" ([ca45b54](https://github.com/cdmbase/adminide-stack/commit/ca45b54b215f02e6ba2343824c71204199054f84))
209
- - Revert "remove shared-queries packages as it is not needed anymore" ([ee99476](https://github.com/cdmbase/adminide-stack/commit/ee99476f2d95bf70b8906149ab47362b4bf027d4))
210
- - **billing:** treat pro plan as archive unless all cli copies gets updated ([ec5b0c3](https://github.com/cdmbase/adminide-stack/commit/ec5b0c320a0695fe705145cc1495ae3b51295fe8))
211
-
212
- ## [1.1.3-alpha.154](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.153...v1.1.3-alpha.154) (2022-11-11)
213
-
214
- ### Features
215
-
216
- - updated common-stack version ([70a2b93](https://github.com/cdmbase/adminide-stack/commit/70a2b939a35763ddb8fabdec59757d2c17841d39))
217
-
218
- ## [1.1.3-alpha.146](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.145...v1.1.3-alpha.146) (2022-10-31)
219
-
220
- **Note:** Version bump only for package @adminide-stack/billing-api-server
221
-
222
- ## [1.1.3-alpha.142](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.141...v1.1.3-alpha.142) (2022-10-30)
223
-
224
- **Note:** Version bump only for package @adminide-stack/billing-api-server
225
-
226
- ## [1.1.3-alpha.129](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.128...v1.1.3-alpha.129) (2022-10-26)
227
-
228
- **Note:** Version bump only for package @adminide-stack/billing-api-server
229
-
230
- ## [1.1.3-alpha.122](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.121...v1.1.3-alpha.122) (2022-10-24)
231
-
232
- **Note:** Version bump only for package @adminide-stack/billing-api-server
233
-
234
- ## [1.1.3-alpha.115](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.114...v1.1.3-alpha.115) (2022-10-18)
235
-
236
- **Note:** Version bump only for package @adminide-stack/billing-api-server
237
-
238
- ## [1.1.3-alpha.114](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.113...v1.1.3-alpha.114) (2022-10-18)
239
-
240
- **Note:** Version bump only for package @adminide-stack/billing-api-server
241
-
242
- ## [1.1.3-alpha.113](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.112...v1.1.3-alpha.113) (2022-10-17)
243
-
244
- **Note:** Version bump only for package @adminide-stack/billing-api-server
245
-
246
- ## [1.1.3-alpha.111](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.110...v1.1.3-alpha.111) (2022-10-16)
247
-
248
- ### Features
249
-
250
- - **billing:** add default userId filter ([b041962](https://github.com/cdmbase/adminide-stack/commit/b041962333225bb4279aadfe016c76063208e9a6))
251
-
252
- ## [1.1.3-alpha.109](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.108...v1.1.3-alpha.109) (2022-10-14)
253
-
254
- ### Features
255
-
256
- - add backend gql query to fetch payments payouts ([a223a32](https://github.com/cdmbase/adminide-stack/commit/a223a328dcca313e1ecda3a19e0ac9a608771eda))
257
- - **billing-server:** add local payouts collection ([a1fdb9a](https://github.com/cdmbase/adminide-stack/commit/a1fdb9a90f33c4dd84c1fc0ec36580ebe93960d4))
258
-
259
- ## [1.1.3-alpha.108](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.107...v1.1.3-alpha.108) (2022-10-14)
260
-
261
- **Note:** Version bump only for package @adminide-stack/billing-api-server
262
-
263
- ## [1.1.3-alpha.105](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.104...v1.1.3-alpha.105) (2022-10-13)
264
-
265
- **Note:** Version bump only for package @adminide-stack/billing-api-server
266
-
267
- ## [1.1.3-alpha.100](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.99...v1.1.3-alpha.100) (2022-10-11)
268
-
269
- **Note:** Version bump only for package @adminide-stack/billing-api-server
270
-
271
- ## [1.1.3-alpha.96](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.95...v1.1.3-alpha.96) (2022-10-08)
272
-
273
- ### Bug Fixes
274
-
275
- - **billing-server:** graphql resolver registeration ([41be44c](https://github.com/cdmbase/adminide-stack/commit/41be44cce5eceec85495560548c1d1fca395a050))
276
-
277
- ## [1.1.3-alpha.95](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.94...v1.1.3-alpha.95) (2022-10-08)
278
-
279
- ### Features
280
-
281
- - **billing:** add history table in the paypal configuration ([2a5cbe7](https://github.com/cdmbase/adminide-stack/commit/2a5cbe7d99b6009e7e8957dd717accad44da4430))
282
-
283
- ## [1.1.3-alpha.86](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.85...v1.1.3-alpha.86) (2022-10-04)
284
-
285
- **Note:** Version bump only for package @adminide-stack/billing-api-server
286
-
287
- ## [1.1.3-alpha.81](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.80...v1.1.3-alpha.81) (2022-10-03)
288
-
289
- **Note:** Version bump only for package @adminide-stack/billing-api-server
290
-
291
- ## [1.1.3-alpha.79](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.78...v1.1.3-alpha.79) (2022-10-01)
292
-
293
- **Note:** Version bump only for package @adminide-stack/billing-api-server
294
-
295
- ## [1.1.3-alpha.77](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.76...v1.1.3-alpha.77) (2022-09-30)
296
-
297
- ### Bug Fixes
298
-
299
- - **paypal:** transfer of payments from the payapl business account instead ([2d07017](https://github.com/cdmbase/adminide-stack/commit/2d07017d2d84f1df4e967041b88b76bc75630862))
300
-
301
- ## [1.1.3-alpha.72](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.71...v1.1.3-alpha.72) (2022-09-27)
302
-
303
- ### Features
304
-
305
- - add paypal payout support on the UI ([4179769](https://github.com/cdmbase/adminide-stack/commit/41797692c454bfa6f9b779717017a55d823cd774))
306
-
307
- ## [1.1.3-alpha.71](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.70...v1.1.3-alpha.71) (2022-09-26)
308
-
309
- ### Bug Fixes
310
-
311
- - resolved issue related to paypal integration not getting linked. ([d273379](https://github.com/cdmbase/adminide-stack/commit/d2733798686490d7a8a8b3b54c9729338963c8ea))
312
-
313
- ## [1.1.3-alpha.70](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.69...v1.1.3-alpha.70) (2022-09-26)
314
-
315
- ### Features
316
-
317
- - update paypal payment profile implementation ([94c150f](https://github.com/cdmbase/adminide-stack/commit/94c150f0e36b89aac48e8d9fd24d58f741a7f5bb))
318
-
319
- ## [1.1.3-alpha.69](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.68...v1.1.3-alpha.69) (2022-09-25)
320
-
321
- **Note:** Version bump only for package @adminide-stack/billing-api-server
322
-
323
- ## [1.1.3-alpha.68](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.67...v1.1.3-alpha.68) (2022-09-25)
324
-
325
- **Note:** Version bump only for package @adminide-stack/billing-api-server
326
-
327
- ## [1.1.3-alpha.60](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.59...v1.1.3-alpha.60) (2022-09-20)
328
-
329
- **Note:** Version bump only for package @adminide-stack/billing-api-server
330
-
331
- ## [1.1.3-alpha.58](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.57...v1.1.3-alpha.58) (2022-09-17)
332
-
333
- **Note:** Version bump only for package @adminide-stack/billing-api-server
334
-
335
- ## [1.1.3-alpha.50](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.49...v1.1.3-alpha.50) (2022-08-22)
336
-
337
- **Note:** Version bump only for package @adminide-stack/billing-api-server
338
-
339
- ## [1.1.3-alpha.49](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.48...v1.1.3-alpha.49) (2022-08-22)
340
-
341
- **Note:** Version bump only for package @adminide-stack/billing-api-server
342
-
343
- ## [1.1.3-alpha.48](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.47...v1.1.3-alpha.48) (2022-08-22)
344
-
345
- **Note:** Version bump only for package @adminide-stack/billing-api-server
346
-
347
- ## [1.1.3-alpha.42](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.41...v1.1.3-alpha.42) (2022-08-02)
348
-
349
- **Note:** Version bump only for package @adminide-stack/billing-api-server
350
-
351
- ## [1.1.3-alpha.38](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.37...v1.1.3-alpha.38) (2022-07-28)
352
-
353
- **Note:** Version bump only for package @adminide-stack/billing-api-server
354
-
355
- ## [1.1.3-alpha.37](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.36...v1.1.3-alpha.37) (2022-07-17)
356
-
357
- **Note:** Version bump only for package @adminide-stack/billing-api-server
358
-
359
- ## [1.1.3-alpha.36](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.35...v1.1.3-alpha.36) (2022-07-14)
360
-
361
- **Note:** Version bump only for package @adminide-stack/billing-api-server
362
-
363
- ## [1.1.3-alpha.35](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.34...v1.1.3-alpha.35) (2022-07-03)
364
-
365
- **Note:** Version bump only for package @adminide-stack/billing-api-server
366
-
367
- ## [1.1.3-alpha.34](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.33...v1.1.3-alpha.34) (2022-07-01)
368
-
369
- **Note:** Version bump only for package @adminide-stack/billing-api-server
370
-
371
- ## [1.1.3-alpha.33](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.32...v1.1.3-alpha.33) (2022-06-29)
372
-
373
- **Note:** Version bump only for package @adminide-stack/billing-api-server
374
-
375
- ## [1.1.3-alpha.31](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.30...v1.1.3-alpha.31) (2022-06-26)
376
-
377
- **Note:** Version bump only for package @adminide-stack/billing-api-server
378
-
379
- ## [1.1.3-alpha.29](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.28...v1.1.3-alpha.29) (2022-06-25)
380
-
381
- **Note:** Version bump only for package @adminide-stack/billing-api-server
382
-
383
- ## [1.1.3-alpha.28](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.27...v1.1.3-alpha.28) (2022-06-25)
384
-
385
- **Note:** Version bump only for package @adminide-stack/billing-api-server
386
-
387
- ## [1.1.3-alpha.26](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.25...v1.1.3-alpha.26) (2022-06-23)
388
-
389
- **Note:** Version bump only for package @adminide-stack/billing-api-server
390
-
391
- ## [1.1.3-alpha.21](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.20...v1.1.3-alpha.21) (2022-06-19)
392
-
393
- **Note:** Version bump only for package @adminide-stack/billing-api-server
394
-
395
- ## [1.1.3-alpha.20](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.19...v1.1.3-alpha.20) (2022-06-19)
396
-
397
- **Note:** Version bump only for package @adminide-stack/billing-api-server
398
-
399
- ## [1.1.3-alpha.19](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.18...v1.1.3-alpha.19) (2022-06-18)
400
-
401
- **Note:** Version bump only for package @adminide-stack/billing-api-server
402
-
403
- ## [1.1.3-alpha.17](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.16...v1.1.3-alpha.17) (2022-06-18)
404
-
405
- **Note:** Version bump only for package @adminide-stack/billing-api-server
406
-
407
- ## [1.1.3-alpha.16](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.15...v1.1.3-alpha.16) (2022-06-17)
408
-
409
- **Note:** Version bump only for package @adminide-stack/billing-api-server
410
-
411
- ## [1.1.3-alpha.15](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.14...v1.1.3-alpha.15) (2022-06-16)
412
-
413
- **Note:** Version bump only for package @adminide-stack/billing-api-server
414
-
415
- ## [1.1.3-alpha.14](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.13...v1.1.3-alpha.14) (2022-06-16)
416
-
417
- **Note:** Version bump only for package @adminide-stack/billing-api-server
418
-
419
- ## [1.1.3-alpha.13](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.12...v1.1.3-alpha.13) (2022-06-16)
420
-
421
- **Note:** Version bump only for package @adminide-stack/billing-api-server
422
-
423
- ## [1.1.3-alpha.12](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.11...v1.1.3-alpha.12) (2022-06-13)
424
-
425
- **Note:** Version bump only for package @adminide-stack/billing-api-server
426
-
427
- ## [1.1.3-alpha.10](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.9...v1.1.3-alpha.10) (2022-06-07)
428
-
429
- **Note:** Version bump only for package @adminide-stack/billing-api-server
430
-
431
- ## [1.1.3-alpha.8](https://github.com/cdmbase/adminide-stack/compare/v1.1.3-alpha.7...v1.1.3-alpha.8) (2022-06-05)
432
-
433
- **Note:** Version bump only for package @adminide-stack/billing-api-server
434
-
435
- ## [1.1.3-alpha.5](https://github.com/cdmbase/adminide-stack/compare/v0.0.16-3...v1.1.3-alpha.5) (2022-06-04)
436
-
437
- ### Bug Fixes
438
-
439
- - **backend-server:** sequence of stripe and template migrations ([2ce7bfd](https://github.com/cdmbase/adminide-stack/commit/2ce7bfdc09b72b4a85780beda6c8dd7b437dd989))
440
- - **billing-api:** fix subscriptions not getting assigned on sign up ([fe1878b](https://github.com/cdmbase/adminide-stack/commit/fe1878b85e111f58bf87c6afe65b0ab1273e7518))
441
- - **billing-api:** make description unique for all rules ([f31e717](https://github.com/cdmbase/adminide-stack/commit/f31e717f0de7ae7ae99f28d3ec087faf3a10ea70))
442
- - **billing-api:** update change plan ([6225b22](https://github.com/cdmbase/adminide-stack/commit/6225b2248899ede6c30ae41f8c84d024175ac444))
443
- - **billing-api:** update plan button state enable/disable based on dirty state ([1450e08](https://github.com/cdmbase/adminide-stack/commit/1450e0881aa5f734632fda81c2776e7846168e56))
444
- - **billing-server:** multiple small fixes ([34d4d55](https://github.com/cdmbase/adminide-stack/commit/34d4d5575de143314d1ede0ec3afad2a44ea0e19))
445
- - **billing/invoices:** add missing invoices status ([72c3196](https://github.com/cdmbase/adminide-stack/commit/72c3196f824eaeb0129aa90249fe5ae9cdcba61f)), closes [#1104](https://github.com/cdmbase/adminide-stack/issues/1104)
446
- - **billing:** add all previous plans as deprecated plans ([858970f](https://github.com/cdmbase/adminide-stack/commit/858970f3c99762e9f4b164e70e2f234da84b5def))
447
- - **billing:** add default options in the stripe service ([c503d79](https://github.com/cdmbase/adminide-stack/commit/c503d796537cf1f50bb4190c249400c55cabed49))
448
- - **billing:** add missing refund methods ([cd86ba7](https://github.com/cdmbase/adminide-stack/commit/cd86ba748509a82f7afaf42561262cc627f6e0d0))
449
- - **billing:** addPayment directive ([c44987e](https://github.com/cdmbase/adminide-stack/commit/c44987e24efba2961097b83f77896c4e241a4c65))
450
- - **billing:** change plan subscription changes ([48ec431](https://github.com/cdmbase/adminide-stack/commit/48ec43174967cdec738f8ffa69eb102029c9d6ad)), closes [#1104](https://github.com/cdmbase/adminide-stack/issues/1104)
451
- - **billing:** fetching all invoices in case of no customer ([67cfccb](https://github.com/cdmbase/adminide-stack/commit/67cfccb7e081162bf0c1d5356db7177ccb82c8c4))
452
- - **billing:** invalid strip API verison ([016714c](https://github.com/cdmbase/adminide-stack/commit/016714c46341291e6cd75cc12c68fddba13a209a))
453
- - **billing:** metadata issue in the plans ([4a2f4f7](https://github.com/cdmbase/adminide-stack/commit/4a2f4f7615bc0c23027373f7a89371550693aa03))
454
- - **billing:** minor issues in stripe moleculer service ([e4595c8](https://github.com/cdmbase/adminide-stack/commit/e4595c848f6921eb6f60baa94c484e9f05b8cde6))
455
- - **billing:** missing customer id for free user ([4a0c32e](https://github.com/cdmbase/adminide-stack/commit/4a0c32e2b65e21ad3a594f7b93cae7a35c4c23e0))
456
- - **billing:** moleculer create bug ([b140453](https://github.com/cdmbase/adminide-stack/commit/b1404531c7e8fcdab7d4cd2fffdd519e23a135d0))
457
- - **billing:** notification template ([c17206c](https://github.com/cdmbase/adminide-stack/commit/c17206c60d2975ab346796d503556396641e8d9f))
458
- - **billing:** plans not loading completely ([005d63b](https://github.com/cdmbase/adminide-stack/commit/005d63b8f898b859342573be54324f0040ecf5a8))
459
- - **billing:** policy not being updated correctly after plan change ([7d47f54](https://github.com/cdmbase/adminide-stack/commit/7d47f54e2efc0b299235667943e5f557bc8bd4bf))
460
- - **billing:** replace &lt and &gt text with appropriate signs of <, > ([5a8e9e2](https://github.com/cdmbase/adminide-stack/commit/5a8e9e2de8d7a89288bf08bde4ffedc46b2a0fcb))
461
- - **billing:** replace email with account Id in stripe meta data ([832c02b](https://github.com/cdmbase/adminide-stack/commit/832c02b9362a26ce4d70be47db2c55e59ee1e014))
462
- - **billing:** stop deCamelizing of promotionCode ([cb66614](https://github.com/cdmbase/adminide-stack/commit/cb66614005da98f34055e050cd96ac3ad9b3b61d))
463
- - **billing:** stripe connect resolvers and services ([4719f00](https://github.com/cdmbase/adminide-stack/commit/4719f00103821649e07413d3784463f13ae1a5e4))
464
- - **billing:** update invoice resolver to return only user's invoice ([8ebae1e](https://github.com/cdmbase/adminide-stack/commit/8ebae1e53c46116d751f09294af8a6ba999cdb0f))
465
- - **billing:** update tier policy value along with others ([f67ec0f](https://github.com/cdmbase/adminide-stack/commit/f67ec0f43f01c9c4e43f554882c02be7fb71d1db))
466
- - call moleculer service for stripe migrations ([96a33bb](https://github.com/cdmbase/adminide-stack/commit/96a33bb366bb9c40cf784facf7698c2aaed3cb25)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
467
- - hide invoices with 0 amount ([2c05c52](https://github.com/cdmbase/adminide-stack/commit/2c05c52aafdd5eb98008eddc16140f7c5ac849d2))
468
- - **paypal-integration:** update custom Oauth integration ([13fe09a](https://github.com/cdmbase/adminide-stack/commit/13fe09ac274fca29cd4465596783e47b456f55d4))
469
- - resolved paypal issues and also refactored epics ([b44a696](https://github.com/cdmbase/adminide-stack/commit/b44a696de2f1f0532bd291ff555e05027a75c867)), closes [#1467](https://github.com/cdmbase/adminide-stack/issues/1467)
470
- - restrict mongoose version ([3f00cbe](https://github.com/cdmbase/adminide-stack/commit/3f00cbe642655bf6aa7e2459e03bd61c9c7e7a80))
471
- - save user's subscription information on sign up ([9cfbca6](https://github.com/cdmbase/adminide-stack/commit/9cfbca6796a4094fb9f84cd2aef50b060095e452))
472
- - treat pro plan as archive unless all cli copies gets updated ([4158bcf](https://github.com/cdmbase/adminide-stack/commit/4158bcf2dff2ba740f89d5a673051a7d63f0c0c8))
473
- - update templates to have templateId to avoid null code error ([e5fb37c](https://github.com/cdmbase/adminide-stack/commit/e5fb37c6ea38b052981974eba600f00629f218ce)), closes [#1137](https://github.com/cdmbase/adminide-stack/issues/1137)
474
- - user creation and stripe customer & subscription workflow ([e1bb3b4](https://github.com/cdmbase/adminide-stack/commit/e1bb3b4ec0fae7e28499127f06d99ec562d1c747))
475
-
476
- ### Features
477
-
478
- - add annual plans ([dad30e8](https://github.com/cdmbase/adminide-stack/commit/dad30e8fb53c7ddd4d916ef2efb22e68713fe051))
479
- - add billing plan migrations & policies to multiple modules ([a24102c](https://github.com/cdmbase/adminide-stack/commit/a24102c5784e8f2fbd70328f4ade1034f0b353c4)), closes [#1175](https://github.com/cdmbase/adminide-stack/issues/1175)
480
- - add roles and permissions in billing module ([08a7a25](https://github.com/cdmbase/adminide-stack/commit/08a7a25e565402a4567e8a1695629c1dda2fabb0))
481
- - **billing-api-server:** add subscriptions and custom fields resolvers ([5df9952](https://github.com/cdmbase/adminide-stack/commit/5df9952054d3e00a148369a5b4971ac72fa175b0))
482
- - **billing-api:** add complete workflow of plan subscriptions ([7212b5b](https://github.com/cdmbase/adminide-stack/commit/7212b5b011e90ffae37b0d5300a214aed6df99e2))
483
- - **billing-api:** add CRUD for payment methods ([8403291](https://github.com/cdmbase/adminide-stack/commit/840329171148f39c51518356af9b6e90d9a1ea0f))
484
- - **billing-api:** add scheduler to limit Stripe API calls according to rate limit ([284f460](https://github.com/cdmbase/adminide-stack/commit/284f460a21dad135eaef02677a7abc9833a0c3d9)), closes [#10101](https://github.com/cdmbase/adminide-stack/issues/10101)
485
- - **billing-api:** add support to change usage through plan cards ([b56ffc0](https://github.com/cdmbase/adminide-stack/commit/b56ffc02a09c68188b282c7c4242a9e4bc6cceed))
486
- - **billing-api:** add types and docs to stripe plans ([22fce98](https://github.com/cdmbase/adminide-stack/commit/22fce987118d356fe6e24ed0047a31df14ff4865))
487
- - **billing-api:** make dynamic payment plan cards ([e144968](https://github.com/cdmbase/adminide-stack/commit/e1449680ee17854d92cb98059a84fab043ad4da0))
488
- - **billing-server:** add rollup build ([6883676](https://github.com/cdmbase/adminide-stack/commit/68836761162e997dd3c41d3c0c1ca704616cc905))
489
- - **billing/payment-integration:** add paypal payment integration ([de13feb](https://github.com/cdmbase/adminide-stack/commit/de13feb94b8556b57c7ae3301ed1fd2541e33d8c))
490
- - **billing/payment-integrations:** add external account crud and dashboard ([4b5b267](https://github.com/cdmbase/adminide-stack/commit/4b5b2675ae1a4a9a32573f4606f37b647cdc319a)), closes [#989](https://github.com/cdmbase/adminide-stack/issues/989)
491
- - **billing/payment-profile:** add transfer between two stripe connect accounts ([5c25adf](https://github.com/cdmbase/adminide-stack/commit/5c25adf86f744a89f64992d791676c93eb114e9c))
492
- - **billing/payment-transfer:** add payment method step ([8a6b87e](https://github.com/cdmbase/adminide-stack/commit/8a6b87e23f2512e6f41f3178eda9b7ef4574a0a3))
493
- - **billing/plans:** move meta data details from plan to resolver ([6274715](https://github.com/cdmbase/adminide-stack/commit/6274715048d360381baa8ac26f64317bc7f540f1))
494
- - **billing:** add billing plan and products db migrations ([8018d91](https://github.com/cdmbase/adminide-stack/commit/8018d9187de04f6cbb9a0085cca05e9f96cf5e6a)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
495
- - **billing:** add CRUD operations for bank account source ([21625cb](https://github.com/cdmbase/adminide-stack/commit/21625cbbb6efd28e9664c5b2a77388847d1a13f7))
496
- - **billing:** add default usage on subscription create ([c615dce](https://github.com/cdmbase/adminide-stack/commit/c615dcef0b65ca52413a96fdc39099b0c97f8399))
497
- - **billing:** add dynamic configuration policies inside plan meta data ([75b113d](https://github.com/cdmbase/adminide-stack/commit/75b113d2fccedba59a43b79ea584a8c75ba077e3)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
498
- - **billing:** add email template for all the billing related notification emails ([3473ea5](https://github.com/cdmbase/adminide-stack/commit/3473ea5857224348c6bc44fe2308eadf550086b2)), closes [#793](https://github.com/cdmbase/adminide-stack/issues/793)
499
- - **billing:** add home screen to the billing module ([b40c67f](https://github.com/cdmbase/adminide-stack/commit/b40c67ffab3a8af78a82ebb2d0bccb5126682d90))
500
- - **billing:** add notification preferences ([ac087b2](https://github.com/cdmbase/adminide-stack/commit/ac087b2105620d5fb7e85624d511fbbae10dc339))
501
- - **billing:** add payment profiles & stripe connect integration ([5836c0b](https://github.com/cdmbase/adminide-stack/commit/5836c0b0d43611908d13c929f0de18be351f5e1e))
502
- - **billing:** add payout options for stripe ([cc6dd18](https://github.com/cdmbase/adminide-stack/commit/cc6dd18a9004365925a46e544e453967227afbc1)), closes [#989](https://github.com/cdmbase/adminide-stack/issues/989)
503
- - **billing:** add paypal integration configuration ([2577565](https://github.com/cdmbase/adminide-stack/commit/2577565d0f75153471ef5d0e5e9eb288cb583f58))
504
- - **billing:** add paypal payout integration ([bc1db34](https://github.com/cdmbase/adminide-stack/commit/bc1db3423b2c47b4babbbee9492fe36cba6fba2b))
505
- - **billing:** add pro plans in migrations ([dc5af41](https://github.com/cdmbase/adminide-stack/commit/dc5af414fa299bdf4fa3a045fc90cab1c13f214e))
506
- - **billing:** add route to plan page in policies ([0e26d36](https://github.com/cdmbase/adminide-stack/commit/0e26d360b2c4e3676184ed38e3575742d8701f93)), closes [#806](https://github.com/cdmbase/adminide-stack/issues/806)
507
- - **billing:** add separate pricing for containers storage ([0e57053](https://github.com/cdmbase/adminide-stack/commit/0e570537ffb383a5c040db94b02feb57f2f1210f))
508
- - **billing:** add status in billing schema ([6254c5a](https://github.com/cdmbase/adminide-stack/commit/6254c5ae5d8f783c9e9d692d1154ac4d8e6a8165)), closes [#875](https://github.com/cdmbase/adminide-stack/issues/875)
509
- - **billing:** add stripe data sources and implement methods ([ff1d100](https://github.com/cdmbase/adminide-stack/commit/ff1d10015ff328823529ae4587bef698e08d94fa))
510
- - **billing:** add support for invoices ([2847a54](https://github.com/cdmbase/adminide-stack/commit/2847a54219ed526b6993a963bf58b79cea20e3e4))
511
- - **billing:** add support to archive plans ([7de4665](https://github.com/cdmbase/adminide-stack/commit/7de4665ebd648fd1228736665e27f00879f4a084))
512
- - **billing:** add users in subscription plans ([c54a9ae](https://github.com/cdmbase/adminide-stack/commit/c54a9ae5c2bf59141f08b2fa1f52243329630afe)), closes [#872](https://github.com/cdmbase/adminide-stack/issues/872)
513
- - **billing:** change plan with existing user ([6c81368](https://github.com/cdmbase/adminide-stack/commit/6c81368fc768953ba852581a0465d8352004800f)), closes [#449](https://github.com/cdmbase/adminide-stack/issues/449)
514
- - **billing:** charge transfer fee from the preferences ([df904dc](https://github.com/cdmbase/adminide-stack/commit/df904dc5d838c65c17557e1dff91514ae1f78b0f))
515
- - **billing:** handle free plans with policy only ([cbb8f5f](https://github.com/cdmbase/adminide-stack/commit/cbb8f5f68072edf04c403a694aa9712d2cada609))
516
- - **billing:** introduced new payment plans ([f269aa5](https://github.com/cdmbase/adminide-stack/commit/f269aa50f50b1177b234c98da93aefb1aeaf0f2b))
517
- - **billing:** make payment screen modular ([108e614](https://github.com/cdmbase/adminide-stack/commit/108e614510cc9d381112ed13f6a852ee29b0b941))
518
- - **billing:** make stripe migrations optional ([63e89a5](https://github.com/cdmbase/adminide-stack/commit/63e89a5d8f74cfd0afea5cbe4da87594074a6273))
519
- - **billing:** move billing module from user to organization ([c2c5abb](https://github.com/cdmbase/adminide-stack/commit/c2c5abb80886df20cac11a5756c6fa02ce8fde27))
520
- - **billing:** move from metered plans to fixed price plans ([1ccb791](https://github.com/cdmbase/adminide-stack/commit/1ccb7915c4fbcd8bde78f3ac2efe7abacc35b28b))
521
- - **billing:** notify users and revert back to free plan ([979f849](https://github.com/cdmbase/adminide-stack/commit/979f8499c2868c7acb0c1ffb7b7146331e56e9be))
522
- - **billing:** send billing notification to users with specific roles ([bea03a7](https://github.com/cdmbase/adminide-stack/commit/bea03a73ee98b9bb846aace79fabe6f54a174382))
523
- - **billing:** setup notification for Plan changes ([6e255fd](https://github.com/cdmbase/adminide-stack/commit/6e255fd4a11750679c678ec82d2cbe7976cef03c))
524
- - **billing:** store per container storage in policy ([bd23ff4](https://github.com/cdmbase/adminide-stack/commit/bd23ff4436e6bda9b374860b7f872fc42cb024bc))
525
- - **billing:** store prev and current subscription ([351256f](https://github.com/cdmbase/adminide-stack/commit/351256f737966865856045fe8f198a728d11180d)), closes [#919](https://github.com/cdmbase/adminide-stack/issues/919)
526
- - **billing:** update invoices table ([72c005f](https://github.com/cdmbase/adminide-stack/commit/72c005f0bbecb16e3bb81724ec37585eb844883b))
527
- - **billing:** update some stripe methods ([1f944d5](https://github.com/cdmbase/adminide-stack/commit/1f944d58fb402f3fa1d07b3e7b0e67a6f379969a))
528
- - **configuration:** add support for readOnly and disabled options in configuration ([38711e4](https://github.com/cdmbase/adminide-stack/commit/38711e40149a6822df30d28d962a35970a093a5f)), closes [#1136](https://github.com/cdmbase/adminide-stack/issues/1136)
529
- - make separate schema for billing plans ([a2e92f4](https://github.com/cdmbase/adminide-stack/commit/a2e92f456226e53648c7ee450fe5073df29e868a))
530
- - make stripe integration compatible with our integration workflow ([a815c28](https://github.com/cdmbase/adminide-stack/commit/a815c28f53ca14b58f04d0846ffa405a8d4c3f54))
531
- - **migration:** add down migration in all existing migration ([7c040c5](https://github.com/cdmbase/adminide-stack/commit/7c040c587cf805bf0ed513620075384e1e40a35e))
532
- - read rules from single module ([52eb42c](https://github.com/cdmbase/adminide-stack/commit/52eb42c2c4a058850fbac26fbae8648ac7ad80e9))
533
- - **registry-api:** add api management backend ([a0f3921](https://github.com/cdmbase/adminide-stack/commit/a0f392153b686e1bdfaae4f3823ab17085684067)), closes [#1003](https://github.com/cdmbase/adminide-stack/issues/1003)
534
- - **roles-n-permissions:** add new role and permissions, add permissions in preferences UI ([cf5fa21](https://github.com/cdmbase/adminide-stack/commit/cf5fa212712a3343d16ddcaf17e88f35c82e7693))
535
- - **roles:** add common wrapper to handle permission and config ([a568d94](https://github.com/cdmbase/adminide-stack/commit/a568d9442ffc7ffd32f260c814e77eb91bdc980d))
536
- - **teams:** restrict team invites base on the policy value ([469ea60](https://github.com/cdmbase/adminide-stack/commit/469ea6048a8b031362f0a693a93016785c0a9a14))
537
- - update typescript version to 3.8 ([017d749](https://github.com/cdmbase/adminide-stack/commit/017d749bbe9fed24c63f6957aa45a1553d561a0e))
538
-
539
- ### Reverts
540
-
541
- - Revert "Move orgId to orgName to get subscription" ([ca45b54](https://github.com/cdmbase/adminide-stack/commit/ca45b54b215f02e6ba2343824c71204199054f84))
542
- - Revert "remove shared-queries packages as it is not needed anymore" ([ee99476](https://github.com/cdmbase/adminide-stack/commit/ee99476f2d95bf70b8906149ab47362b4bf027d4))
543
- - **billing:** treat pro plan as archive unless all cli copies gets updated ([ec5b0c3](https://github.com/cdmbase/adminide-stack/commit/ec5b0c320a0695fe705145cc1495ae3b51295fe8))
544
-
545
- ## [1.1.3-alpha.0](https://github.com/cdmbase/adminide-stack/compare/v0.0.16-3...v1.1.3-alpha.0) (2022-05-28)
546
-
547
- ### Bug Fixes
548
-
549
- - **backend-server:** sequence of stripe and template migrations ([2ce7bfd](https://github.com/cdmbase/adminide-stack/commit/2ce7bfdc09b72b4a85780beda6c8dd7b437dd989))
550
- - **billing-api:** fix subscriptions not getting assigned on sign up ([fe1878b](https://github.com/cdmbase/adminide-stack/commit/fe1878b85e111f58bf87c6afe65b0ab1273e7518))
551
- - **billing-api:** make description unique for all rules ([f31e717](https://github.com/cdmbase/adminide-stack/commit/f31e717f0de7ae7ae99f28d3ec087faf3a10ea70))
552
- - **billing-api:** update change plan ([6225b22](https://github.com/cdmbase/adminide-stack/commit/6225b2248899ede6c30ae41f8c84d024175ac444))
553
- - **billing-api:** update plan button state enable/disable based on dirty state ([1450e08](https://github.com/cdmbase/adminide-stack/commit/1450e0881aa5f734632fda81c2776e7846168e56))
554
- - **billing-server:** multiple small fixes ([34d4d55](https://github.com/cdmbase/adminide-stack/commit/34d4d5575de143314d1ede0ec3afad2a44ea0e19))
555
- - **billing/invoices:** add missing invoices status ([72c3196](https://github.com/cdmbase/adminide-stack/commit/72c3196f824eaeb0129aa90249fe5ae9cdcba61f)), closes [#1104](https://github.com/cdmbase/adminide-stack/issues/1104)
556
- - **billing:** add all previous plans as deprecated plans ([858970f](https://github.com/cdmbase/adminide-stack/commit/858970f3c99762e9f4b164e70e2f234da84b5def))
557
- - **billing:** add default options in the stripe service ([c503d79](https://github.com/cdmbase/adminide-stack/commit/c503d796537cf1f50bb4190c249400c55cabed49))
558
- - **billing:** add missing refund methods ([cd86ba7](https://github.com/cdmbase/adminide-stack/commit/cd86ba748509a82f7afaf42561262cc627f6e0d0))
559
- - **billing:** addPayment directive ([c44987e](https://github.com/cdmbase/adminide-stack/commit/c44987e24efba2961097b83f77896c4e241a4c65))
560
- - **billing:** change plan subscription changes ([48ec431](https://github.com/cdmbase/adminide-stack/commit/48ec43174967cdec738f8ffa69eb102029c9d6ad)), closes [#1104](https://github.com/cdmbase/adminide-stack/issues/1104)
561
- - **billing:** fetching all invoices in case of no customer ([67cfccb](https://github.com/cdmbase/adminide-stack/commit/67cfccb7e081162bf0c1d5356db7177ccb82c8c4))
562
- - **billing:** invalid strip API verison ([016714c](https://github.com/cdmbase/adminide-stack/commit/016714c46341291e6cd75cc12c68fddba13a209a))
563
- - **billing:** metadata issue in the plans ([4a2f4f7](https://github.com/cdmbase/adminide-stack/commit/4a2f4f7615bc0c23027373f7a89371550693aa03))
564
- - **billing:** minor issues in stripe moleculer service ([e4595c8](https://github.com/cdmbase/adminide-stack/commit/e4595c848f6921eb6f60baa94c484e9f05b8cde6))
565
- - **billing:** missing customer id for free user ([4a0c32e](https://github.com/cdmbase/adminide-stack/commit/4a0c32e2b65e21ad3a594f7b93cae7a35c4c23e0))
566
- - **billing:** moleculer create bug ([b140453](https://github.com/cdmbase/adminide-stack/commit/b1404531c7e8fcdab7d4cd2fffdd519e23a135d0))
567
- - **billing:** notification template ([c17206c](https://github.com/cdmbase/adminide-stack/commit/c17206c60d2975ab346796d503556396641e8d9f))
568
- - **billing:** plans not loading completely ([005d63b](https://github.com/cdmbase/adminide-stack/commit/005d63b8f898b859342573be54324f0040ecf5a8))
569
- - **billing:** policy not being updated correctly after plan change ([7d47f54](https://github.com/cdmbase/adminide-stack/commit/7d47f54e2efc0b299235667943e5f557bc8bd4bf))
570
- - **billing:** replace &lt and &gt text with appropriate signs of <, > ([5a8e9e2](https://github.com/cdmbase/adminide-stack/commit/5a8e9e2de8d7a89288bf08bde4ffedc46b2a0fcb))
571
- - **billing:** replace email with account Id in stripe meta data ([832c02b](https://github.com/cdmbase/adminide-stack/commit/832c02b9362a26ce4d70be47db2c55e59ee1e014))
572
- - **billing:** stop deCamelizing of promotionCode ([cb66614](https://github.com/cdmbase/adminide-stack/commit/cb66614005da98f34055e050cd96ac3ad9b3b61d))
573
- - **billing:** stripe connect resolvers and services ([4719f00](https://github.com/cdmbase/adminide-stack/commit/4719f00103821649e07413d3784463f13ae1a5e4))
574
- - **billing:** update invoice resolver to return only user's invoice ([8ebae1e](https://github.com/cdmbase/adminide-stack/commit/8ebae1e53c46116d751f09294af8a6ba999cdb0f))
575
- - **billing:** update tier policy value along with others ([f67ec0f](https://github.com/cdmbase/adminide-stack/commit/f67ec0f43f01c9c4e43f554882c02be7fb71d1db))
576
- - call moleculer service for stripe migrations ([96a33bb](https://github.com/cdmbase/adminide-stack/commit/96a33bb366bb9c40cf784facf7698c2aaed3cb25)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
577
- - hide invoices with 0 amount ([2c05c52](https://github.com/cdmbase/adminide-stack/commit/2c05c52aafdd5eb98008eddc16140f7c5ac849d2))
578
- - **paypal-integration:** update custom Oauth integration ([13fe09a](https://github.com/cdmbase/adminide-stack/commit/13fe09ac274fca29cd4465596783e47b456f55d4))
579
- - resolved paypal issues and also refactored epics ([b44a696](https://github.com/cdmbase/adminide-stack/commit/b44a696de2f1f0532bd291ff555e05027a75c867)), closes [#1467](https://github.com/cdmbase/adminide-stack/issues/1467)
580
- - restrict mongoose version ([3f00cbe](https://github.com/cdmbase/adminide-stack/commit/3f00cbe642655bf6aa7e2459e03bd61c9c7e7a80))
581
- - save user's subscription information on sign up ([9cfbca6](https://github.com/cdmbase/adminide-stack/commit/9cfbca6796a4094fb9f84cd2aef50b060095e452))
582
- - treat pro plan as archive unless all cli copies gets updated ([4158bcf](https://github.com/cdmbase/adminide-stack/commit/4158bcf2dff2ba740f89d5a673051a7d63f0c0c8))
583
- - update templates to have templateId to avoid null code error ([e5fb37c](https://github.com/cdmbase/adminide-stack/commit/e5fb37c6ea38b052981974eba600f00629f218ce)), closes [#1137](https://github.com/cdmbase/adminide-stack/issues/1137)
584
- - user creation and stripe customer & subscription workflow ([e1bb3b4](https://github.com/cdmbase/adminide-stack/commit/e1bb3b4ec0fae7e28499127f06d99ec562d1c747))
585
-
586
- ### Features
587
-
588
- - add annual plans ([dad30e8](https://github.com/cdmbase/adminide-stack/commit/dad30e8fb53c7ddd4d916ef2efb22e68713fe051))
589
- - add billing plan migrations & policies to multiple modules ([a24102c](https://github.com/cdmbase/adminide-stack/commit/a24102c5784e8f2fbd70328f4ade1034f0b353c4)), closes [#1175](https://github.com/cdmbase/adminide-stack/issues/1175)
590
- - add roles and permissions in billing module ([08a7a25](https://github.com/cdmbase/adminide-stack/commit/08a7a25e565402a4567e8a1695629c1dda2fabb0))
591
- - **billing-api-server:** add subscriptions and custom fields resolvers ([5df9952](https://github.com/cdmbase/adminide-stack/commit/5df9952054d3e00a148369a5b4971ac72fa175b0))
592
- - **billing-api:** add complete workflow of plan subscriptions ([7212b5b](https://github.com/cdmbase/adminide-stack/commit/7212b5b011e90ffae37b0d5300a214aed6df99e2))
593
- - **billing-api:** add CRUD for payment methods ([8403291](https://github.com/cdmbase/adminide-stack/commit/840329171148f39c51518356af9b6e90d9a1ea0f))
594
- - **billing-api:** add scheduler to limit Stripe API calls according to rate limit ([284f460](https://github.com/cdmbase/adminide-stack/commit/284f460a21dad135eaef02677a7abc9833a0c3d9)), closes [#10101](https://github.com/cdmbase/adminide-stack/issues/10101)
595
- - **billing-api:** add support to change usage through plan cards ([b56ffc0](https://github.com/cdmbase/adminide-stack/commit/b56ffc02a09c68188b282c7c4242a9e4bc6cceed))
596
- - **billing-api:** add types and docs to stripe plans ([22fce98](https://github.com/cdmbase/adminide-stack/commit/22fce987118d356fe6e24ed0047a31df14ff4865))
597
- - **billing-api:** make dynamic payment plan cards ([e144968](https://github.com/cdmbase/adminide-stack/commit/e1449680ee17854d92cb98059a84fab043ad4da0))
598
- - **billing-server:** add rollup build ([6883676](https://github.com/cdmbase/adminide-stack/commit/68836761162e997dd3c41d3c0c1ca704616cc905))
599
- - **billing/payment-integration:** add paypal payment integration ([de13feb](https://github.com/cdmbase/adminide-stack/commit/de13feb94b8556b57c7ae3301ed1fd2541e33d8c))
600
- - **billing/payment-integrations:** add external account crud and dashboard ([4b5b267](https://github.com/cdmbase/adminide-stack/commit/4b5b2675ae1a4a9a32573f4606f37b647cdc319a)), closes [#989](https://github.com/cdmbase/adminide-stack/issues/989)
601
- - **billing/payment-profile:** add transfer between two stripe connect accounts ([5c25adf](https://github.com/cdmbase/adminide-stack/commit/5c25adf86f744a89f64992d791676c93eb114e9c))
602
- - **billing/payment-transfer:** add payment method step ([8a6b87e](https://github.com/cdmbase/adminide-stack/commit/8a6b87e23f2512e6f41f3178eda9b7ef4574a0a3))
603
- - **billing/plans:** move meta data details from plan to resolver ([6274715](https://github.com/cdmbase/adminide-stack/commit/6274715048d360381baa8ac26f64317bc7f540f1))
604
- - **billing:** add billing plan and products db migrations ([8018d91](https://github.com/cdmbase/adminide-stack/commit/8018d9187de04f6cbb9a0085cca05e9f96cf5e6a)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
605
- - **billing:** add CRUD operations for bank account source ([21625cb](https://github.com/cdmbase/adminide-stack/commit/21625cbbb6efd28e9664c5b2a77388847d1a13f7))
606
- - **billing:** add default usage on subscription create ([c615dce](https://github.com/cdmbase/adminide-stack/commit/c615dcef0b65ca52413a96fdc39099b0c97f8399))
607
- - **billing:** add dynamic configuration policies inside plan meta data ([75b113d](https://github.com/cdmbase/adminide-stack/commit/75b113d2fccedba59a43b79ea584a8c75ba077e3)), closes [#1116](https://github.com/cdmbase/adminide-stack/issues/1116)
608
- - **billing:** add email template for all the billing related notification emails ([3473ea5](https://github.com/cdmbase/adminide-stack/commit/3473ea5857224348c6bc44fe2308eadf550086b2)), closes [#793](https://github.com/cdmbase/adminide-stack/issues/793)
609
- - **billing:** add home screen to the billing module ([b40c67f](https://github.com/cdmbase/adminide-stack/commit/b40c67ffab3a8af78a82ebb2d0bccb5126682d90))
610
- - **billing:** add notification preferences ([ac087b2](https://github.com/cdmbase/adminide-stack/commit/ac087b2105620d5fb7e85624d511fbbae10dc339))
611
- - **billing:** add payment profiles & stripe connect integration ([5836c0b](https://github.com/cdmbase/adminide-stack/commit/5836c0b0d43611908d13c929f0de18be351f5e1e))
612
- - **billing:** add payout options for stripe ([cc6dd18](https://github.com/cdmbase/adminide-stack/commit/cc6dd18a9004365925a46e544e453967227afbc1)), closes [#989](https://github.com/cdmbase/adminide-stack/issues/989)
613
- - **billing:** add paypal integration configuration ([2577565](https://github.com/cdmbase/adminide-stack/commit/2577565d0f75153471ef5d0e5e9eb288cb583f58))
614
- - **billing:** add paypal payout integration ([bc1db34](https://github.com/cdmbase/adminide-stack/commit/bc1db3423b2c47b4babbbee9492fe36cba6fba2b))
615
- - **billing:** add pro plans in migrations ([dc5af41](https://github.com/cdmbase/adminide-stack/commit/dc5af414fa299bdf4fa3a045fc90cab1c13f214e))
616
- - **billing:** add route to plan page in policies ([0e26d36](https://github.com/cdmbase/adminide-stack/commit/0e26d360b2c4e3676184ed38e3575742d8701f93)), closes [#806](https://github.com/cdmbase/adminide-stack/issues/806)
617
- - **billing:** add separate pricing for containers storage ([0e57053](https://github.com/cdmbase/adminide-stack/commit/0e570537ffb383a5c040db94b02feb57f2f1210f))
618
- - **billing:** add status in billing schema ([6254c5a](https://github.com/cdmbase/adminide-stack/commit/6254c5ae5d8f783c9e9d692d1154ac4d8e6a8165)), closes [#875](https://github.com/cdmbase/adminide-stack/issues/875)
619
- - **billing:** add stripe data sources and implement methods ([ff1d100](https://github.com/cdmbase/adminide-stack/commit/ff1d10015ff328823529ae4587bef698e08d94fa))
620
- - **billing:** add support for invoices ([2847a54](https://github.com/cdmbase/adminide-stack/commit/2847a54219ed526b6993a963bf58b79cea20e3e4))
621
- - **billing:** add support to archive plans ([7de4665](https://github.com/cdmbase/adminide-stack/commit/7de4665ebd648fd1228736665e27f00879f4a084))
622
- - **billing:** add users in subscription plans ([c54a9ae](https://github.com/cdmbase/adminide-stack/commit/c54a9ae5c2bf59141f08b2fa1f52243329630afe)), closes [#872](https://github.com/cdmbase/adminide-stack/issues/872)
623
- - **billing:** change plan with existing user ([6c81368](https://github.com/cdmbase/adminide-stack/commit/6c81368fc768953ba852581a0465d8352004800f)), closes [#449](https://github.com/cdmbase/adminide-stack/issues/449)
624
- - **billing:** charge transfer fee from the preferences ([df904dc](https://github.com/cdmbase/adminide-stack/commit/df904dc5d838c65c17557e1dff91514ae1f78b0f))
625
- - **billing:** handle free plans with policy only ([cbb8f5f](https://github.com/cdmbase/adminide-stack/commit/cbb8f5f68072edf04c403a694aa9712d2cada609))
626
- - **billing:** introduced new payment plans ([f269aa5](https://github.com/cdmbase/adminide-stack/commit/f269aa50f50b1177b234c98da93aefb1aeaf0f2b))
627
- - **billing:** make payment screen modular ([108e614](https://github.com/cdmbase/adminide-stack/commit/108e614510cc9d381112ed13f6a852ee29b0b941))
628
- - **billing:** make stripe migrations optional ([63e89a5](https://github.com/cdmbase/adminide-stack/commit/63e89a5d8f74cfd0afea5cbe4da87594074a6273))
629
- - **billing:** move billing module from user to organization ([c2c5abb](https://github.com/cdmbase/adminide-stack/commit/c2c5abb80886df20cac11a5756c6fa02ce8fde27))
630
- - **billing:** move from metered plans to fixed price plans ([1ccb791](https://github.com/cdmbase/adminide-stack/commit/1ccb7915c4fbcd8bde78f3ac2efe7abacc35b28b))
631
- - **billing:** notify users and revert back to free plan ([979f849](https://github.com/cdmbase/adminide-stack/commit/979f8499c2868c7acb0c1ffb7b7146331e56e9be))
632
- - **billing:** send billing notification to users with specific roles ([bea03a7](https://github.com/cdmbase/adminide-stack/commit/bea03a73ee98b9bb846aace79fabe6f54a174382))
633
- - **billing:** setup notification for Plan changes ([6e255fd](https://github.com/cdmbase/adminide-stack/commit/6e255fd4a11750679c678ec82d2cbe7976cef03c))
634
- - **billing:** store per container storage in policy ([bd23ff4](https://github.com/cdmbase/adminide-stack/commit/bd23ff4436e6bda9b374860b7f872fc42cb024bc))
635
- - **billing:** store prev and current subscription ([351256f](https://github.com/cdmbase/adminide-stack/commit/351256f737966865856045fe8f198a728d11180d)), closes [#919](https://github.com/cdmbase/adminide-stack/issues/919)
636
- - **billing:** update invoices table ([72c005f](https://github.com/cdmbase/adminide-stack/commit/72c005f0bbecb16e3bb81724ec37585eb844883b))
637
- - **billing:** update some stripe methods ([1f944d5](https://github.com/cdmbase/adminide-stack/commit/1f944d58fb402f3fa1d07b3e7b0e67a6f379969a))
638
- - **configuration:** add support for readOnly and disabled options in configuration ([38711e4](https://github.com/cdmbase/adminide-stack/commit/38711e40149a6822df30d28d962a35970a093a5f)), closes [#1136](https://github.com/cdmbase/adminide-stack/issues/1136)
639
- - make separate schema for billing plans ([a2e92f4](https://github.com/cdmbase/adminide-stack/commit/a2e92f456226e53648c7ee450fe5073df29e868a))
640
- - make stripe integration compatible with our integration workflow ([a815c28](https://github.com/cdmbase/adminide-stack/commit/a815c28f53ca14b58f04d0846ffa405a8d4c3f54))
641
- - **migration:** add down migration in all existing migration ([7c040c5](https://github.com/cdmbase/adminide-stack/commit/7c040c587cf805bf0ed513620075384e1e40a35e))
642
- - read rules from single module ([52eb42c](https://github.com/cdmbase/adminide-stack/commit/52eb42c2c4a058850fbac26fbae8648ac7ad80e9))
643
- - **registry-api:** add api management backend ([a0f3921](https://github.com/cdmbase/adminide-stack/commit/a0f392153b686e1bdfaae4f3823ab17085684067)), closes [#1003](https://github.com/cdmbase/adminide-stack/issues/1003)
644
- - **roles-n-permissions:** add new role and permissions, add permissions in preferences UI ([cf5fa21](https://github.com/cdmbase/adminide-stack/commit/cf5fa212712a3343d16ddcaf17e88f35c82e7693))
645
- - **roles:** add common wrapper to handle permission and config ([a568d94](https://github.com/cdmbase/adminide-stack/commit/a568d9442ffc7ffd32f260c814e77eb91bdc980d))
646
- - **teams:** restrict team invites base on the policy value ([469ea60](https://github.com/cdmbase/adminide-stack/commit/469ea6048a8b031362f0a693a93016785c0a9a14))
647
- - update typescript version to 3.8 ([017d749](https://github.com/cdmbase/adminide-stack/commit/017d749bbe9fed24c63f6957aa45a1553d561a0e))
648
-
649
- ### Reverts
650
-
651
- - Revert "Move orgId to orgName to get subscription" ([ca45b54](https://github.com/cdmbase/adminide-stack/commit/ca45b54b215f02e6ba2343824c71204199054f84))
652
- - Revert "remove shared-queries packages as it is not needed anymore" ([ee99476](https://github.com/cdmbase/adminide-stack/commit/ee99476f2d95bf70b8906149ab47362b4bf027d4))
653
- - **billing:** treat pro plan as archive unless all cli copies gets updated ([ec5b0c3](https://github.com/cdmbase/adminide-stack/commit/ec5b0c320a0695fe705145cc1495ae3b51295fe8))
654
-
655
- ## [1.1.1-alpha.437](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.436...v1.1.1-alpha.437) (2022-05-27)
656
-
657
- **Note:** Version bump only for package @adminide-stack/billing-api-server
658
-
659
- ## [1.1.1-alpha.436](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.435...v1.1.1-alpha.436) (2022-05-26)
660
-
661
- **Note:** Version bump only for package @adminide-stack/billing-api-server
662
-
663
- ## [1.1.1-alpha.434](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.433...v1.1.1-alpha.434) (2022-05-25)
664
-
665
- **Note:** Version bump only for package @adminide-stack/billing-api-server
666
-
667
- ## [1.1.1-alpha.433](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.432...v1.1.1-alpha.433) (2022-05-25)
668
-
669
- **Note:** Version bump only for package @adminide-stack/billing-api-server
670
-
671
- ## [1.1.1-alpha.431](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.430...v1.1.1-alpha.431) (2022-05-23)
672
-
673
- **Note:** Version bump only for package @adminide-stack/billing-api-server
674
-
675
- ## [1.1.1-alpha.429](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.428...v1.1.1-alpha.429) (2022-05-20)
676
-
677
- **Note:** Version bump only for package @adminide-stack/billing-api-server
678
-
679
- ## [1.1.1-alpha.428](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.427...v1.1.1-alpha.428) (2022-05-20)
680
-
681
- **Note:** Version bump only for package @adminide-stack/billing-api-server
682
-
683
- ## [1.1.1-alpha.426](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.425...v1.1.1-alpha.426) (2022-05-19)
684
-
685
- **Note:** Version bump only for package @adminide-stack/billing-api-server
686
-
687
- ## [1.1.1-alpha.423](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.422...v1.1.1-alpha.423) (2022-05-17)
688
-
689
- **Note:** Version bump only for package @adminide-stack/billing-api-server
690
-
691
- ## [1.1.1-alpha.421](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.420...v1.1.1-alpha.421) (2022-05-15)
692
-
693
- **Note:** Version bump only for package @adminide-stack/billing-api-server
694
-
695
- ## [1.1.1-alpha.420](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.419...v1.1.1-alpha.420) (2022-05-14)
696
-
697
- **Note:** Version bump only for package @adminide-stack/billing-api-server
698
-
699
- ## [1.1.1-alpha.418](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.417...v1.1.1-alpha.418) (2022-05-13)
700
-
701
- **Note:** Version bump only for package @adminide-stack/billing-api-server
702
-
703
- ## [1.1.1-alpha.415](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.414...v1.1.1-alpha.415) (2022-05-08)
704
-
705
- **Note:** Version bump only for package @adminide-stack/billing-api-server
706
-
707
- ## [1.1.1-alpha.414](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.413...v1.1.1-alpha.414) (2022-05-07)
708
-
709
- **Note:** Version bump only for package @adminide-stack/billing-api-server
710
-
711
- ## [1.1.1-alpha.413](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.412...v1.1.1-alpha.413) (2022-05-07)
712
-
713
- **Note:** Version bump only for package @adminide-stack/billing-api-server
714
-
715
- ## [1.1.1-alpha.408](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.407...v1.1.1-alpha.408) (2022-04-28)
716
-
717
- **Note:** Version bump only for package @adminide-stack/billing-api-server
718
-
719
- ## [1.1.1-alpha.402](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.401...v1.1.1-alpha.402) (2022-04-22)
720
-
721
- **Note:** Version bump only for package @adminide-stack/billing-api-server
722
-
723
- ## [1.1.1-alpha.400](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.399...v1.1.1-alpha.400) (2022-04-21)
724
-
725
- ### Bug Fixes
726
-
727
- - **billing:** addPayment directive ([c44987e](https://github.com/cdmbase/adminide-stack/commit/c44987e24efba2961097b83f77896c4e241a4c65))
728
-
729
- ## [1.1.1-alpha.396](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.395...v1.1.1-alpha.396) (2022-04-19)
730
-
731
- **Note:** Version bump only for package @adminide-stack/billing-api-server
732
-
733
- ## [1.1.1-alpha.395](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.394...v1.1.1-alpha.395) (2022-04-19)
734
-
735
- **Note:** Version bump only for package @adminide-stack/billing-api-server
736
-
737
- ## [1.1.1-alpha.394](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.393...v1.1.1-alpha.394) (2022-04-18)
738
-
739
- **Note:** Version bump only for package @adminide-stack/billing-api-server
740
-
741
- ## [1.1.1-alpha.391](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.390...v1.1.1-alpha.391) (2022-04-16)
742
-
743
- **Note:** Version bump only for package @adminide-stack/billing-api-server
744
-
745
- ## [1.1.1-alpha.387](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.386...v1.1.1-alpha.387) (2022-04-12)
746
-
747
- **Note:** Version bump only for package @adminide-stack/billing-api-server
748
-
749
- ## [1.1.1-alpha.385](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.384...v1.1.1-alpha.385) (2022-04-10)
750
-
751
- **Note:** Version bump only for package @adminide-stack/billing-api-server
752
-
753
- ## [1.1.1-alpha.381](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.380...v1.1.1-alpha.381) (2022-04-06)
754
-
755
- **Note:** Version bump only for package @adminide-stack/billing-api-server
756
-
757
- ## [1.1.1-alpha.379](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.378...v1.1.1-alpha.379) (2022-04-03)
758
-
759
- **Note:** Version bump only for package @adminide-stack/billing-api-server
760
-
761
- ## [1.1.1-alpha.378](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.377...v1.1.1-alpha.378) (2022-04-02)
762
-
763
- **Note:** Version bump only for package @adminide-stack/billing-api-server
764
-
765
- ## [1.1.1-alpha.377](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.376...v1.1.1-alpha.377) (2022-04-02)
766
-
767
- **Note:** Version bump only for package @adminide-stack/billing-api-server
768
-
769
- ## [1.1.1-alpha.376](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.375...v1.1.1-alpha.376) (2022-04-02)
770
-
771
- **Note:** Version bump only for package @adminide-stack/billing-api-server
772
-
773
- ## [1.1.1-alpha.374](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.373...v1.1.1-alpha.374) (2022-03-31)
774
-
775
- **Note:** Version bump only for package @adminide-stack/billing-api-server
776
-
777
- ## [1.1.1-alpha.373](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.372...v1.1.1-alpha.373) (2022-03-31)
778
-
779
- **Note:** Version bump only for package @adminide-stack/billing-api-server
780
-
781
- ## [1.1.1-alpha.371](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.370...v1.1.1-alpha.371) (2022-03-31)
782
-
783
- **Note:** Version bump only for package @adminide-stack/billing-api-server
784
-
785
- ## [1.1.1-alpha.370](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.369...v1.1.1-alpha.370) (2022-03-30)
786
-
787
- **Note:** Version bump only for package @adminide-stack/billing-api-server
788
-
789
- ## [1.1.1-alpha.368](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.367...v1.1.1-alpha.368) (2022-03-30)
790
-
791
- **Note:** Version bump only for package @adminide-stack/billing-api-server
792
-
793
- ## [1.1.1-alpha.367](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.366...v1.1.1-alpha.367) (2022-03-30)
794
-
795
- **Note:** Version bump only for package @adminide-stack/billing-api-server
796
-
797
- ## [1.1.1-alpha.366](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.365...v1.1.1-alpha.366) (2022-03-30)
798
-
799
- **Note:** Version bump only for package @adminide-stack/billing-api-server
800
-
801
- ## [1.1.1-alpha.364](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.363...v1.1.1-alpha.364) (2022-03-29)
802
-
803
- **Note:** Version bump only for package @adminide-stack/billing-api-server
804
-
805
- ## [1.1.1-alpha.362](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.361...v1.1.1-alpha.362) (2022-03-29)
806
-
807
- **Note:** Version bump only for package @adminide-stack/billing-api-server
808
-
809
- ## [1.1.1-alpha.361](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.360...v1.1.1-alpha.361) (2022-03-25)
810
-
811
- **Note:** Version bump only for package @adminide-stack/billing-api-server
812
-
813
- ## [1.1.1-alpha.359](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.358...v1.1.1-alpha.359) (2022-03-23)
814
-
815
- **Note:** Version bump only for package @adminide-stack/billing-api-server
816
-
817
- ## [1.1.1-alpha.356](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.355...v1.1.1-alpha.356) (2022-03-22)
818
-
819
- **Note:** Version bump only for package @adminide-stack/billing-api-server
820
-
821
- ## [1.1.1-alpha.354](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.353...v1.1.1-alpha.354) (2022-03-20)
822
-
823
- **Note:** Version bump only for package @adminide-stack/billing-api-server
824
-
825
- ## [1.1.1-alpha.351](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.350...v1.1.1-alpha.351) (2022-03-19)
826
-
827
- **Note:** Version bump only for package @adminide-stack/billing-api-server
828
-
829
- ## [1.1.1-alpha.350](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.349...v1.1.1-alpha.350) (2022-03-18)
830
-
831
- **Note:** Version bump only for package @adminide-stack/billing-api-server
832
-
833
- ## [1.1.1-alpha.349](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.348...v1.1.1-alpha.349) (2022-03-15)
834
-
835
- **Note:** Version bump only for package @adminide-stack/billing-api-server
836
-
837
- ## [1.1.1-alpha.344](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.343...v1.1.1-alpha.344) (2022-03-09)
838
-
839
- **Note:** Version bump only for package @adminide-stack/billing-api-server
840
-
841
- ## [1.1.1-alpha.336](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.335...v1.1.1-alpha.336) (2022-03-08)
842
-
843
- **Note:** Version bump only for package @adminide-stack/billing-api-server
844
-
845
- ## [1.1.1-alpha.330](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.329...v1.1.1-alpha.330) (2022-03-06)
846
-
847
- **Note:** Version bump only for package @adminide-stack/billing-api-server
848
-
849
- ## [1.1.1-alpha.328](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.327...v1.1.1-alpha.328) (2022-03-06)
850
-
851
- **Note:** Version bump only for package @adminide-stack/billing-api-server
852
-
853
- ## [1.1.1-alpha.323](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.322...v1.1.1-alpha.323) (2022-02-27)
854
-
855
- ### Bug Fixes
856
-
857
- - **billing:** stop deCamelizing of promotionCode ([cb66614](https://github.com/cdmbase/adminide-stack/commit/cb66614005da98f34055e050cd96ac3ad9b3b61d))
858
-
859
- ## [1.1.1-alpha.319](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.318...v1.1.1-alpha.319) (2022-02-20)
860
-
861
- **Note:** Version bump only for package @adminide-stack/billing-api-server
862
-
863
- ## [1.1.1-alpha.318](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.317...v1.1.1-alpha.318) (2022-02-19)
864
-
865
- **Note:** Version bump only for package @adminide-stack/billing-api-server
866
-
867
- ## [1.1.1-alpha.316](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.315...v1.1.1-alpha.316) (2022-02-17)
868
-
869
- **Note:** Version bump only for package @adminide-stack/billing-api-server
870
-
871
- ## [1.1.1-alpha.314](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.313...v1.1.1-alpha.314) (2022-02-17)
872
-
873
- **Note:** Version bump only for package @adminide-stack/billing-api-server
874
-
875
- ## [1.1.1-alpha.309](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.308...v1.1.1-alpha.309) (2022-02-12)
876
-
877
- **Note:** Version bump only for package @adminide-stack/billing-api-server
878
-
879
- ## [1.1.1-alpha.308](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.307...v1.1.1-alpha.308) (2022-02-11)
880
-
881
- **Note:** Version bump only for package @adminide-stack/billing-api-server
882
-
883
- ## [1.1.1-alpha.304](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.303...v1.1.1-alpha.304) (2022-02-09)
884
-
885
- **Note:** Version bump only for package @adminide-stack/billing-api-server
886
-
887
- ## [1.1.1-alpha.302](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.301...v1.1.1-alpha.302) (2022-02-08)
888
-
889
- **Note:** Version bump only for package @adminide-stack/billing-api-server
890
-
891
- ## [1.1.1-alpha.301](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.300...v1.1.1-alpha.301) (2022-02-07)
892
-
893
- **Note:** Version bump only for package @adminide-stack/billing-api-server
894
-
895
- ## [1.1.1-alpha.300](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.299...v1.1.1-alpha.300) (2022-02-04)
896
-
897
- **Note:** Version bump only for package @adminide-stack/billing-api-server
898
-
899
- ## [1.1.1-alpha.299](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.298...v1.1.1-alpha.299) (2022-02-02)
900
-
901
- **Note:** Version bump only for package @adminide-stack/billing-api-server
902
-
903
- ## [1.1.1-alpha.297](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.296...v1.1.1-alpha.297) (2022-01-27)
904
-
905
- **Note:** Version bump only for package @adminide-stack/billing-api-server
906
-
907
- ## [1.1.1-alpha.295](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.294...v1.1.1-alpha.295) (2022-01-25)
908
-
909
- **Note:** Version bump only for package @adminide-stack/billing-api-server
910
-
911
- ## [1.1.1-alpha.294](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.293...v1.1.1-alpha.294) (2022-01-24)
912
-
913
- **Note:** Version bump only for package @adminide-stack/billing-api-server
914
-
915
- ## [1.1.1-alpha.288](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.287...v1.1.1-alpha.288) (2022-01-18)
916
-
917
- **Note:** Version bump only for package @adminide-stack/billing-api-server
918
-
919
- ## [1.1.1-alpha.285](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.284...v1.1.1-alpha.285) (2022-01-17)
920
-
921
- **Note:** Version bump only for package @adminide-stack/billing-api-server
922
-
923
- ## [1.1.1-alpha.284](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.283...v1.1.1-alpha.284) (2022-01-15)
924
-
925
- **Note:** Version bump only for package @adminide-stack/billing-api-server
926
-
927
- ## [1.1.1-alpha.283](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.282...v1.1.1-alpha.283) (2022-01-15)
928
-
929
- **Note:** Version bump only for package @adminide-stack/billing-api-server
930
-
931
- ## [1.1.1-alpha.281](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.280...v1.1.1-alpha.281) (2022-01-14)
932
-
933
- ### Features
934
-
935
- - **billing:** charge transfer fee from the preferences ([df904dc](https://github.com/cdmbase/adminide-stack/commit/df904dc5d838c65c17557e1dff91514ae1f78b0f))
936
-
937
- ## [1.1.1-alpha.279](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.278...v1.1.1-alpha.279) (2022-01-14)
938
-
939
- **Note:** Version bump only for package @adminide-stack/billing-api-server
940
-
941
- ## [1.1.1-alpha.277](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.276...v1.1.1-alpha.277) (2022-01-11)
942
-
943
- **Note:** Version bump only for package @adminide-stack/billing-api-server
944
-
945
- ## [1.1.1-alpha.268](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.267...v1.1.1-alpha.268) (2022-01-07)
946
-
947
- **Note:** Version bump only for package @adminide-stack/billing-api-server
948
-
949
- ## [1.1.1-alpha.267](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.266...v1.1.1-alpha.267) (2022-01-07)
950
-
951
- **Note:** Version bump only for package @adminide-stack/billing-api-server
952
-
953
- ## [1.1.1-alpha.265](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.264...v1.1.1-alpha.265) (2022-01-07)
954
-
955
- **Note:** Version bump only for package @adminide-stack/billing-api-server
956
-
957
- ## [1.1.1-alpha.262](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.261...v1.1.1-alpha.262) (2022-01-06)
958
-
959
- **Note:** Version bump only for package @adminide-stack/billing-api-server
960
-
961
- ## [1.1.1-alpha.260](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.259...v1.1.1-alpha.260) (2022-01-06)
962
-
963
- **Note:** Version bump only for package @adminide-stack/billing-api-server
964
-
965
- ## [1.1.1-alpha.257](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.256...v1.1.1-alpha.257) (2022-01-04)
966
-
967
- ### Bug Fixes
968
-
969
- - **billing:** stripe connect resolvers and services ([4719f00](https://github.com/cdmbase/adminide-stack/commit/4719f00103821649e07413d3784463f13ae1a5e4))
970
-
971
- ## [1.1.1-alpha.254](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.253...v1.1.1-alpha.254) (2022-01-02)
972
-
973
- **Note:** Version bump only for package @adminide-stack/billing-api-server
974
-
975
- ## [1.1.1-alpha.253](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.252...v1.1.1-alpha.253) (2022-01-02)
976
-
977
- **Note:** Version bump only for package @adminide-stack/billing-api-server
978
-
979
- ## [1.1.1-alpha.251](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.250...v1.1.1-alpha.251) (2022-01-01)
980
-
981
- **Note:** Version bump only for package @adminide-stack/billing-api-server
982
-
983
- ## [1.1.1-alpha.250](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.249...v1.1.1-alpha.250) (2022-01-01)
984
-
985
- **Note:** Version bump only for package @adminide-stack/billing-api-server
986
-
987
- ## [1.1.1-alpha.249](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.248...v1.1.1-alpha.249) (2021-12-31)
988
-
989
- **Note:** Version bump only for package @adminide-stack/billing-api-server
990
-
991
- ## [1.1.1-alpha.246](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.245...v1.1.1-alpha.246) (2021-12-30)
992
-
993
- ### Bug Fixes
994
-
995
- - resolved paypal issues and also refactored epics ([b44a696](https://github.com/cdmbase/adminide-stack/commit/b44a696de2f1f0532bd291ff555e05027a75c867)), closes [#1467](https://github.com/cdmbase/adminide-stack/issues/1467)
996
-
997
- ## [1.1.1-alpha.237](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.236...v1.1.1-alpha.237) (2021-12-23)
998
-
999
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1000
-
1001
- ## [1.1.1-alpha.231](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.230...v1.1.1-alpha.231) (2021-12-19)
1002
-
1003
- ### Bug Fixes
1004
-
1005
- - **billing:** add default options in the stripe service ([c503d79](https://github.com/cdmbase/adminide-stack/commit/c503d796537cf1f50bb4190c249400c55cabed49))
1006
-
1007
- ## [1.1.1-alpha.220](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.219...v1.1.1-alpha.220) (2021-12-13)
1008
-
1009
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1010
-
1011
- ## [1.1.1-alpha.216](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.215...v1.1.1-alpha.216) (2021-12-09)
1012
-
1013
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1014
-
1015
- ## [1.1.1-alpha.213](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.212...v1.1.1-alpha.213) (2021-12-07)
1016
-
1017
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1018
-
1019
- ## [1.1.1-alpha.210](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.209...v1.1.1-alpha.210) (2021-12-07)
1020
-
1021
- ### Bug Fixes
1022
-
1023
- - **billing:** add missing refund methods ([cd86ba7](https://github.com/cdmbase/adminide-stack/commit/cd86ba748509a82f7afaf42561262cc627f6e0d0))
1024
-
1025
- ## [1.1.1-alpha.209](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.208...v1.1.1-alpha.209) (2021-12-06)
1026
-
1027
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1028
-
1029
- ## [1.1.1-alpha.207](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.206...v1.1.1-alpha.207) (2021-12-05)
1030
-
1031
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1032
-
1033
- ## [1.1.1-alpha.205](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.204...v1.1.1-alpha.205) (2021-12-04)
1034
-
1035
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1036
-
1037
- ## [1.1.1-alpha.203](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.202...v1.1.1-alpha.203) (2021-12-04)
1038
-
1039
- ### Bug Fixes
1040
-
1041
- - **billing:** minor issues in stripe moleculer service ([e4595c8](https://github.com/cdmbase/adminide-stack/commit/e4595c848f6921eb6f60baa94c484e9f05b8cde6))
1042
-
1043
- ## [1.1.1-alpha.202](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.201...v1.1.1-alpha.202) (2021-12-04)
1044
-
1045
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1046
-
1047
- ## [1.1.1-alpha.195](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.194...v1.1.1-alpha.195) (2021-11-30)
1048
-
1049
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1050
-
1051
- ## [1.1.1-alpha.192](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.191...v1.1.1-alpha.192) (2021-11-28)
1052
-
1053
- ### Bug Fixes
1054
-
1055
- - **billing:** moleculer create bug ([b140453](https://github.com/cdmbase/adminide-stack/commit/b1404531c7e8fcdab7d4cd2fffdd519e23a135d0))
1056
-
1057
- ## [1.1.1-alpha.188](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.187...v1.1.1-alpha.188) (2021-11-26)
1058
-
1059
- ### Features
1060
-
1061
- - **billing:** update some stripe methods ([1f944d5](https://github.com/cdmbase/adminide-stack/commit/1f944d58fb402f3fa1d07b3e7b0e67a6f379969a))
1062
-
1063
- ## [1.1.1-alpha.179](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.178...v1.1.1-alpha.179) (2021-11-19)
1064
-
1065
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1066
-
1067
- ## [1.1.1-alpha.178](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.177...v1.1.1-alpha.178) (2021-11-19)
1068
-
1069
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1070
-
1071
- ## [1.1.1-alpha.172](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.171...v1.1.1-alpha.172) (2021-11-16)
1072
-
1073
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1074
-
1075
- ## [1.1.1-alpha.171](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.170...v1.1.1-alpha.171) (2021-11-14)
1076
-
1077
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1078
-
1079
- ## [1.1.1-alpha.170](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.169...v1.1.1-alpha.170) (2021-11-14)
1080
-
1081
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1082
-
1083
- ## [1.1.1-alpha.169](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.168...v1.1.1-alpha.169) (2021-11-13)
1084
-
1085
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1086
-
1087
- ## [1.1.1-alpha.167](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.166...v1.1.1-alpha.167) (2021-11-13)
1088
-
1089
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1090
-
1091
- ## [1.1.1-alpha.165](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.164...v1.1.1-alpha.165) (2021-11-13)
1092
-
1093
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1094
-
1095
- ## [1.1.1-alpha.160](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.159...v1.1.1-alpha.160) (2021-11-12)
1096
-
1097
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1098
-
1099
- ## [1.1.1-alpha.159](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.158...v1.1.1-alpha.159) (2021-11-11)
1100
-
1101
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1102
-
1103
- ## [1.1.1-alpha.156](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.155...v1.1.1-alpha.156) (2021-11-09)
1104
-
1105
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1106
-
1107
- ## [1.1.1-alpha.155](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.154...v1.1.1-alpha.155) (2021-11-08)
1108
-
1109
- ### Bug Fixes
1110
-
1111
- - **billing:** missing customer id for free user ([4a0c32e](https://github.com/cdmbase/adminide-stack/commit/4a0c32e2b65e21ad3a594f7b93cae7a35c4c23e0))
1112
-
1113
- ## [1.1.1-alpha.153](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.152...v1.1.1-alpha.153) (2021-11-07)
1114
-
1115
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1116
-
1117
- ## [1.1.1-alpha.150](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.149...v1.1.1-alpha.150) (2021-11-04)
1118
-
1119
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1120
-
1121
- ## [1.1.1-alpha.149](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.148...v1.1.1-alpha.149) (2021-11-04)
1122
-
1123
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1124
-
1125
- ## [1.1.1-alpha.148](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.147...v1.1.1-alpha.148) (2021-11-03)
1126
-
1127
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1128
-
1129
- ## [1.1.1-alpha.144](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.143...v1.1.1-alpha.144) (2021-11-01)
1130
-
1131
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1132
-
1133
- ## [1.1.1-alpha.140](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.139...v1.1.1-alpha.140) (2021-10-27)
1134
-
1135
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1136
-
1137
- ## [1.1.1-alpha.137](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.136...v1.1.1-alpha.137) (2021-10-26)
1138
-
1139
- ### Bug Fixes
1140
-
1141
- - **billing:** notification template ([c17206c](https://github.com/cdmbase/adminide-stack/commit/c17206c60d2975ab346796d503556396641e8d9f))
1142
-
1143
- ## [1.1.1-alpha.136](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.135...v1.1.1-alpha.136) (2021-10-26)
1144
-
1145
- ### Reverts
1146
-
1147
- - Revert "Move orgId to orgName to get subscription" ([ca45b54](https://github.com/cdmbase/adminide-stack/commit/ca45b54b215f02e6ba2343824c71204199054f84))
1148
-
1149
- ## [1.1.1-alpha.134](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.133...v1.1.1-alpha.134) (2021-10-26)
1150
-
1151
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1152
-
1153
- ## [1.1.1-alpha.133](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.132...v1.1.1-alpha.133) (2021-10-25)
1154
-
1155
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1156
-
1157
- ## [1.1.1-alpha.130](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.129...v1.1.1-alpha.130) (2021-10-23)
1158
-
1159
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1160
-
1161
- ## [1.1.1-alpha.128](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.127...v1.1.1-alpha.128) (2021-10-20)
1162
-
1163
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1164
-
1165
- ## [1.1.1-alpha.126](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.125...v1.1.1-alpha.126) (2021-10-13)
1166
-
1167
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1168
-
1169
- ## [1.1.1-alpha.125](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.124...v1.1.1-alpha.125) (2021-10-11)
1170
-
1171
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1172
-
1173
- ## [1.1.1-alpha.124](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.123...v1.1.1-alpha.124) (2021-10-11)
1174
-
1175
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1176
-
1177
- ## [1.1.1-alpha.123](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.122...v1.1.1-alpha.123) (2021-10-11)
1178
-
1179
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1180
-
1181
- ## [1.1.1-alpha.122](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.121...v1.1.1-alpha.122) (2021-10-11)
1182
-
1183
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1184
-
1185
- ## [1.1.1-alpha.121](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.120...v1.1.1-alpha.121) (2021-10-10)
1186
-
1187
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1188
-
1189
- ## [1.1.1-alpha.120](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.119...v1.1.1-alpha.120) (2021-10-06)
1190
-
1191
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1192
-
1193
- ## [1.1.1-alpha.119](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.118...v1.1.1-alpha.119) (2021-10-05)
1194
-
1195
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1196
-
1197
- ## [1.1.1-alpha.118](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.117...v1.1.1-alpha.118) (2021-10-05)
1198
-
1199
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1200
-
1201
- ## [1.1.1-alpha.117](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.116...v1.1.1-alpha.117) (2021-10-05)
1202
-
1203
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1204
-
1205
- ## [1.1.1-alpha.116](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.115...v1.1.1-alpha.116) (2021-10-04)
1206
-
1207
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1208
-
1209
- ## [1.1.1-alpha.115](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.114...v1.1.1-alpha.115) (2021-10-03)
1210
-
1211
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1212
-
1213
- ## [1.1.1-alpha.111](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.110...v1.1.1-alpha.111) (2021-10-03)
1214
-
1215
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1216
-
1217
- ## [1.1.1-alpha.106](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.105...v1.1.1-alpha.106) (2021-10-02)
1218
-
1219
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1220
-
1221
- ## [1.1.1-alpha.103](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.102...v1.1.1-alpha.103) (2021-09-26)
1222
-
1223
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1224
-
1225
- ## [1.1.1-alpha.102](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.101...v1.1.1-alpha.102) (2021-09-26)
1226
-
1227
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1228
-
1229
- ## [1.1.1-alpha.99](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.98...v1.1.1-alpha.99) (2021-09-21)
1230
-
1231
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1232
-
1233
- ## [1.1.1-alpha.98](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.97...v1.1.1-alpha.98) (2021-09-20)
1234
-
1235
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1236
-
1237
- ## [1.1.1-alpha.97](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.96...v1.1.1-alpha.97) (2021-09-19)
1238
-
1239
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1240
-
1241
- ## [1.1.1-alpha.96](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.95...v1.1.1-alpha.96) (2021-09-17)
1242
-
1243
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1244
-
1245
- ## [1.1.1-alpha.95](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.94...v1.1.1-alpha.95) (2021-09-17)
1246
-
1247
- ### Features
1248
-
1249
- - **billing-server:** add rollup build ([6883676](https://github.com/cdmbase/adminide-stack/commit/68836761162e997dd3c41d3c0c1ca704616cc905))
1250
-
1251
- ## [1.1.1-alpha.92](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.91...v1.1.1-alpha.92) (2021-09-16)
1252
-
1253
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1254
-
1255
- ## [1.1.1-alpha.90](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.89...v1.1.1-alpha.90) (2021-09-14)
1256
-
1257
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1258
-
1259
- ## [1.1.1-alpha.89](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.88...v1.1.1-alpha.89) (2021-09-14)
1260
-
1261
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1262
-
1263
- ## [1.1.1-alpha.88](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.87...v1.1.1-alpha.88) (2021-09-14)
1264
-
1265
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1266
-
1267
- ## [1.1.1-alpha.87](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.86...v1.1.1-alpha.87) (2021-09-14)
1268
-
1269
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1270
-
1271
- ## [1.1.1-alpha.86](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.85...v1.1.1-alpha.86) (2021-09-14)
1272
-
1273
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1274
-
1275
- ## [1.1.1-alpha.81](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.80...v1.1.1-alpha.81) (2021-09-09)
1276
-
1277
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1278
-
1279
- ## [1.1.1-alpha.80](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.79...v1.1.1-alpha.80) (2021-09-09)
1280
-
1281
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1282
-
1283
- ## [1.1.1-alpha.78](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.77...v1.1.1-alpha.78) (2021-09-09)
1284
-
1285
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1286
-
1287
- ## [1.1.1-alpha.69](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.68...v1.1.1-alpha.69) (2021-09-02)
1288
-
1289
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1290
-
1291
- ## [1.1.1-alpha.68](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.67...v1.1.1-alpha.68) (2021-09-01)
1292
-
1293
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1294
-
1295
- ## [1.1.1-alpha.66](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.65...v1.1.1-alpha.66) (2021-09-01)
1296
-
1297
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1298
-
1299
- ## [1.1.1-alpha.64](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.63...v1.1.1-alpha.64) (2021-08-30)
1300
-
1301
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1302
-
1303
- ## [1.1.1-alpha.60](https://github.com/cdmbase/adminide-stack/compare/v1.1.1-alpha.59...v1.1.1-alpha.60) (2021-08-26)
1304
-
1305
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1306
-
1307
- ## [1.1.1-alpha.58](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.57...v1.1.1-alpha.58) (2021-08-26)
1308
-
1309
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1310
-
1311
- ## [1.1.1-alpha.57](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.56...v1.1.1-alpha.57) (2021-08-26)
1312
-
1313
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1314
-
1315
- ## [1.1.1-alpha.56](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.55...v1.1.1-alpha.56) (2021-08-25)
1316
-
1317
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1318
-
1319
- ## [1.1.1-alpha.52](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.51...v1.1.1-alpha.52) (2021-08-24)
1320
-
1321
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1322
-
1323
- ## [1.1.1-alpha.46](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.45...v1.1.1-alpha.46) (2021-08-22)
1324
-
1325
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1326
-
1327
- ## [1.1.1-alpha.45](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.44...v1.1.1-alpha.45) (2021-08-22)
1328
-
1329
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1330
-
1331
- ## [1.1.1-alpha.44](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.43...v1.1.1-alpha.44) (2021-08-21)
1332
-
1333
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1334
-
1335
- ## [1.1.1-alpha.35](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.34...v1.1.1-alpha.35) (2021-08-15)
1336
-
1337
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1338
-
1339
- ## [1.1.1-alpha.33](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.32...v1.1.1-alpha.33) (2021-08-14)
1340
-
1341
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1342
-
1343
- ## [1.1.1-alpha.30](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.29...v1.1.1-alpha.30) (2021-08-14)
1344
-
1345
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1346
-
1347
- ## [1.1.1-alpha.23](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.22...v1.1.1-alpha.23) (2021-08-11)
1348
-
1349
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1350
-
1351
- ## [1.1.1-alpha.22](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.21...v1.1.1-alpha.22) (2021-08-11)
1352
-
1353
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1354
-
1355
- ## [1.1.1-alpha.17](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.16...v1.1.1-alpha.17) (2021-08-08)
1356
-
1357
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1358
-
1359
- ## [1.1.1-alpha.16](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.15...v1.1.1-alpha.16) (2021-08-08)
1360
-
1361
- ### Bug Fixes
1362
-
1363
- - restrict mongoose version ([3f00cbe](https://github.com/cdmbase/adminIde-stack/commit/3f00cbe642655bf6aa7e2459e03bd61c9c7e7a80))
1364
-
1365
- ## [1.1.1-alpha.15](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.14...v1.1.1-alpha.15) (2021-08-06)
1366
-
1367
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1368
-
1369
- ## [1.1.1-alpha.11](https://github.com/cdmbase/adminIde-stack/compare/v1.1.1-alpha.10...v1.1.1-alpha.11) (2021-07-27)
1370
-
1371
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1372
-
1373
- ## [1.1.1-alpha.0](https://github.com/cdmbase/adminIde-stack/compare/v1.1.0-alpha.5...v1.1.1-alpha.0) (2021-07-24)
1374
-
1375
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1376
-
1377
- # [1.1.0-alpha.5](https://github.com/cdmbase/adminIde-stack/compare/v1.1.0-alpha.4...v1.1.0-alpha.5) (2021-07-19)
1378
-
1379
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1380
-
1381
- # [1.1.0-alpha.2](https://github.com/cdmbase/adminIde-stack/compare/v1.1.0-alpha.1...v1.1.0-alpha.2) (2021-07-13)
1382
-
1383
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1384
-
1385
- # [1.1.0-alpha.1](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.120...v1.1.0-alpha.1) (2021-07-13)
1386
-
1387
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1388
-
1389
- ## [0.0.20-alpha.120](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.119...v0.0.20-alpha.120) (2021-07-04)
1390
-
1391
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1392
-
1393
- ## [0.0.20-alpha.119](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.118...v0.0.20-alpha.119) (2021-07-03)
1394
-
1395
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1396
-
1397
- ## [0.0.20-alpha.117](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.116...v0.0.20-alpha.117) (2021-07-01)
1398
-
1399
- ### Features
1400
-
1401
- - make stripe integration compatible with our integration workflow ([a815c28](https://github.com/cdmbase/adminIde-stack/commit/a815c28f53ca14b58f04d0846ffa405a8d4c3f54))
1402
-
1403
- ## [0.0.20-alpha.114](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.113...v0.0.20-alpha.114) (2021-06-29)
1404
-
1405
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1406
-
1407
- ## [0.0.20-alpha.112](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.111...v0.0.20-alpha.112) (2021-06-25)
1408
-
1409
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1410
-
1411
- ## [0.0.20-alpha.110](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.109...v0.0.20-alpha.110) (2021-06-24)
1412
-
1413
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1414
-
1415
- ## [0.0.20-alpha.108](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.107...v0.0.20-alpha.108) (2021-06-23)
1416
-
1417
- ### Features
1418
-
1419
- - add billing plan migrations & policies to multiple modules ([a24102c](https://github.com/cdmbase/adminIde-stack/commit/a24102c5784e8f2fbd70328f4ade1034f0b353c4)), closes [#1175](https://github.com/cdmbase/adminIde-stack/issues/1175)
1420
-
1421
- ## [0.0.20-alpha.105](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.104...v0.0.20-alpha.105) (2021-06-17)
1422
-
1423
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1424
-
1425
- ## [0.0.20-alpha.104](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.103...v0.0.20-alpha.104) (2021-06-17)
1426
-
1427
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1428
-
1429
- ## [0.0.20-alpha.103](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.102...v0.0.20-alpha.103) (2021-06-16)
1430
-
1431
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1432
-
1433
- ## [0.0.20-alpha.101](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.100...v0.0.20-alpha.101) (2021-06-15)
1434
-
1435
- ### Features
1436
-
1437
- - make separate schema for billing plans ([a2e92f4](https://github.com/cdmbase/adminIde-stack/commit/a2e92f456226e53648c7ee450fe5073df29e868a))
1438
-
1439
- ## [0.0.20-alpha.98](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.97...v0.0.20-alpha.98) (2021-06-13)
1440
-
1441
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1442
-
1443
- ## [0.0.20-alpha.97](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.96...v0.0.20-alpha.97) (2021-06-12)
1444
-
1445
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1446
-
1447
- ## [0.0.20-alpha.96](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.95...v0.0.20-alpha.96) (2021-06-12)
1448
-
1449
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1450
-
1451
- ## [0.0.20-alpha.95](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.94...v0.0.20-alpha.95) (2021-06-12)
1452
-
1453
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1454
-
1455
- ## [0.0.20-alpha.93](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.92...v0.0.20-alpha.93) (2021-06-11)
1456
-
1457
- ### Features
1458
-
1459
- - **billing/plans:** move meta data details from plan to resolver ([6274715](https://github.com/cdmbase/adminIde-stack/commit/6274715048d360381baa8ac26f64317bc7f540f1))
1460
-
1461
- ## [0.0.20-alpha.92](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.91...v0.0.20-alpha.92) (2021-06-10)
1462
-
1463
- ### Features
1464
-
1465
- - **migration:** add down migration in all existing migration ([7c040c5](https://github.com/cdmbase/adminIde-stack/commit/7c040c587cf805bf0ed513620075384e1e40a35e))
1466
-
1467
- ## [0.0.20-alpha.91](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.90...v0.0.20-alpha.91) (2021-06-10)
1468
-
1469
- ### Features
1470
-
1471
- - **billing:** add dynamic configuration policies inside plan meta data ([75b113d](https://github.com/cdmbase/adminIde-stack/commit/75b113d2fccedba59a43b79ea584a8c75ba077e3)), closes [#1116](https://github.com/cdmbase/adminIde-stack/issues/1116)
1472
-
1473
- ## [0.0.20-alpha.90](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.89...v0.0.20-alpha.90) (2021-06-10)
1474
-
1475
- ### Bug Fixes
1476
-
1477
- - update templates to have templateId to avoid null code error ([e5fb37c](https://github.com/cdmbase/adminIde-stack/commit/e5fb37c6ea38b052981974eba600f00629f218ce)), closes [#1137](https://github.com/cdmbase/adminIde-stack/issues/1137)
1478
-
1479
- ## [0.0.20-alpha.85](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.84...v0.0.20-alpha.85) (2021-06-05)
1480
-
1481
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1482
-
1483
- ## [0.0.20-alpha.80](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.79...v0.0.20-alpha.80) (2021-06-03)
1484
-
1485
- ### Bug Fixes
1486
-
1487
- - call moleculer service for stripe migrations ([96a33bb](https://github.com/cdmbase/adminIde-stack/commit/96a33bb366bb9c40cf784facf7698c2aaed3cb25)), closes [#1116](https://github.com/cdmbase/adminIde-stack/issues/1116)
1488
- - **backend-server:** sequence of stripe and template migrations ([2ce7bfd](https://github.com/cdmbase/adminIde-stack/commit/2ce7bfdc09b72b4a85780beda6c8dd7b437dd989))
1489
-
1490
- ## [0.0.20-alpha.79](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.78...v0.0.20-alpha.79) (2021-06-02)
1491
-
1492
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1493
-
1494
- ## [0.0.20-alpha.78](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.77...v0.0.20-alpha.78) (2021-06-02)
1495
-
1496
- ### Bug Fixes
1497
-
1498
- - **billing:** metadata issue in the plans ([4a2f4f7](https://github.com/cdmbase/adminIde-stack/commit/4a2f4f7615bc0c23027373f7a89371550693aa03))
1499
-
1500
- ### Features
1501
-
1502
- - **billing:** add billing plan and products db migrations ([8018d91](https://github.com/cdmbase/adminIde-stack/commit/8018d9187de04f6cbb9a0085cca05e9f96cf5e6a)), closes [#1116](https://github.com/cdmbase/adminIde-stack/issues/1116)
1503
-
1504
- ## [0.0.20-alpha.74](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.73...v0.0.20-alpha.74) (2021-05-31)
1505
-
1506
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1507
-
1508
- ## [0.0.20-alpha.73](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.72...v0.0.20-alpha.73) (2021-05-30)
1509
-
1510
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1511
-
1512
- ## [0.0.20-alpha.72](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.71...v0.0.20-alpha.72) (2021-05-29)
1513
-
1514
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1515
-
1516
- ## [0.0.20-alpha.70](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.69...v0.0.20-alpha.70) (2021-05-28)
1517
-
1518
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1519
-
1520
- ## [0.0.20-alpha.69](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.68...v0.0.20-alpha.69) (2021-05-28)
1521
-
1522
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1523
-
1524
- ## [0.0.20-alpha.68](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.67...v0.0.20-alpha.68) (2021-05-27)
1525
-
1526
- ### Bug Fixes
1527
-
1528
- - **billing:** fetching all invoices in case of no customer ([67cfccb](https://github.com/cdmbase/adminIde-stack/commit/67cfccb7e081162bf0c1d5356db7177ccb82c8c4))
1529
-
1530
- ## [0.0.20-alpha.66](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.65...v0.0.20-alpha.66) (2021-05-26)
1531
-
1532
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1533
-
1534
- ## [0.0.20-alpha.65](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.64...v0.0.20-alpha.65) (2021-05-26)
1535
-
1536
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1537
-
1538
- ## [0.0.20-alpha.64](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.63...v0.0.20-alpha.64) (2021-05-26)
1539
-
1540
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1541
-
1542
- ## [0.0.20-alpha.58](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.57...v0.0.20-alpha.58) (2021-05-24)
1543
-
1544
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1545
-
1546
- ## [0.0.20-alpha.57](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.56...v0.0.20-alpha.57) (2021-05-23)
1547
-
1548
- ### Features
1549
-
1550
- - **configuration:** add support for readOnly and disabled options in configuration ([38711e4](https://github.com/cdmbase/adminIde-stack/commit/38711e40149a6822df30d28d962a35970a093a5f)), closes [#1136](https://github.com/cdmbase/adminIde-stack/issues/1136)
1551
-
1552
- ## [0.0.20-alpha.56](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.55...v0.0.20-alpha.56) (2021-05-22)
1553
-
1554
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1555
-
1556
- ## [0.0.20-alpha.54](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.53...v0.0.20-alpha.54) (2021-05-21)
1557
-
1558
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1559
-
1560
- ## [0.0.20-alpha.53](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.52...v0.0.20-alpha.53) (2021-05-21)
1561
-
1562
- ### Bug Fixes
1563
-
1564
- - **billing/invoices:** add missing invoices status ([72c3196](https://github.com/cdmbase/adminIde-stack/commit/72c3196f824eaeb0129aa90249fe5ae9cdcba61f)), closes [#1104](https://github.com/cdmbase/adminIde-stack/issues/1104)
1565
-
1566
- ### Features
1567
-
1568
- - **billing:** handle free plans with policy only ([cbb8f5f](https://github.com/cdmbase/adminIde-stack/commit/cbb8f5f68072edf04c403a694aa9712d2cada609))
1569
-
1570
- ## [0.0.20-alpha.50](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.49...v0.0.20-alpha.50) (2021-05-19)
1571
-
1572
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1573
-
1574
- ## [0.0.20-alpha.48](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.47...v0.0.20-alpha.48) (2021-05-18)
1575
-
1576
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1577
-
1578
- ## [0.0.20-alpha.47](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.46...v0.0.20-alpha.47) (2021-05-17)
1579
-
1580
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1581
-
1582
- ## [0.0.20-alpha.43](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.42...v0.0.20-alpha.43) (2021-05-11)
1583
-
1584
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1585
-
1586
- ## [0.0.20-alpha.42](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.41...v0.0.20-alpha.42) (2021-05-09)
1587
-
1588
- ### Bug Fixes
1589
-
1590
- - **billing:** change plan subscription changes ([48ec431](https://github.com/cdmbase/adminIde-stack/commit/48ec43174967cdec738f8ffa69eb102029c9d6ad)), closes [#1104](https://github.com/cdmbase/adminIde-stack/issues/1104)
1591
- - hide invoices with 0 amount ([2c05c52](https://github.com/cdmbase/adminIde-stack/commit/2c05c52aafdd5eb98008eddc16140f7c5ac849d2))
1592
-
1593
- ## [0.0.20-alpha.39](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.38...v0.0.20-alpha.39) (2021-05-05)
1594
-
1595
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1596
-
1597
- ## [0.0.20-alpha.38](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.37...v0.0.20-alpha.38) (2021-05-05)
1598
-
1599
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1600
-
1601
- ## [0.0.20-alpha.37](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.36...v0.0.20-alpha.37) (2021-05-04)
1602
-
1603
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1604
-
1605
- ## [0.0.20-alpha.35](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.34...v0.0.20-alpha.35) (2021-05-04)
1606
-
1607
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1608
-
1609
- ## [0.0.20-alpha.34](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.33...v0.0.20-alpha.34) (2021-05-04)
1610
-
1611
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1612
-
1613
- ## [0.0.20-alpha.32](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.31...v0.0.20-alpha.32) (2021-05-03)
1614
-
1615
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1616
-
1617
- ## [0.0.20-alpha.30](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.29...v0.0.20-alpha.30) (2021-05-02)
1618
-
1619
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1620
-
1621
- ## [0.0.20-alpha.28](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.27...v0.0.20-alpha.28) (2021-05-01)
1622
-
1623
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1624
-
1625
- ## [0.0.20-alpha.27](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.26...v0.0.20-alpha.27) (2021-05-01)
1626
-
1627
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1628
-
1629
- ## [0.0.20-alpha.26](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.25...v0.0.20-alpha.26) (2021-05-01)
1630
-
1631
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1632
-
1633
- ## [0.0.20-alpha.25](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.24...v0.0.20-alpha.25) (2021-05-01)
1634
-
1635
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1636
-
1637
- ## [0.0.20-alpha.24](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.23...v0.0.20-alpha.24) (2021-04-29)
1638
-
1639
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1640
-
1641
- ## [0.0.20-alpha.22](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.21...v0.0.20-alpha.22) (2021-04-28)
1642
-
1643
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1644
-
1645
- ## [0.0.20-alpha.21](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.20...v0.0.20-alpha.21) (2021-04-27)
1646
-
1647
- ### Bug Fixes
1648
-
1649
- - **paypal-integration:** update custom Oauth integration ([13fe09a](https://github.com/cdmbase/adminIde-stack/commit/13fe09ac274fca29cd4465596783e47b456f55d4))
1650
-
1651
- ### Features
1652
-
1653
- - **billing:** add paypal integration configuration ([2577565](https://github.com/cdmbase/adminIde-stack/commit/2577565d0f75153471ef5d0e5e9eb288cb583f58))
1654
-
1655
- ## [0.0.20-alpha.11](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.10...v0.0.20-alpha.11) (2021-04-23)
1656
-
1657
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1658
-
1659
- ## [0.0.20-alpha.10](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.9...v0.0.20-alpha.10) (2021-04-23)
1660
-
1661
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1662
-
1663
- ## [0.0.20-alpha.5](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.4...v0.0.20-alpha.5) (2021-04-21)
1664
-
1665
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1666
-
1667
- ## [0.0.20-alpha.4](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.3...v0.0.20-alpha.4) (2021-04-21)
1668
-
1669
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1670
-
1671
- ## [0.0.20-alpha.3](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.2...v0.0.20-alpha.3) (2021-04-21)
1672
-
1673
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1674
-
1675
- ## [0.0.20-alpha.2](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.1...v0.0.20-alpha.2) (2021-04-21)
1676
-
1677
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1678
-
1679
- ## [0.0.20-alpha.1](https://github.com/cdmbase/adminIde-stack/compare/v0.0.20-alpha.0...v0.0.20-alpha.1) (2021-04-21)
1680
-
1681
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1682
-
1683
- ## [0.0.20-alpha.0](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.477...v0.0.20-alpha.0) (2021-04-21)
1684
-
1685
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1686
-
1687
- ## [0.0.1-alpha.0](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.477...v0.0.1-alpha.0) (2021-04-21)
1688
-
1689
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1690
-
1691
- ## [0.0.18-alpha.474](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.473...v0.0.18-alpha.474) (2021-04-19)
1692
-
1693
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1694
-
1695
- ## [0.0.18-alpha.470](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.469...v0.0.18-alpha.470) (2021-04-17)
1696
-
1697
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1698
-
1699
- ## [0.0.18-alpha.469](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.468...v0.0.18-alpha.469) (2021-04-15)
1700
-
1701
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1702
-
1703
- ## [0.0.18-alpha.464](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.463...v0.0.18-alpha.464) (2021-04-12)
1704
-
1705
- ### Features
1706
-
1707
- - **billing:** add paypal payout integration ([bc1db34](https://github.com/cdmbase/adminIde-stack/commit/bc1db3423b2c47b4babbbee9492fe36cba6fba2b))
1708
-
1709
- ## [0.0.18-alpha.462](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.461...v0.0.18-alpha.462) (2021-04-10)
1710
-
1711
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1712
-
1713
- ## [0.0.18-alpha.457](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.456...v0.0.18-alpha.457) (2021-04-07)
1714
-
1715
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1716
-
1717
- ## [0.0.18-alpha.456](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.455...v0.0.18-alpha.456) (2021-04-06)
1718
-
1719
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1720
-
1721
- ## [0.0.18-alpha.455](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.454...v0.0.18-alpha.455) (2021-04-06)
1722
-
1723
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1724
-
1725
- ## [0.0.18-alpha.453](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.452...v0.0.18-alpha.453) (2021-04-05)
1726
-
1727
- ### Bug Fixes
1728
-
1729
- - **billing:** replace &lt and &gt text with appropriate signs of <, > ([5a8e9e2](https://github.com/cdmbase/adminIde-stack/commit/5a8e9e2de8d7a89288bf08bde4ffedc46b2a0fcb))
1730
-
1731
- ## [0.0.18-alpha.452](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.451...v0.0.18-alpha.452) (2021-04-04)
1732
-
1733
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1734
-
1735
- ## [0.0.18-alpha.451](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.450...v0.0.18-alpha.451) (2021-04-04)
1736
-
1737
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1738
-
1739
- ## [0.0.18-alpha.449](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.448...v0.0.18-alpha.449) (2021-04-02)
1740
-
1741
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1742
-
1743
- ## [0.0.18-alpha.448](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.447...v0.0.18-alpha.448) (2021-04-01)
1744
-
1745
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1746
-
1747
- ## [0.0.18-alpha.447](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.446...v0.0.18-alpha.447) (2021-03-30)
1748
-
1749
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1750
-
1751
- ## [0.0.18-alpha.446](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.445...v0.0.18-alpha.446) (2021-03-30)
1752
-
1753
- ### Features
1754
-
1755
- - **registry-api:** add api management backend ([a0f3921](https://github.com/cdmbase/adminIde-stack/commit/a0f392153b686e1bdfaae4f3823ab17085684067)), closes [#1003](https://github.com/cdmbase/adminIde-stack/issues/1003)
1756
-
1757
- ## [0.0.18-alpha.444](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.443...v0.0.18-alpha.444) (2021-03-28)
1758
-
1759
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1760
-
1761
- ## [0.0.18-alpha.439](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.438...v0.0.18-alpha.439) (2021-03-23)
1762
-
1763
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1764
-
1765
- ## [0.0.18-alpha.438](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.437...v0.0.18-alpha.438) (2021-03-23)
1766
-
1767
- ### Features
1768
-
1769
- - **billing-api:** add scheduler to limit Stripe API calls according to rate limit ([284f460](https://github.com/cdmbase/adminIde-stack/commit/284f460a21dad135eaef02677a7abc9833a0c3d9)), closes [#10101](https://github.com/cdmbase/adminIde-stack/issues/10101)
1770
-
1771
- ## [0.0.18-alpha.436](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.435...v0.0.18-alpha.436) (2021-03-22)
1772
-
1773
- ### Features
1774
-
1775
- - **billing:** add email template for all the billing related notification emails ([3473ea5](https://github.com/cdmbase/adminIde-stack/commit/3473ea5857224348c6bc44fe2308eadf550086b2)), closes [#793](https://github.com/cdmbase/adminIde-stack/issues/793)
1776
-
1777
- ## [0.0.18-alpha.435](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.434...v0.0.18-alpha.435) (2021-03-22)
1778
-
1779
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1780
-
1781
- ## [0.0.18-alpha.434](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.433...v0.0.18-alpha.434) (2021-03-21)
1782
-
1783
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1784
-
1785
- ## [0.0.18-alpha.433](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.432...v0.0.18-alpha.433) (2021-03-21)
1786
-
1787
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1788
-
1789
- ## [0.0.18-alpha.431](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.430...v0.0.18-alpha.431) (2021-03-19)
1790
-
1791
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1792
-
1793
- ## [0.0.18-alpha.429](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.428...v0.0.18-alpha.429) (2021-03-19)
1794
-
1795
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1796
-
1797
- ## [0.0.18-alpha.428](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.427...v0.0.18-alpha.428) (2021-03-19)
1798
-
1799
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1800
-
1801
- ## [0.0.18-alpha.427](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.426...v0.0.18-alpha.427) (2021-03-19)
1802
-
1803
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1804
-
1805
- ## [0.0.18-alpha.425](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.424...v0.0.18-alpha.425) (2021-03-19)
1806
-
1807
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1808
-
1809
- ## [0.0.18-alpha.423](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.422...v0.0.18-alpha.423) (2021-03-18)
1810
-
1811
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1812
-
1813
- ## [0.0.18-alpha.422](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.421...v0.0.18-alpha.422) (2021-03-17)
1814
-
1815
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1816
-
1817
- ## [0.0.18-alpha.421](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.420...v0.0.18-alpha.421) (2021-03-17)
1818
-
1819
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1820
-
1821
- ## [0.0.18-alpha.420](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.419...v0.0.18-alpha.420) (2021-03-17)
1822
-
1823
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1824
-
1825
- ## [0.0.18-alpha.418](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.417...v0.0.18-alpha.418) (2021-03-15)
1826
-
1827
- ### Features
1828
-
1829
- - **billing:** add payout options for stripe ([cc6dd18](https://github.com/cdmbase/adminIde-stack/commit/cc6dd18a9004365925a46e544e453967227afbc1)), closes [#989](https://github.com/cdmbase/adminIde-stack/issues/989)
1830
-
1831
- ## [0.0.18-alpha.417](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.416...v0.0.18-alpha.417) (2021-03-10)
1832
-
1833
- ### Features
1834
-
1835
- - **billing/payment-integrations:** add external account crud and dashboard ([4b5b267](https://github.com/cdmbase/adminIde-stack/commit/4b5b2675ae1a4a9a32573f4606f37b647cdc319a)), closes [#989](https://github.com/cdmbase/adminIde-stack/issues/989)
1836
-
1837
- ## [0.0.18-alpha.412](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.411...v0.0.18-alpha.412) (2021-03-09)
1838
-
1839
- ### Features
1840
-
1841
- - **billing/payment-integration:** add paypal payment integration ([de13feb](https://github.com/cdmbase/adminIde-stack/commit/de13feb94b8556b57c7ae3301ed1fd2541e33d8c))
1842
-
1843
- ## [0.0.18-alpha.407](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.406...v0.0.18-alpha.407) (2021-03-04)
1844
-
1845
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1846
-
1847
- ## [0.0.18-alpha.404](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.403...v0.0.18-alpha.404) (2021-03-04)
1848
-
1849
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1850
-
1851
- ## [0.0.18-alpha.397](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.396...v0.0.18-alpha.397) (2021-02-28)
1852
-
1853
- ### Features
1854
-
1855
- - **billing/payment-transfer:** add payment method step ([8a6b87e](https://github.com/cdmbase/adminIde-stack/commit/8a6b87e23f2512e6f41f3178eda9b7ef4574a0a3))
1856
-
1857
- ## [0.0.18-alpha.390](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.389...v0.0.18-alpha.390) (2021-02-25)
1858
-
1859
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1860
-
1861
- ## [0.0.18-alpha.389](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.388...v0.0.18-alpha.389) (2021-02-25)
1862
-
1863
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1864
-
1865
- ## [0.0.18-alpha.387](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.386...v0.0.18-alpha.387) (2021-02-22)
1866
-
1867
- ### Features
1868
-
1869
- - **billing/payment-profile:** add transfer between two stripe connect accounts ([5c25adf](https://github.com/cdmbase/adminIde-stack/commit/5c25adf86f744a89f64992d791676c93eb114e9c))
1870
-
1871
- ## [0.0.18-alpha.386](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.385...v0.0.18-alpha.386) (2021-02-20)
1872
-
1873
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1874
-
1875
- ## [0.0.18-alpha.385](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.384...v0.0.18-alpha.385) (2021-02-18)
1876
-
1877
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1878
-
1879
- ## [0.0.18-alpha.384](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.383...v0.0.18-alpha.384) (2021-02-18)
1880
-
1881
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1882
-
1883
- ## [0.0.18-alpha.382](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.381...v0.0.18-alpha.382) (2021-02-17)
1884
-
1885
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1886
-
1887
- ## [0.0.18-alpha.381](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.380...v0.0.18-alpha.381) (2021-02-16)
1888
-
1889
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1890
-
1891
- ## [0.0.18-alpha.380](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.379...v0.0.18-alpha.380) (2021-02-16)
1892
-
1893
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1894
-
1895
- ## [0.0.18-alpha.377](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.376...v0.0.18-alpha.377) (2021-02-14)
1896
-
1897
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1898
-
1899
- ## [0.0.18-alpha.376](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.375...v0.0.18-alpha.376) (2021-02-13)
1900
-
1901
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1902
-
1903
- ## [0.0.18-alpha.374](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.373...v0.0.18-alpha.374) (2021-02-12)
1904
-
1905
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1906
-
1907
- ## [0.0.18-alpha.373](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.372...v0.0.18-alpha.373) (2021-02-12)
1908
-
1909
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1910
-
1911
- ## [0.0.18-alpha.372](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.371...v0.0.18-alpha.372) (2021-02-12)
1912
-
1913
- ### Features
1914
-
1915
- - **billing:** add payment profiles & stripe connect integration ([5836c0b](https://github.com/cdmbase/adminIde-stack/commit/5836c0b0d43611908d13c929f0de18be351f5e1e))
1916
-
1917
- ## [0.0.18-alpha.371](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.370...v0.0.18-alpha.371) (2021-02-12)
1918
-
1919
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1920
-
1921
- ## [0.0.18-alpha.370](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.369...v0.0.18-alpha.370) (2021-02-10)
1922
-
1923
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1924
-
1925
- ## [0.0.18-alpha.366](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.365...v0.0.18-alpha.366) (2021-02-09)
1926
-
1927
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1928
-
1929
- ## [0.0.18-alpha.364](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.363...v0.0.18-alpha.364) (2021-02-08)
1930
-
1931
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1932
-
1933
- ## [0.0.18-alpha.359](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.358...v0.0.18-alpha.359) (2021-02-07)
1934
-
1935
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1936
-
1937
- ## [0.0.18-alpha.358](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.357...v0.0.18-alpha.358) (2021-02-05)
1938
-
1939
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1940
-
1941
- ## [0.0.18-alpha.357](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.356...v0.0.18-alpha.357) (2021-02-04)
1942
-
1943
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1944
-
1945
- ## [0.0.18-alpha.352](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.351...v0.0.18-alpha.352) (2021-02-04)
1946
-
1947
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1948
-
1949
- ## [0.0.18-alpha.351](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.350...v0.0.18-alpha.351) (2021-01-27)
1950
-
1951
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1952
-
1953
- ## [0.0.18-alpha.350](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.349...v0.0.18-alpha.350) (2021-01-26)
1954
-
1955
- ### Features
1956
-
1957
- - **billing:** store per container storage in policy ([bd23ff4](https://github.com/cdmbase/adminIde-stack/commit/bd23ff4436e6bda9b374860b7f872fc42cb024bc))
1958
-
1959
- ## [0.0.18-alpha.349](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.348...v0.0.18-alpha.349) (2021-01-25)
1960
-
1961
- ### Features
1962
-
1963
- - **billing:** add separate pricing for containers storage ([0e57053](https://github.com/cdmbase/adminIde-stack/commit/0e570537ffb383a5c040db94b02feb57f2f1210f))
1964
-
1965
- ## [0.0.18-alpha.348](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.347...v0.0.18-alpha.348) (2021-01-23)
1966
-
1967
- ### Features
1968
-
1969
- - **billing-api:** add types and docs to stripe plans ([22fce98](https://github.com/cdmbase/adminIde-stack/commit/22fce987118d356fe6e24ed0047a31df14ff4865))
1970
-
1971
- ## [0.0.18-alpha.347](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.346...v0.0.18-alpha.347) (2021-01-22)
1972
-
1973
- ### Features
1974
-
1975
- - **billing:** store prev and current subscription ([351256f](https://github.com/cdmbase/adminIde-stack/commit/351256f737966865856045fe8f198a728d11180d)), closes [#919](https://github.com/cdmbase/adminIde-stack/issues/919)
1976
-
1977
- ## [0.0.18-alpha.346](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.345...v0.0.18-alpha.346) (2021-01-22)
1978
-
1979
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1980
-
1981
- ## [0.0.18-alpha.345](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.344...v0.0.18-alpha.345) (2021-01-20)
1982
-
1983
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1984
-
1985
- ## [0.0.18-alpha.344](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.343...v0.0.18-alpha.344) (2021-01-18)
1986
-
1987
- ### Features
1988
-
1989
- - **billing:** add users in subscription plans ([c54a9ae](https://github.com/cdmbase/adminIde-stack/commit/c54a9ae5c2bf59141f08b2fa1f52243329630afe)), closes [#872](https://github.com/cdmbase/adminIde-stack/issues/872)
1990
-
1991
- ## [0.0.18-alpha.341](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.340...v0.0.18-alpha.341) (2021-01-15)
1992
-
1993
- **Note:** Version bump only for package @adminide-stack/billing-api-server
1994
-
1995
- ## [0.0.18-alpha.340](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.339...v0.0.18-alpha.340) (2021-01-13)
1996
-
1997
- ### Features
1998
-
1999
- - **billing:** add status in billing schema ([6254c5a](https://github.com/cdmbase/adminIde-stack/commit/6254c5ae5d8f783c9e9d692d1154ac4d8e6a8165)), closes [#875](https://github.com/cdmbase/adminIde-stack/issues/875)
2000
-
2001
- ## [0.0.18-alpha.339](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.338...v0.0.18-alpha.339) (2021-01-13)
2002
-
2003
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2004
-
2005
- ## [0.0.18-alpha.338](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.337...v0.0.18-alpha.338) (2021-01-12)
2006
-
2007
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2008
-
2009
- ## [0.0.18-alpha.337](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.336...v0.0.18-alpha.337) (2021-01-11)
2010
-
2011
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2012
-
2013
- ## [0.0.18-alpha.336](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.335...v0.0.18-alpha.336) (2021-01-11)
2014
-
2015
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2016
-
2017
- ## [0.0.18-alpha.335](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.334...v0.0.18-alpha.335) (2021-01-10)
2018
-
2019
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2020
-
2021
- ## [0.0.18-alpha.334](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.333...v0.0.18-alpha.334) (2021-01-10)
2022
-
2023
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2024
-
2025
- ## [0.0.18-alpha.328](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.327...v0.0.18-alpha.328) (2021-01-07)
2026
-
2027
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2028
-
2029
- ## [0.0.18-alpha.325](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.324...v0.0.18-alpha.325) (2021-01-06)
2030
-
2031
- ### Features
2032
-
2033
- - **billing:** make stripe migrations optional ([63e89a5](https://github.com/cdmbase/adminIde-stack/commit/63e89a5d8f74cfd0afea5cbe4da87594074a6273))
2034
-
2035
- ## [0.0.18-alpha.324](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.323...v0.0.18-alpha.324) (2021-01-06)
2036
-
2037
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2038
-
2039
- ## [0.0.18-alpha.321](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.320...v0.0.18-alpha.321) (2021-01-05)
2040
-
2041
- ### Bug Fixes
2042
-
2043
- - **billing:** policy not being updated correctly after plan change ([7d47f54](https://github.com/cdmbase/adminIde-stack/commit/7d47f54e2efc0b299235667943e5f557bc8bd4bf))
2044
-
2045
- ## [0.0.18-alpha.318](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.317...v0.0.18-alpha.318) (2021-01-05)
2046
-
2047
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2048
-
2049
- ## [0.0.18-alpha.315](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.314...v0.0.18-alpha.315) (2021-01-01)
2050
-
2051
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2052
-
2053
- ## [0.0.18-alpha.314](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.313...v0.0.18-alpha.314) (2020-12-27)
2054
-
2055
- ### Features
2056
-
2057
- - **billing:** add route to plan page in policies ([0e26d36](https://github.com/cdmbase/adminIde-stack/commit/0e26d360b2c4e3676184ed38e3575742d8701f93)), closes [#806](https://github.com/cdmbase/adminIde-stack/issues/806)
2058
-
2059
- ## [0.0.18-alpha.313](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.312...v0.0.18-alpha.313) (2020-12-25)
2060
-
2061
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2062
-
2063
- ## [0.0.18-alpha.312](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.311...v0.0.18-alpha.312) (2020-12-25)
2064
-
2065
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2066
-
2067
- ## [0.0.18-alpha.311](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.310...v0.0.18-alpha.311) (2020-12-23)
2068
-
2069
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2070
-
2071
- ## [0.0.18-alpha.309](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.308...v0.0.18-alpha.309) (2020-12-22)
2072
-
2073
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2074
-
2075
- ## [0.0.18-alpha.307](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.306...v0.0.18-alpha.307) (2020-12-21)
2076
-
2077
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2078
-
2079
- ## [0.0.18-alpha.306](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.305...v0.0.18-alpha.306) (2020-12-20)
2080
-
2081
- ### Bug Fixes
2082
-
2083
- - **billing:** add all previous plans as deprecated plans ([858970f](https://github.com/cdmbase/adminIde-stack/commit/858970f3c99762e9f4b164e70e2f234da84b5def))
2084
- - **billing:** update tier policy value along with others ([f67ec0f](https://github.com/cdmbase/adminIde-stack/commit/f67ec0f43f01c9c4e43f554882c02be7fb71d1db))
2085
-
2086
- ## [0.0.18-alpha.305](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.304...v0.0.18-alpha.305) (2020-12-20)
2087
-
2088
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2089
-
2090
- ## [0.0.18-alpha.304](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.303...v0.0.18-alpha.304) (2020-12-20)
2091
-
2092
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2093
-
2094
- ## [0.0.18-alpha.303](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.302...v0.0.18-alpha.303) (2020-12-19)
2095
-
2096
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2097
-
2098
- ## [0.0.18-alpha.300](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.299...v0.0.18-alpha.300) (2020-12-16)
2099
-
2100
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2101
-
2102
- ## [0.0.18-alpha.299](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.298...v0.0.18-alpha.299) (2020-12-15)
2103
-
2104
- ### Features
2105
-
2106
- - **billing:** notify users and revert back to free plan ([979f849](https://github.com/cdmbase/adminIde-stack/commit/979f8499c2868c7acb0c1ffb7b7146331e56e9be))
2107
-
2108
- ## [0.0.18-alpha.297](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.296...v0.0.18-alpha.297) (2020-12-13)
2109
-
2110
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2111
-
2112
- ## [0.0.18-alpha.296](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.295...v0.0.18-alpha.296) (2020-12-12)
2113
-
2114
- ### Features
2115
-
2116
- - **billing:** add pro plans in migrations ([dc5af41](https://github.com/cdmbase/adminIde-stack/commit/dc5af414fa299bdf4fa3a045fc90cab1c13f214e))
2117
-
2118
- ### Reverts
2119
-
2120
- - **billing:** treat pro plan as archive unless all cli copies gets updated ([ec5b0c3](https://github.com/cdmbase/adminIde-stack/commit/ec5b0c320a0695fe705145cc1495ae3b51295fe8))
2121
-
2122
- ## [0.0.18-alpha.295](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.294...v0.0.18-alpha.295) (2020-12-12)
2123
-
2124
- ### Bug Fixes
2125
-
2126
- - treat pro plan as archive unless all cli copies gets updated ([4158bcf](https://github.com/cdmbase/adminIde-stack/commit/4158bcf2dff2ba740f89d5a673051a7d63f0c0c8))
2127
-
2128
- ## [0.0.18-alpha.293](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.292...v0.0.18-alpha.293) (2020-12-12)
2129
-
2130
- ### Features
2131
-
2132
- - **billing:** add support to archive plans ([7de4665](https://github.com/cdmbase/adminIde-stack/commit/7de4665ebd648fd1228736665e27f00879f4a084))
2133
- - **billing:** introduced new payment plans ([f269aa5](https://github.com/cdmbase/adminIde-stack/commit/f269aa50f50b1177b234c98da93aefb1aeaf0f2b))
2134
-
2135
- ## [0.0.18-alpha.291](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.290...v0.0.18-alpha.291) (2020-12-07)
2136
-
2137
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2138
-
2139
- ## [0.0.18-alpha.290](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.289...v0.0.18-alpha.290) (2020-12-06)
2140
-
2141
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2142
-
2143
- ## [0.0.18-alpha.286](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.285...v0.0.18-alpha.286) (2020-12-03)
2144
-
2145
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2146
-
2147
- ## [0.0.18-alpha.284](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.283...v0.0.18-alpha.284) (2020-12-02)
2148
-
2149
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2150
-
2151
- ## [0.0.18-alpha.283](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.282...v0.0.18-alpha.283) (2020-12-02)
2152
-
2153
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2154
-
2155
- ## [0.0.18-alpha.282](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.281...v0.0.18-alpha.282) (2020-12-02)
2156
-
2157
- ### Features
2158
-
2159
- - **billing:** send billing notification to users with specific roles ([bea03a7](https://github.com/cdmbase/adminIde-stack/commit/bea03a73ee98b9bb846aace79fabe6f54a174382))
2160
- - **billing:** setup notification for Plan changes ([6e255fd](https://github.com/cdmbase/adminIde-stack/commit/6e255fd4a11750679c678ec82d2cbe7976cef03c))
2161
-
2162
- ## [0.0.18-alpha.281](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.280...v0.0.18-alpha.281) (2020-12-01)
2163
-
2164
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2165
-
2166
- ## [0.0.18-alpha.280](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.279...v0.0.18-alpha.280) (2020-12-01)
2167
-
2168
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2169
-
2170
- ## [0.0.18-alpha.279](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.278...v0.0.18-alpha.279) (2020-12-01)
2171
-
2172
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2173
-
2174
- ## [0.0.18-alpha.277](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.276...v0.0.18-alpha.277) (2020-11-30)
2175
-
2176
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2177
-
2178
- ## [0.0.18-alpha.275](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.274...v0.0.18-alpha.275) (2020-11-28)
2179
-
2180
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2181
-
2182
- ## [0.0.18-alpha.272](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.271...v0.0.18-alpha.272) (2020-11-25)
2183
-
2184
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2185
-
2186
- ## [0.0.18-alpha.271](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.270...v0.0.18-alpha.271) (2020-11-25)
2187
-
2188
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2189
-
2190
- ## [0.0.18-alpha.270](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.269...v0.0.18-alpha.270) (2020-11-24)
2191
-
2192
- ### Features
2193
-
2194
- - **roles-n-permissions:** add new role and permissions, add permissions in preferences UI ([cf5fa21](https://github.com/cdmbase/adminIde-stack/commit/cf5fa212712a3343d16ddcaf17e88f35c82e7693))
2195
-
2196
- ## [0.0.18-alpha.265](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.264...v0.0.18-alpha.265) (2020-11-19)
2197
-
2198
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2199
-
2200
- ## [0.0.18-alpha.264](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.263...v0.0.18-alpha.264) (2020-11-19)
2201
-
2202
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2203
-
2204
- ## [0.0.18-alpha.259](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.258...v0.0.18-alpha.259) (2020-11-16)
2205
-
2206
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2207
-
2208
- ## [0.0.18-alpha.256](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.255...v0.0.18-alpha.256) (2020-11-16)
2209
-
2210
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2211
-
2212
- ## [0.0.18-alpha.255](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.254...v0.0.18-alpha.255) (2020-11-14)
2213
-
2214
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2215
-
2216
- ## [0.0.18-alpha.253](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.252...v0.0.18-alpha.253) (2020-11-12)
2217
-
2218
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2219
-
2220
- ## [0.0.18-alpha.249](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.248...v0.0.18-alpha.249) (2020-11-11)
2221
-
2222
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2223
-
2224
- ## [0.0.18-alpha.247](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.246...v0.0.18-alpha.247) (2020-11-10)
2225
-
2226
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2227
-
2228
- ## [0.0.18-alpha.244](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.243...v0.0.18-alpha.244) (2020-11-10)
2229
-
2230
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2231
-
2232
- ## [0.0.18-alpha.240](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.239...v0.0.18-alpha.240) (2020-11-07)
2233
-
2234
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2235
-
2236
- ## [0.0.18-alpha.238](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.237...v0.0.18-alpha.238) (2020-11-07)
2237
-
2238
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2239
-
2240
- ## [0.0.18-alpha.236](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.235...v0.0.18-alpha.236) (2020-11-06)
2241
-
2242
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2243
-
2244
- ## [0.0.18-alpha.235](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.234...v0.0.18-alpha.235) (2020-11-05)
2245
-
2246
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2247
-
2248
- ## [0.0.18-alpha.234](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.233...v0.0.18-alpha.234) (2020-11-05)
2249
-
2250
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2251
-
2252
- ## [0.0.18-alpha.233](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.232...v0.0.18-alpha.233) (2020-11-05)
2253
-
2254
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2255
-
2256
- ## [0.0.18-alpha.232](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.231...v0.0.18-alpha.232) (2020-11-05)
2257
-
2258
- ### Features
2259
-
2260
- - **billing:** move billing module from user to organization ([c2c5abb](https://github.com/cdmbase/adminIde-stack/commit/c2c5abb80886df20cac11a5756c6fa02ce8fde27))
2261
-
2262
- ## [0.0.18-alpha.231](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.230...v0.0.18-alpha.231) (2020-11-05)
2263
-
2264
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2265
-
2266
- ## [0.0.18-alpha.229](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.228...v0.0.18-alpha.229) (2020-11-05)
2267
-
2268
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2269
-
2270
- ## [0.0.18-alpha.228](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.227...v0.0.18-alpha.228) (2020-11-04)
2271
-
2272
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2273
-
2274
- ## [0.0.18-alpha.226](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.225...v0.0.18-alpha.226) (2020-11-02)
2275
-
2276
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2277
-
2278
- ## [0.0.18-alpha.225](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.224...v0.0.18-alpha.225) (2020-11-02)
2279
-
2280
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2281
-
2282
- ## [0.0.18-alpha.223](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.222...v0.0.18-alpha.223) (2020-11-01)
2283
-
2284
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2285
-
2286
- ## [0.0.18-alpha.222](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.221...v0.0.18-alpha.222) (2020-11-01)
2287
-
2288
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2289
-
2290
- ## [0.0.18-alpha.220](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.219...v0.0.18-alpha.220) (2020-10-30)
2291
-
2292
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2293
-
2294
- ## [0.0.18-alpha.219](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.218...v0.0.18-alpha.219) (2020-10-29)
2295
-
2296
- ### Bug Fixes
2297
-
2298
- - **billing-api:** update change plan ([6225b22](https://github.com/cdmbase/adminIde-stack/commit/6225b2248899ede6c30ae41f8c84d024175ac444))
2299
-
2300
- ## [0.0.18-alpha.217](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.216...v0.0.18-alpha.217) (2020-10-28)
2301
-
2302
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2303
-
2304
- ## [0.0.18-alpha.216](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.215...v0.0.18-alpha.216) (2020-10-28)
2305
-
2306
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2307
-
2308
- ## [0.0.18-alpha.215](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.214...v0.0.18-alpha.215) (2020-10-28)
2309
-
2310
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2311
-
2312
- ## [0.0.18-alpha.213](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.212...v0.0.18-alpha.213) (2020-10-27)
2313
-
2314
- ### Features
2315
-
2316
- - **teams:** restrict team invites base on the policy value ([469ea60](https://github.com/cdmbase/adminIde-stack/commit/469ea6048a8b031362f0a693a93016785c0a9a14))
2317
-
2318
- ## [0.0.18-alpha.212](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.211...v0.0.18-alpha.212) (2020-10-27)
2319
-
2320
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2321
-
2322
- ## [0.0.18-alpha.207](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.206...v0.0.18-alpha.207) (2020-10-24)
2323
-
2324
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2325
-
2326
- ## [0.0.18-alpha.203](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.202...v0.0.18-alpha.203) (2020-10-22)
2327
-
2328
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2329
-
2330
- ## [0.0.18-alpha.201](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.200...v0.0.18-alpha.201) (2020-10-22)
2331
-
2332
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2333
-
2334
- ## [0.0.18-alpha.193](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.192...v0.0.18-alpha.193) (2020-10-21)
2335
-
2336
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2337
-
2338
- ## [0.0.18-alpha.188](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.187...v0.0.18-alpha.188) (2020-10-20)
2339
-
2340
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2341
-
2342
- ## [0.0.18-alpha.184](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.183...v0.0.18-alpha.184) (2020-10-18)
2343
-
2344
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2345
-
2346
- ## [0.0.18-alpha.182](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.181...v0.0.18-alpha.182) (2020-10-17)
2347
-
2348
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2349
-
2350
- ## [0.0.18-alpha.180](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.179...v0.0.18-alpha.180) (2020-10-16)
2351
-
2352
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2353
-
2354
- ## [0.0.18-alpha.179](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.178...v0.0.18-alpha.179) (2020-10-16)
2355
-
2356
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2357
-
2358
- ## [0.0.18-alpha.178](https://github.com/cdmbase/adminIde-stack/compare/v0.0.16-3...v0.0.18-alpha.178) (2020-10-16)
2359
-
2360
- ### Bug Fixes
2361
-
2362
- - save user's subscription information on sign up ([9cfbca6](https://github.com/cdmbase/adminIde-stack/commit/9cfbca6796a4094fb9f84cd2aef50b060095e452))
2363
- - user creation and stripe customer & subscription workflow ([e1bb3b4](https://github.com/cdmbase/adminIde-stack/commit/e1bb3b4ec0fae7e28499127f06d99ec562d1c747))
2364
- - **billing:** invalid strip API verison ([016714c](https://github.com/cdmbase/adminIde-stack/commit/016714c46341291e6cd75cc12c68fddba13a209a))
2365
- - **billing:** plans not loading completely ([005d63b](https://github.com/cdmbase/adminIde-stack/commit/005d63b8f898b859342573be54324f0040ecf5a8))
2366
- - **billing:** replace email with account Id in stripe meta data ([832c02b](https://github.com/cdmbase/adminIde-stack/commit/832c02b9362a26ce4d70be47db2c55e59ee1e014))
2367
- - **billing:** update invoice resolver to return only user's invoice ([8ebae1e](https://github.com/cdmbase/adminIde-stack/commit/8ebae1e53c46116d751f09294af8a6ba999cdb0f))
2368
- - **billing-api:** fix subscriptions not getting assigned on sign up ([fe1878b](https://github.com/cdmbase/adminIde-stack/commit/fe1878b85e111f58bf87c6afe65b0ab1273e7518))
2369
- - **billing-api:** make description unique for all rules ([f31e717](https://github.com/cdmbase/adminIde-stack/commit/f31e717f0de7ae7ae99f28d3ec087faf3a10ea70))
2370
- - **billing-api:** update plan button state enable/disable based on dirty state ([1450e08](https://github.com/cdmbase/adminIde-stack/commit/1450e0881aa5f734632fda81c2776e7846168e56))
2371
- - **billing-server:** multiple small fixes ([34d4d55](https://github.com/cdmbase/adminIde-stack/commit/34d4d5575de143314d1ede0ec3afad2a44ea0e19))
2372
-
2373
- ### Features
2374
-
2375
- - **billing:** add CRUD operations for bank account source ([21625cb](https://github.com/cdmbase/adminIde-stack/commit/21625cbbb6efd28e9664c5b2a77388847d1a13f7))
2376
- - **billing:** add default usage on subscription create ([c615dce](https://github.com/cdmbase/adminIde-stack/commit/c615dcef0b65ca52413a96fdc39099b0c97f8399))
2377
- - **billing:** add home screen to the billing module ([b40c67f](https://github.com/cdmbase/adminIde-stack/commit/b40c67ffab3a8af78a82ebb2d0bccb5126682d90))
2378
- - **billing:** add notification preferences ([ac087b2](https://github.com/cdmbase/adminIde-stack/commit/ac087b2105620d5fb7e85624d511fbbae10dc339))
2379
- - **billing:** add stripe data sources and implement methods ([ff1d100](https://github.com/cdmbase/adminIde-stack/commit/ff1d10015ff328823529ae4587bef698e08d94fa))
2380
- - **billing:** add support for invoices ([2847a54](https://github.com/cdmbase/adminIde-stack/commit/2847a54219ed526b6993a963bf58b79cea20e3e4))
2381
- - **billing:** change plan with existing user ([6c81368](https://github.com/cdmbase/adminIde-stack/commit/6c81368fc768953ba852581a0465d8352004800f)), closes [#449](https://github.com/cdmbase/adminIde-stack/issues/449)
2382
- - **billing:** make payment screen modular ([108e614](https://github.com/cdmbase/adminIde-stack/commit/108e614510cc9d381112ed13f6a852ee29b0b941))
2383
- - **billing:** move from metered plans to fixed price plans ([1ccb791](https://github.com/cdmbase/adminIde-stack/commit/1ccb7915c4fbcd8bde78f3ac2efe7abacc35b28b))
2384
- - **billing:** update invoices table ([72c005f](https://github.com/cdmbase/adminIde-stack/commit/72c005f0bbecb16e3bb81724ec37585eb844883b))
2385
- - **billing-api:** add complete workflow of plan subscriptions ([7212b5b](https://github.com/cdmbase/adminIde-stack/commit/7212b5b011e90ffae37b0d5300a214aed6df99e2))
2386
- - **billing-api:** add CRUD for payment methods ([8403291](https://github.com/cdmbase/adminIde-stack/commit/840329171148f39c51518356af9b6e90d9a1ea0f))
2387
- - **billing-api:** add support to change usage through plan cards ([b56ffc0](https://github.com/cdmbase/adminIde-stack/commit/b56ffc02a09c68188b282c7c4242a9e4bc6cceed))
2388
- - **billing-api:** make dynamic payment plan cards ([e144968](https://github.com/cdmbase/adminIde-stack/commit/e1449680ee17854d92cb98059a84fab043ad4da0))
2389
- - add annual plans ([dad30e8](https://github.com/cdmbase/adminIde-stack/commit/dad30e8fb53c7ddd4d916ef2efb22e68713fe051))
2390
- - add roles and permissions in billing module ([08a7a25](https://github.com/cdmbase/adminIde-stack/commit/08a7a25e565402a4567e8a1695629c1dda2fabb0))
2391
- - read rules from single module ([52eb42c](https://github.com/cdmbase/adminIde-stack/commit/52eb42c2c4a058850fbac26fbae8648ac7ad80e9))
2392
- - update typescript version to 3.8 ([017d749](https://github.com/cdmbase/adminIde-stack/commit/017d749bbe9fed24c63f6957aa45a1553d561a0e))
2393
- - **billing-api-server:** add subscriptions and custom fields resolvers ([5df9952](https://github.com/cdmbase/adminIde-stack/commit/5df9952054d3e00a148369a5b4971ac72fa175b0))
2394
- - **roles:** add common wrapper to handle permission and config ([a568d94](https://github.com/cdmbase/adminIde-stack/commit/a568d9442ffc7ffd32f260c814e77eb91bdc980d))
2395
-
2396
- ### Reverts
2397
-
2398
- - Revert "remove shared-queries packages as it is not needed anymore" ([ee99476](https://github.com/cdmbase/adminIde-stack/commit/ee99476f2d95bf70b8906149ab47362b4bf027d4))
2399
-
2400
- ## [0.0.18-alpha.175](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.174...v0.0.18-alpha.175) (2020-10-15)
2401
-
2402
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2403
-
2404
- ## [0.0.18-alpha.173](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.172...v0.0.18-alpha.173) (2020-10-15)
2405
-
2406
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2407
-
2408
- ## [0.0.18-alpha.170](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.169...v0.0.18-alpha.170) (2020-10-13)
2409
-
2410
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2411
-
2412
- ## [0.0.18-alpha.169](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.168...v0.0.18-alpha.169) (2020-10-13)
2413
-
2414
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2415
-
2416
- ## [0.0.18-alpha.168](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.167...v0.0.18-alpha.168) (2020-10-12)
2417
-
2418
- ### Bug Fixes
2419
-
2420
- - **billing-api:** make description unique for all rules ([f31e717](https://github.com/cdmbase/adminIde-stack/commit/f31e717f0de7ae7ae99f28d3ec087faf3a10ea70))
2421
-
2422
- ## [0.0.18-alpha.163](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.162...v0.0.18-alpha.163) (2020-10-11)
2423
-
2424
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2425
-
2426
- ## [0.0.18-alpha.162](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.161...v0.0.18-alpha.162) (2020-10-11)
2427
-
2428
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2429
-
2430
- ## [0.0.18-alpha.161](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.160...v0.0.18-alpha.161) (2020-10-10)
2431
-
2432
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2433
-
2434
- ## [0.0.18-alpha.160](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.159...v0.0.18-alpha.160) (2020-10-10)
2435
-
2436
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2437
-
2438
- ## [0.0.18-alpha.156](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.155...v0.0.18-alpha.156) (2020-10-08)
2439
-
2440
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2441
-
2442
- ## [0.0.18-alpha.153](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.152...v0.0.18-alpha.153) (2020-10-07)
2443
-
2444
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2445
-
2446
- ## [0.0.18-alpha.151](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.150...v0.0.18-alpha.151) (2020-10-07)
2447
-
2448
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2449
-
2450
- ## [0.0.18-alpha.150](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.149...v0.0.18-alpha.150) (2020-10-07)
2451
-
2452
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2453
-
2454
- ## [0.0.18-alpha.149](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.148...v0.0.18-alpha.149) (2020-10-06)
2455
-
2456
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2457
-
2458
- ## [0.0.18-alpha.148](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.147...v0.0.18-alpha.148) (2020-10-06)
2459
-
2460
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2461
-
2462
- ## [0.0.18-alpha.143](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.142...v0.0.18-alpha.143) (2020-10-06)
2463
-
2464
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2465
-
2466
- ## [0.0.18-alpha.142](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.141...v0.0.18-alpha.142) (2020-10-06)
2467
-
2468
- ### Features
2469
-
2470
- - read rules from single module ([52eb42c](https://github.com/cdmbase/adminIde-stack/commit/52eb42c2c4a058850fbac26fbae8648ac7ad80e9))
2471
-
2472
- ## [0.0.18-alpha.141](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.140...v0.0.18-alpha.141) (2020-09-29)
2473
-
2474
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2475
-
2476
- ## [0.0.18-alpha.140](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.139...v0.0.18-alpha.140) (2020-09-28)
2477
-
2478
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2479
-
2480
- ## [0.0.18-alpha.139](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.138...v0.0.18-alpha.139) (2020-09-27)
2481
-
2482
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2483
-
2484
- ## [0.0.18-alpha.138](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.137...v0.0.18-alpha.138) (2020-09-27)
2485
-
2486
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2487
-
2488
- ## [0.0.18-alpha.135](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.134...v0.0.18-alpha.135) (2020-09-27)
2489
-
2490
- ### Features
2491
-
2492
- - **roles:** add common wrapper to handle permission and config ([a568d94](https://github.com/cdmbase/adminIde-stack/commit/a568d9442ffc7ffd32f260c814e77eb91bdc980d))
2493
- - add roles and permissions in billing module ([08a7a25](https://github.com/cdmbase/adminIde-stack/commit/08a7a25e565402a4567e8a1695629c1dda2fabb0))
2494
-
2495
- ## [0.0.18-alpha.134](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.133...v0.0.18-alpha.134) (2020-09-23)
2496
-
2497
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2498
-
2499
- ## [0.0.18-alpha.131](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.130...v0.0.18-alpha.131) (2020-09-22)
2500
-
2501
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2502
-
2503
- ## [0.0.18-alpha.130](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.129...v0.0.18-alpha.130) (2020-09-21)
2504
-
2505
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2506
-
2507
- ## [0.0.18-alpha.129](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.128...v0.0.18-alpha.129) (2020-09-21)
2508
-
2509
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2510
-
2511
- ## [0.0.18-alpha.128](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.127...v0.0.18-alpha.128) (2020-09-21)
2512
-
2513
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2514
-
2515
- ## [0.0.18-alpha.125](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.124...v0.0.18-alpha.125) (2020-09-21)
2516
-
2517
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2518
-
2519
- ## [0.0.18-alpha.123](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.122...v0.0.18-alpha.123) (2020-09-19)
2520
-
2521
- ### Bug Fixes
2522
-
2523
- - **billing:** replace email with account Id in stripe meta data ([832c02b](https://github.com/cdmbase/adminIde-stack/commit/832c02b9362a26ce4d70be47db2c55e59ee1e014))
2524
-
2525
- ## [0.0.18-alpha.119](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.118...v0.0.18-alpha.119) (2020-09-17)
2526
-
2527
- ### Features
2528
-
2529
- - **billing:** add notification preferences ([ac087b2](https://github.com/cdmbase/adminIde-stack/commit/ac087b2105620d5fb7e85624d511fbbae10dc339))
2530
-
2531
- ## [0.0.18-alpha.118](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.117...v0.0.18-alpha.118) (2020-09-15)
2532
-
2533
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2534
-
2535
- ## [0.0.18-alpha.117](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.116...v0.0.18-alpha.117) (2020-09-15)
2536
-
2537
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2538
-
2539
- ## [0.0.18-alpha.116](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.115...v0.0.18-alpha.116) (2020-09-14)
2540
-
2541
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2542
-
2543
- ## [0.0.18-alpha.115](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.114...v0.0.18-alpha.115) (2020-09-14)
2544
-
2545
- ### Features
2546
-
2547
- - **billing:** move from metered plans to fixed price plans ([1ccb791](https://github.com/cdmbase/adminIde-stack/commit/1ccb7915c4fbcd8bde78f3ac2efe7abacc35b28b))
2548
-
2549
- ## [0.0.18-alpha.114](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.113...v0.0.18-alpha.114) (2020-09-13)
2550
-
2551
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2552
-
2553
- ## [0.0.18-alpha.112](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.111...v0.0.18-alpha.112) (2020-09-11)
2554
-
2555
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2556
-
2557
- ## [0.0.18-alpha.111](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.110...v0.0.18-alpha.111) (2020-09-10)
2558
-
2559
- **Note:** Version bump only for package @adminide-stack/billing-api-server
2560
-
2561
- ## [0.0.18-alpha.109](https://github.com/cdmbase/adminIde-stack/compare/v0.0.18-alpha.108...v0.0.18-alpha.109) (2020-09-08)
2562
-
2563
- ### Bug Fixes
2564
-
2565
- - **billing-server:** multiple small fixes ([34d4d55](https://github.com/cdmbase/adminIde-stack/commit/34d4d5575de143314d1ede0ec3afad2a44ea0e19))
2566
-
2567
- ## [0.0.18-alpha.108](https://github.com/cdmbase/adminIde-stack/compare/v0.0.16-3...v0.0.18-alpha.108) (2020-09-07)
2568
-
2569
- ### Bug Fixes
2570
-
2571
- - save user's subscription information on sign up ([9cfbca6](https://github.com/cdmbase/adminIde-stack/commit/9cfbca6796a4094fb9f84cd2aef50b060095e452))
2572
- - user creation and stripe customer & subscription workflow ([e1bb3b4](https://github.com/cdmbase/adminIde-stack/commit/e1bb3b4ec0fae7e28499127f06d99ec562d1c747))
2573
- - **billing:** invalid strip API verison ([016714c](https://github.com/cdmbase/adminIde-stack/commit/016714c46341291e6cd75cc12c68fddba13a209a))
2574
- - **billing:** plans not loading completely ([005d63b](https://github.com/cdmbase/adminIde-stack/commit/005d63b8f898b859342573be54324f0040ecf5a8))
2575
- - **billing:** update invoice resolver to return only user's invoice ([8ebae1e](https://github.com/cdmbase/adminIde-stack/commit/8ebae1e53c46116d751f09294af8a6ba999cdb0f))
2576
- - **billing-api:** fix subscriptions not getting assigned on sign up ([fe1878b](https://github.com/cdmbase/adminIde-stack/commit/fe1878b85e111f58bf87c6afe65b0ab1273e7518))
2577
- - **billing-api:** update plan button state enable/disable based on dirty state ([1450e08](https://github.com/cdmbase/adminIde-stack/commit/1450e0881aa5f734632fda81c2776e7846168e56))
2578
-
2579
- ### Features
2580
-
2581
- - **billing:** add CRUD operations for bank account source ([21625cb](https://github.com/cdmbase/adminIde-stack/commit/21625cbbb6efd28e9664c5b2a77388847d1a13f7))
2582
- - **billing:** add default usage on subscription create ([c615dce](https://github.com/cdmbase/adminIde-stack/commit/c615dcef0b65ca52413a96fdc39099b0c97f8399))
2583
- - **billing:** add home screen to the billing module ([b40c67f](https://github.com/cdmbase/adminIde-stack/commit/b40c67ffab3a8af78a82ebb2d0bccb5126682d90))
2584
- - **billing:** add stripe data sources and implement methods ([ff1d100](https://github.com/cdmbase/adminIde-stack/commit/ff1d10015ff328823529ae4587bef698e08d94fa))
2585
- - **billing:** add support for invoices ([2847a54](https://github.com/cdmbase/adminIde-stack/commit/2847a54219ed526b6993a963bf58b79cea20e3e4))
2586
- - **billing:** change plan with existing user ([6c81368](https://github.com/cdmbase/adminIde-stack/commit/6c81368fc768953ba852581a0465d8352004800f)), closes [#449](https://github.com/cdmbase/adminIde-stack/issues/449)
2587
- - **billing:** make payment screen modular ([108e614](https://github.com/cdmbase/adminIde-stack/commit/108e614510cc9d381112ed13f6a852ee29b0b941))
2588
- - **billing:** update invoices table ([72c005f](https://github.com/cdmbase/adminIde-stack/commit/72c005f0bbecb16e3bb81724ec37585eb844883b))
2589
- - **billing-api:** add complete workflow of plan subscriptions ([7212b5b](https://github.com/cdmbase/adminIde-stack/commit/7212b5b011e90ffae37b0d5300a214aed6df99e2))
2590
- - add annual plans ([dad30e8](https://github.com/cdmbase/adminIde-stack/commit/dad30e8fb53c7ddd4d916ef2efb22e68713fe051))
2591
- - update typescript version to 3.8 ([017d749](https://github.com/cdmbase/adminIde-stack/commit/017d749bbe9fed24c63f6957aa45a1553d561a0e))
2592
- - **billing-api:** add CRUD for payment methods ([8403291](https://github.com/cdmbase/adminIde-stack/commit/840329171148f39c51518356af9b6e90d9a1ea0f))
2593
- - **billing-api:** add support to change usage through plan cards ([b56ffc0](https://github.com/cdmbase/adminIde-stack/commit/b56ffc02a09c68188b282c7c4242a9e4bc6cceed))
2594
- - **billing-api:** make dynamic payment plan cards ([e144968](https://github.com/cdmbase/adminIde-stack/commit/e1449680ee17854d92cb98059a84fab043ad4da0))
2595
- - **billing-api-server:** add subscriptions and custom fields resolvers ([5df9952](https://github.com/cdmbase/adminIde-stack/commit/5df9952054d3e00a148369a5b4971ac72fa175b0))
2596
-
2597
- ### Reverts
2598
-
2599
- - Revert "remove shared-queries packages as it is not needed anymore" ([ee99476](https://github.com/cdmbase/adminIde-stack/commit/ee99476f2d95bf70b8906149ab47362b4bf027d4))