@dereekb/nestjs 9.9.0 → 9.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +4 -9
- package/mailgun/package.json +5 -4
- package/package.json +11 -5
- package/stripe/package.json +4 -3
- package/mailgun/CHANGELOG.md +0 -10
- package/mailgun/README.md +0 -11
- package/stripe/CHANGELOG.md +0 -492
- package/stripe/README.md +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [9.9.2](https://github.com/dereekb/dbx-components/compare/v9.9.1-dev...v9.9.2) (2022-09-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* fixed child package exports ([76fe1fa](https://github.com/dereekb/dbx-components/commit/76fe1fac1b99853e705ae09bea6dee3e65d7338c))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [9.9.1](https://github.com/dereekb/dbx-components/compare/v9.9.0-dev...v9.9.1) (2022-09-18)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* fixed dependencies for release ([7c57c7e](https://github.com/dereekb/dbx-components/commit/7c57c7ef5df664b8df2641fb3b50b82b3fb2c650))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
5
23
|
# [9.9.0](https://github.com/dereekb/dbx-components/compare/v9.8.0-dev...v9.9.0) (2022-09-17)
|
|
6
24
|
|
|
7
25
|
|
package/README.md
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
@dereekb/nestjs
|
|
2
|
+
=======
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
The sources for this package are in the main [@dereekb/dbx-components](https://github.com/dereekb/dbx-components) repo. Please file issues and pull requests against that repo.
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Run `nx build nestjs` to build the library.
|
|
8
|
-
|
|
9
|
-
## Running unit tests
|
|
10
|
-
|
|
11
|
-
Run `nx test nestjs` to execute the unit tests via [Jest](https://jestjs.io).
|
|
6
|
+
License: MIT
|
package/mailgun/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/nestjs/mailgun",
|
|
3
|
-
"version": "9.9.
|
|
3
|
+
"version": "9.9.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./src/index.d.ts",
|
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
"peerDependencies": {
|
|
9
9
|
"@nestjs/common": "^9.0.0",
|
|
10
10
|
"mailgun.js": "^8.0.0",
|
|
11
|
-
"form-data": "
|
|
12
|
-
"@dereekb/util": "9.9.
|
|
11
|
+
"form-data": "4.0.0",
|
|
12
|
+
"@dereekb/util": "9.9.2",
|
|
13
13
|
"lodash.isequal": "^4.5.0",
|
|
14
14
|
"make-error": "^1.3.0",
|
|
15
|
+
"class-validator": "^0.13.2",
|
|
15
16
|
"ts-essentials": "^9.1.2",
|
|
16
17
|
"extra-set": "^2.2.11",
|
|
17
|
-
"@dereekb/nestjs": "9.9.
|
|
18
|
+
"@dereekb/nestjs": "9.9.2",
|
|
18
19
|
"@nestjs/config": "^2.0.1",
|
|
19
20
|
"tslib": "^2.0.0"
|
|
20
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/nestjs",
|
|
3
|
-
"version": "9.9.
|
|
3
|
+
"version": "9.9.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -9,9 +9,14 @@
|
|
|
9
9
|
"default": "./src/index.js"
|
|
10
10
|
},
|
|
11
11
|
"./stripe": {
|
|
12
|
-
"main": "./stripe/index.js",
|
|
13
|
-
"types": "./stripe/index.d.ts",
|
|
14
|
-
"default": "./stripe/index.js"
|
|
12
|
+
"main": "./stripe/src/index.js",
|
|
13
|
+
"types": "./stripe/src/index.d.ts",
|
|
14
|
+
"default": "./stripe/src/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./mailgun": {
|
|
17
|
+
"main": "./mailgun/src/index.js",
|
|
18
|
+
"types": "./mailgun/src/index.d.ts",
|
|
19
|
+
"default": "./mailgun/src/index.js"
|
|
15
20
|
}
|
|
16
21
|
},
|
|
17
22
|
"main": "./src/index.js",
|
|
@@ -20,9 +25,10 @@
|
|
|
20
25
|
"peerDependencies": {
|
|
21
26
|
"@nestjs/common": "^9.0.0",
|
|
22
27
|
"@nestjs/config": "^2.0.1",
|
|
23
|
-
"@dereekb/util": "9.9.
|
|
28
|
+
"@dereekb/util": "9.9.2",
|
|
24
29
|
"lodash.isequal": "^4.5.0",
|
|
25
30
|
"make-error": "^1.3.0",
|
|
31
|
+
"class-validator": "^0.13.2",
|
|
26
32
|
"ts-essentials": "^9.1.2",
|
|
27
33
|
"extra-set": "^2.2.11",
|
|
28
34
|
"tslib": "^2.0.0"
|
package/stripe/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/nestjs/stripe",
|
|
3
|
-
"version": "9.9.
|
|
3
|
+
"version": "9.9.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"typings": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@dereekb/util": "9.9.
|
|
9
|
+
"@dereekb/util": "9.9.2",
|
|
10
10
|
"lodash.isequal": "^4.5.0",
|
|
11
11
|
"make-error": "^1.3.0",
|
|
12
|
+
"class-validator": "^0.13.2",
|
|
12
13
|
"ts-essentials": "^9.1.2",
|
|
13
14
|
"extra-set": "^2.2.11",
|
|
14
15
|
"stripe": "^9.1.0",
|
|
15
16
|
"@nestjs/common": "^9.0.0",
|
|
16
17
|
"@nestjs/config": "^2.0.1",
|
|
17
|
-
"@dereekb/nestjs": "9.9.
|
|
18
|
+
"@dereekb/nestjs": "9.9.2",
|
|
18
19
|
"tslib": "^2.0.0"
|
|
19
20
|
}
|
|
20
21
|
}
|
package/mailgun/CHANGELOG.md
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
|
-
|
|
5
|
-
# [9.9.0](https://github.com/dereekb/dbx-components/compare/v9.8.0-dev...v9.9.0) (2022-09-17)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
* mailgun ([#16](https://github.com/dereekb/dbx-components/issues/16)) ([9c7d4cc](https://github.com/dereekb/dbx-components/commit/9c7d4cc997e86b664ff7e2bc6e04392e650b7910))
|
package/mailgun/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# nestjs-mailgun
|
|
2
|
-
|
|
3
|
-
This library was generated with [Nx](https://nx.dev).
|
|
4
|
-
|
|
5
|
-
## Building
|
|
6
|
-
|
|
7
|
-
Run `nx build nestjs-mailgun` to build the library.
|
|
8
|
-
|
|
9
|
-
## Running unit tests
|
|
10
|
-
|
|
11
|
-
Run `nx test nestjs-mailgun` to execute the unit tests via [Jest](https://jestjs.io).
|
package/stripe/CHANGELOG.md
DELETED
|
@@ -1,492 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
|
-
|
|
5
|
-
# [9.9.0](https://github.com/dereekb/dbx-components/compare/v9.8.0-dev...v9.9.0) (2022-09-17)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
# [9.8.0](https://github.com/dereekb/dbx-components/compare/v9.7.7-dev...v9.8.0) (2022-09-15)
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## [9.7.7](https://github.com/dereekb/dbx-components/compare/v9.7.6-dev...v9.7.7) (2022-09-12)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [9.7.6](https://github.com/dereekb/dbx-components/compare/v9.7.5-dev...v9.7.6) (2022-09-12)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## [9.7.5](https://github.com/dereekb/dbx-components/compare/v9.7.4-dev...v9.7.5) (2022-09-10)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [9.7.4](https://github.com/dereekb/dbx-components/compare/v9.7.3-dev...v9.7.4) (2022-09-08)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
## [9.7.3](https://github.com/dereekb/dbx-components/compare/v9.7.2-dev...v9.7.3) (2022-09-06)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## [9.7.2](https://github.com/dereekb/dbx-components/compare/v9.7.1-dev...v9.7.2) (2022-09-06)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## [9.7.1](https://github.com/dereekb/dbx-components/compare/v9.7.0-dev...v9.7.1) (2022-09-06)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# [9.7.0](https://github.com/dereekb/dbx-components/compare/v9.6.5-dev...v9.7.0) (2022-09-05)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
## [9.6.5](https://github.com/dereekb/dbx-components/compare/v9.6.4-dev...v9.6.5) (2022-09-04)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [9.6.4](https://github.com/dereekb/dbx-components/compare/v9.6.3-dev...v9.6.4) (2022-09-03)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
## [9.6.3](https://github.com/dereekb/dbx-components/compare/v9.6.2-dev...v9.6.3) (2022-09-02)
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## [9.6.2](https://github.com/dereekb/dbx-components/compare/v9.6.1-dev...v9.6.2) (2022-09-02)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
## [9.6.1](https://github.com/dereekb/dbx-components/compare/v9.6.0-dev...v9.6.1) (2022-08-31)
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
# [9.6.0](https://github.com/dereekb/dbx-components/compare/v9.5.5-dev...v9.6.0) (2022-08-31)
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
## [9.5.5](https://github.com/dereekb/dbx-components/compare/v9.5.4-dev...v9.5.5) (2022-08-30)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## [9.5.4](https://github.com/dereekb/dbx-components/compare/v9.5.3-dev...v9.5.4) (2022-08-30)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
## [9.5.3](https://github.com/dereekb/dbx-components/compare/v9.5.2-dev...v9.5.3) (2022-08-29)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
## [9.5.2](https://github.com/dereekb/dbx-components/compare/v9.5.1-dev...v9.5.2) (2022-08-29)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
## [9.5.1](https://github.com/dereekb/dbx-components/compare/v9.5.0-dev...v9.5.1) (2022-08-26)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
# [9.5.0](https://github.com/dereekb/dbx-components/compare/v9.4.0-dev...v9.5.0) (2022-08-24)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
# [9.4.0](https://github.com/dereekb/dbx-components/compare/v9.3.3-dev...v9.4.0) (2022-08-24)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
## [9.3.3](https://github.com/dereekb/dbx-components/compare/v9.3.2-dev...v9.3.3) (2022-08-23)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
## [9.3.2](https://github.com/dereekb/dbx-components/compare/v9.3.1-dev...v9.3.2) (2022-08-22)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
## [9.3.1](https://github.com/dereekb/dbx-components/compare/v9.3.0-dev...v9.3.1) (2022-08-21)
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
# [9.3.0](https://github.com/dereekb/dbx-components/compare/v9.2.0-dev...v9.3.0) (2022-08-20)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
# [9.2.0](https://github.com/dereekb/dbx-components/compare/v9.1.2-dev...v9.2.0) (2022-08-18)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
## [9.1.2](https://github.com/dereekb/dbx-components/compare/v9.1.1-dev...v9.1.2) (2022-08-16)
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
## [9.1.1](https://github.com/dereekb/dbx-components/compare/v9.1.0-dev...v9.1.1) (2022-08-16)
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
# [9.1.0](https://github.com/dereekb/dbx-components/compare/v9.0.0-dev...v9.1.0) (2022-08-15)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
# [9.0.0](https://github.com/dereekb/dbx-components/compare/v8.15.2-dev...v9.0.0) (2022-08-13)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
### Features
|
|
133
|
-
|
|
134
|
-
* updated to angular 14 ([#15](https://github.com/dereekb/dbx-components/issues/15)) ([739726e](https://github.com/dereekb/dbx-components/commit/739726eabdf49007b096dbb892054887268c7732))
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [8.15.2](https://github.com/dereekb/dbx-components/compare/v8.15.1-dev...v8.15.2) (2022-08-11)
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
## [8.15.1](https://github.com/dereekb/dbx-components/compare/v8.15.0-dev...v8.15.1) (2022-08-11)
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
# [8.15.0](https://github.com/dereekb/dbx-components/compare/v8.14.0-dev...v8.15.0) (2022-08-09)
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
# [8.14.0](https://github.com/dereekb/dbx-components/compare/v8.13.9-dev...v8.14.0) (2022-08-08)
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
## [8.13.9](https://github.com/dereekb/dbx-components/compare/v8.13.8-dev...v8.13.9) (2022-08-05)
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
## [8.13.8](https://github.com/dereekb/dbx-components/compare/v8.13.7-dev...v8.13.8) (2022-08-03)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
## [8.13.7](https://github.com/dereekb/dbx-components/compare/v8.13.6-dev...v8.13.7) (2022-08-03)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
## [8.13.6](https://github.com/dereekb/dbx-components/compare/v8.13.5-dev...v8.13.6) (2022-08-01)
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
## [8.13.5](https://github.com/dereekb/dbx-components/compare/v8.13.4-dev...v8.13.5) (2022-07-29)
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
## [8.13.4](https://github.com/dereekb/dbx-components/compare/v8.13.3-dev...v8.13.4) (2022-07-23)
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
## [8.13.3](https://github.com/dereekb/dbx-components/compare/v8.13.2-dev...v8.13.3) (2022-07-21)
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
## [8.13.2](https://github.com/dereekb/dbx-components/compare/v8.13.1-dev...v8.13.2) (2022-07-20)
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
## [8.13.1](https://github.com/dereekb/dbx-components/compare/v8.13.0-dev...v8.13.1) (2022-07-19)
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
# [8.13.0](https://github.com/dereekb/dbx-components/compare/v8.12.13-dev...v8.13.0) (2022-07-16)
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
## [8.12.13](https://github.com/dereekb/dbx-components/compare/v8.12.12-dev...v8.12.13) (2022-07-16)
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
## [8.12.12](https://github.com/dereekb/dbx-components/compare/v8.12.11-dev...v8.12.12) (2022-07-15)
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
## [8.12.11](https://github.com/dereekb/dbx-components/compare/v8.12.10-dev...v8.12.11) (2022-07-14)
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
## [8.12.10](https://github.com/dereekb/dbx-components/compare/v8.12.9-dev...v8.12.10) (2022-07-13)
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
## [8.12.9](https://github.com/dereekb/dbx-components/compare/v8.12.8-dev...v8.12.9) (2022-07-12)
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
## [8.12.8](https://github.com/dereekb/dbx-components/compare/v8.12.7-dev...v8.12.8) (2022-07-12)
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
## [8.12.7](https://github.com/dereekb/dbx-components/compare/v8.12.6-dev...v8.12.7) (2022-07-11)
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
## [8.12.6](https://github.com/dereekb/dbx-components/compare/v8.12.5-dev...v8.12.6) (2022-07-11)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
## [8.12.5](https://github.com/dereekb/dbx-components/compare/v8.12.4-dev...v8.12.5) (2022-07-10)
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
## [8.12.4](https://github.com/dereekb/dbx-components/compare/v8.12.3-dev...v8.12.4) (2022-07-10)
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
## [8.12.3](https://github.com/dereekb/dbx-components/compare/v8.12.2-dev...v8.12.3) (2022-07-09)
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
## [8.12.2](https://github.com/dereekb/dbx-components/compare/v8.12.1-dev...v8.12.2) (2022-07-08)
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
## [8.12.1](https://github.com/dereekb/dbx-components/compare/v8.12.0-dev...v8.12.1) (2022-07-08)
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
# [8.12.0](https://github.com/dereekb/dbx-components/compare/v8.11.2-dev...v8.12.0) (2022-07-07)
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
## [8.11.2](https://github.com/dereekb/dbx-components/compare/v8.11.1-dev...v8.11.2) (2022-07-05)
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
## [8.11.1](https://github.com/dereekb/dbx-components/compare/v8.11.0-dev...v8.11.1) (2022-07-05)
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
# [8.11.0](https://github.com/dereekb/dbx-components/compare/v8.10.0-dev...v8.11.0) (2022-07-05)
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
# [8.10.0](https://github.com/dereekb/dbx-components/compare/v8.9.1-dev...v8.10.0) (2022-07-04)
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
## [8.9.1](https://github.com/dereekb/dbx-components/compare/v8.9.0-dev...v8.9.1) (2022-06-30)
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
# [8.9.0](https://github.com/dereekb/dbx-components/compare/v8.8.1-dev...v8.9.0) (2022-06-30)
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
## [8.8.1](https://github.com/dereekb/dbx-components/compare/v8.8.0-dev...v8.8.1) (2022-06-29)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
# [8.8.0](https://github.com/dereekb/dbx-components/compare/v8.7.6-dev...v8.8.0) (2022-06-29)
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
## [8.7.6](https://github.com/dereekb/dbx-components/compare/v8.7.5-dev...v8.7.6) (2022-06-29)
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
## [8.7.5](https://github.com/dereekb/dbx-components/compare/v8.7.4-dev...v8.7.5) (2022-06-28)
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
## [8.7.4](https://github.com/dereekb/dbx-components/compare/v8.7.3-dev...v8.7.4) (2022-06-26)
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
## [8.7.3](https://github.com/dereekb/dbx-components/compare/v8.7.2-dev...v8.7.3) (2022-06-25)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
## [8.7.2](https://github.com/dereekb/dbx-components/compare/v8.7.1-dev...v8.7.2) (2022-06-24)
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
## [8.7.1](https://github.com/dereekb/dbx-components/compare/v8.7.0-dev...v8.7.1) (2022-06-24)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
# [8.7.0](https://github.com/dereekb/dbx-components/compare/v8.6.1-dev...v8.7.0) (2022-06-23)
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
## [8.6.1](https://github.com/dereekb/dbx-components/compare/v8.6.0-dev...v8.6.1) (2022-06-23)
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
# [8.6.0](https://github.com/dereekb/dbx-components/compare/v8.5.3-dev...v8.6.0) (2022-06-22)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
## [8.5.3](https://github.com/dereekb/dbx-components/compare/v8.5.2-dev...v8.5.3) (2022-06-22)
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
## [8.5.2](https://github.com/dereekb/dbx-components/compare/v8.5.1-dev...v8.5.2) (2022-06-22)
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
## [8.5.1](https://github.com/dereekb/dbx-components/compare/v8.5.0-dev...v8.5.1) (2022-06-22)
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
# [8.5.0](https://github.com/dereekb/dbx-components/compare/v8.4.0-dev...v8.5.0) (2022-06-22)
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
# [8.4.0](https://github.com/dereekb/dbx-components/compare/v8.3.0-dev...v8.4.0) (2022-06-21)
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
# [8.3.0](https://github.com/dereekb/dbx-components/compare/v8.2.0-dev...v8.3.0) (2022-06-20)
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
# [8.2.0](https://github.com/dereekb/dbx-components/compare/v8.1.2-dev...v8.2.0) (2022-06-20)
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
## [8.1.2](https://github.com/dereekb/dbx-components/compare/v8.1.1-dev...v8.1.2) (2022-06-19)
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
## [8.1.1](https://github.com/dereekb/dbx-components/compare/v8.1.0-dev...v8.1.1) (2022-06-18)
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
# [8.1.0](https://github.com/dereekb/dbx-components/compare/v8.0.1-dev...v8.1.0) (2022-06-18)
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
## [8.0.1](https://github.com/dereekb/dbx-components/compare/v8.0.0-dev...v8.0.1) (2022-06-17)
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
# [8.0.0](https://github.com/dereekb/dbx-components/compare/v7.16.0-dev...v8.0.0) (2022-06-17)
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
# [7.16.0](https://github.com/dereekb/dbx-components/compare/v7.15.2-dev...v7.16.0) (2022-06-17)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
## [7.15.2](https://github.com/dereekb/dbx-components/compare/v7.15.1-dev...v7.15.2) (2022-06-17)
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
## [7.15.1](https://github.com/dereekb/dbx-components/compare/v7.15.0-dev...v7.15.1) (2022-06-16)
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
# [7.15.0](https://github.com/dereekb/dbx-components/compare/v7.14.0-dev...v7.15.0) (2022-06-16)
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
# [7.14.0](https://github.com/dereekb/dbx-components/compare/v7.13.1-dev...v7.14.0) (2022-06-15)
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
## [7.13.1](https://github.com/dereekb/dbx-components/compare/v7.13.0-dev...v7.13.1) (2022-06-15)
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
# [7.13.0](https://github.com/dereekb/dbx-components/compare/v7.12.0-dev...v7.13.0) (2022-06-14)
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
# [7.12.0](https://github.com/dereekb/dbx-components/compare/v7.11.2-dev...v7.12.0) (2022-06-14)
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
## [7.11.2](https://github.com/dereekb/dbx-components/compare/v7.11.1-dev...v7.11.2) (2022-06-13)
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
## [7.11.1](https://github.com/dereekb/dbx-components/compare/v7.11.0-dev...v7.11.1) (2022-06-13)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
# [7.11.0](https://github.com/dereekb/dbx-components/compare/v7.10.0-dev...v7.11.0) (2022-06-13)
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
# [7.10.0](https://github.com/dereekb/dbx-components/compare/v7.9.0-dev...v7.10.0) (2022-06-11)
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
# [7.9.0](https://github.com/dereekb/dbx-components/compare/v7.8.1-dev...v7.9.0) (2022-06-11)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
## [7.8.1](https://github.com/dereekb/dbx-components/compare/v7.8.0-dev...v7.8.1) (2022-06-10)
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
# [7.8.0](https://github.com/dereekb/dbx-components/compare/v7.7.0-dev...v7.8.0) (2022-06-09)
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
# [7.7.0](https://github.com/dereekb/dbx-components/compare/v7.6.0-dev...v7.7.0) (2022-06-09)
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
# [7.6.0](https://github.com/dereekb/dbx-components/compare/v7.5.0-dev...v7.6.0) (2022-06-09)
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
# [7.5.0](https://github.com/dereekb/dbx-components/compare/v7.4.0-dev...v7.5.0) (2022-06-08)
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
# [7.4.0](https://github.com/dereekb/dbx-components/compare/v7.3.0-dev...v7.4.0) (2022-06-08)
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
# [7.3.0](https://github.com/dereekb/dbx-components/compare/v7.2.0-dev...v7.3.0) (2022-06-08)
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
# [7.2.0](https://github.com/dereekb/dbx-components/compare/v7.1.0-dev...v7.2.0) (2022-06-06)
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
# [7.1.0](https://github.com/dereekb/dbx-components/compare/v7.0.1-dev...v7.1.0) (2022-06-06)
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
## [7.0.1](https://github.com/dereekb/dbx-components/compare/v7.0.0-dev...v7.0.1) (2022-06-05)
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
# [7.0.0](https://github.com/dereekb/dbx-components/compare/v6.0.0-dev...v7.0.0) (2022-06-05)
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
# [6.0.0](https://github.com/dereekb/dbx-components/compare/v5.3.0-dev...v6.0.0) (2022-06-03)
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
# [5.3.0](https://github.com/dereekb/dbx-components/compare/v5.2.1-dev...v5.3.0) (2022-05-30)
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
## [5.2.1](https://github.com/dereekb/dbx-components/compare/v5.2.0-dev...v5.2.1) (2022-05-29)
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
# [5.2.0](https://github.com/dereekb/dbx-components/compare/v5.1.0-dev...v5.2.0) (2022-05-29)
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
# [5.1.0](https://github.com/dereekb/dbx-components/compare/v5.0.1-dev...v5.1.0) (2022-05-27)
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
## [5.0.1](https://github.com/dereekb/dbx-components/compare/v5.0.0-dev...v5.0.1) (2022-05-26)
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
# [5.0.0](https://github.com/dereekb/dbx-components/compare/v4.1.0-dev...v5.0.0) (2022-05-25)
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
### Features
|
|
490
|
-
|
|
491
|
-
* added @dereekb/nestjs/stripe ([455f20e](https://github.com/dereekb/dbx-components/commit/455f20e4e6402b3d517e7857fb93ec82eb25817b))
|
|
492
|
-
* added clientAppService ([945f388](https://github.com/dereekb/dbx-components/commit/945f388281d4b9295f2820c39a9e7896ebf4d559))
|
package/stripe/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# nestjs-stripe
|
|
2
|
-
|
|
3
|
-
This library was generated with [Nx](https://nx.dev).
|
|
4
|
-
|
|
5
|
-
## Building
|
|
6
|
-
|
|
7
|
-
Run `nx build nestjs-stripe` to build the library.
|
|
8
|
-
|
|
9
|
-
## Running unit tests
|
|
10
|
-
|
|
11
|
-
Run `nx test nestjs-stripe` to execute the unit tests via [Jest](https://jestjs.io).
|