@driveflux/pdf 1.6.2 → 1.6.4

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 (33) hide show
  1. package/dist/__mocks__/subscription.d.ts.map +1 -1
  2. package/dist/__mocks__/subscription.js +123 -380
  3. package/dist/__mocks__/subscription.js.map +1 -1
  4. package/dist/components/FluxLogo.js +3 -62
  5. package/dist/components/StandardPage.js +8 -97
  6. package/dist/templates/QuotationPdf/CustomerSubscriptionSection.js +27 -145
  7. package/dist/templates/QuotationPdf/GFV.js +12 -49
  8. package/dist/templates/QuotationPdf/Header.js +5 -63
  9. package/dist/templates/QuotationPdf/Pricing.d.ts.map +1 -1
  10. package/dist/templates/QuotationPdf/Pricing.js +206 -566
  11. package/dist/templates/QuotationPdf/Pricing.js.map +1 -1
  12. package/dist/templates/QuotationPdf/QuotationPdfPage.js +3 -23
  13. package/dist/templates/QuotationPdf/SectionBoxNew.js +4 -34
  14. package/dist/templates/QuotationPdf/TermsSection.js +5 -42
  15. package/dist/templates/QuotationPdf/VehiclePhotos.js +24 -54
  16. package/dist/templates/QuotationPdf/index.js +11 -198
  17. package/dist/templates/QuotationPdf/translations.d.ts +1 -0
  18. package/dist/templates/QuotationPdf/translations.d.ts.map +1 -1
  19. package/dist/templates/QuotationPdf/translations.js +24 -38
  20. package/dist/templates/QuotationPdf/translations.js.map +1 -1
  21. package/dist/templates/SubscriptionAgreement/Confirmation.js +11 -66
  22. package/dist/templates/SubscriptionAgreement/CoverPage.js +10 -77
  23. package/dist/templates/SubscriptionAgreement/CoverPageSection.js +5 -16
  24. package/dist/templates/SubscriptionAgreement/Details.js +43 -69
  25. package/dist/templates/SubscriptionAgreement/Footer.js +6 -48
  26. package/dist/templates/SubscriptionAgreement/Header.js +5 -35
  27. package/dist/templates/SubscriptionAgreement/LabelValue.js +3 -25
  28. package/dist/templates/SubscriptionAgreement/SubscriptionAgreementPage.js +3 -26
  29. package/dist/templates/SubscriptionAgreement/TermsOfUse.js +3 -52
  30. package/dist/templates/SubscriptionAgreement/TermsOfUseSubSection.js +9 -97
  31. package/dist/templates/SubscriptionAgreement/index.js +15 -249
  32. package/dist/utils.js +16 -166
  33. package/package.json +2 -2
@@ -1,102 +1,14 @@
1
- function _array_like_to_array(arr, len) {
2
- if (len == null || len > arr.length) len = arr.length;
3
- for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
4
- return arr2;
5
- }
6
- function _array_without_holes(arr) {
7
- if (Array.isArray(arr)) return _array_like_to_array(arr);
8
- }
9
- function _iterable_to_array(iter) {
10
- if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
11
- }
12
- function _non_iterable_spread() {
13
- throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
14
- }
15
- function _to_consumable_array(arr) {
16
- return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
17
- }
18
- function _unsupported_iterable_to_array(o, minLen) {
19
- if (!o) return;
20
- if (typeof o === "string") return _array_like_to_array(o, minLen);
21
- var n = Object.prototype.toString.call(o).slice(8, -1);
22
- if (n === "Object" && o.constructor) n = o.constructor.name;
23
- if (n === "Map" || n === "Set") return Array.from(n);
24
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
25
- }
26
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
27
2
  import { Text, View } from '@react-pdf/renderer';
28
3
  import { useMemo } from 'react';
29
- var TermsOfUseSubSection = function(param) {
30
- var indices = param.indices, subSection = param.subSection;
31
- var _useMemo = useMemo(function() {
32
- return {
33
- indicesString: indices.reduce(function(prev, curr, i) {
34
- return "".concat(prev).concat(curr).concat(i === indices.length - 1 ? '' : '.');
35
- }, ''),
36
- paddingLeft: Math.max(indices.length - 2, 0) * 16
37
- };
38
- }, [
39
- indices.length,
40
- indices.reduce
41
- ]), indicesString = _useMemo.indicesString, paddingLeft = _useMemo.paddingLeft;
42
- return typeof subSection === 'string' ? /*#__PURE__*/ _jsxs(View, {
43
- style: {
44
- flexDirection: 'row',
45
- paddingLeft: paddingLeft,
46
- columnGap: 16
47
- },
48
- children: [
49
- /*#__PURE__*/ _jsx(Text, {
50
- style: {
51
- fontWeight: 'bold'
52
- },
53
- children: indicesString
54
- }),
55
- /*#__PURE__*/ _jsx(Text, {
56
- style: {
57
- textAlign: 'justify',
58
- flex: 1
59
- },
60
- children: subSection
61
- })
62
- ]
63
- }, indicesString) : 'subSections' in subSection ? /*#__PURE__*/ _jsxs(View, {
64
- style: {
65
- gap: 16
66
- },
67
- children: [
68
- /*#__PURE__*/ _jsxs(View, {
69
- style: {
70
- flexDirection: 'row',
71
- paddingLeft: paddingLeft,
72
- columnGap: 16
73
- },
74
- children: [
75
- /*#__PURE__*/ _jsx(Text, {
76
- style: {
77
- fontWeight: 'bold'
78
- },
79
- children: indicesString
80
- }),
81
- /*#__PURE__*/ _jsx(Text, {
82
- style: {
83
- textAlign: 'justify',
84
- flex: 1
85
- },
86
- children: subSection.paragraph
87
- })
88
- ]
89
- }, indicesString),
90
- subSection.subSections.map(function(subSection, i) {
91
- return /*#__PURE__*/ _jsx(TermsOfUseSubSection, {
92
- indices: _to_consumable_array(indices).concat([
93
- i + 1
94
- ]),
95
- subSection: subSection
96
- }, "".// biome-ignore lint/suspicious/noArrayIndexKey: <explanation>
97
- concat(indices, ".").concat(i));
98
- })
99
- ]
100
- }, indicesString) : null;
4
+ const TermsOfUseSubSection = ({ indices, subSection }) => {
5
+ const { indicesString, paddingLeft } = useMemo(() => ({
6
+ indicesString: indices.reduce((prev, curr, i) => `${prev}${curr}${i === indices.length - 1 ? '' : '.'}`, ''),
7
+ paddingLeft: Math.max(indices.length - 2, 0) * 16,
8
+ }), [indices.length, indices.reduce]);
9
+ return typeof subSection === 'string' ? (_jsxs(View, { style: { flexDirection: 'row', paddingLeft, columnGap: 16 }, children: [_jsx(Text, { style: { fontWeight: 'bold' }, children: indicesString }), _jsx(Text, { style: { textAlign: 'justify', flex: 1 }, children: subSection })] }, indicesString)) : 'subSections' in subSection ? (_jsxs(View, { style: { gap: 16 }, children: [_jsxs(View, { style: { flexDirection: 'row', paddingLeft, columnGap: 16 }, children: [_jsx(Text, { style: { fontWeight: 'bold' }, children: indicesString }), _jsx(Text, { style: { textAlign: 'justify', flex: 1 }, children: subSection.paragraph })] }, indicesString), subSection.subSections.map((subSection, i) => (_jsx(TermsOfUseSubSection, { indices: [...indices, i + 1], subSection: subSection }, `${indices}.${
10
+ // biome-ignore lint/suspicious/noArrayIndexKey: <explanation>
11
+ i}`)))] }, indicesString)) : null;
101
12
  };
102
13
  export default TermsOfUseSubSection;
14
+ //# sourceMappingURL=TermsOfUseSubSection.js.map
@@ -1,179 +1,3 @@
1
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
2
- try {
3
- var info = gen[key](arg);
4
- var value = info.value;
5
- } catch (error) {
6
- reject(error);
7
- return;
8
- }
9
- if (info.done) {
10
- resolve(value);
11
- } else {
12
- Promise.resolve(value).then(_next, _throw);
13
- }
14
- }
15
- function _async_to_generator(fn) {
16
- return function() {
17
- var self = this, args = arguments;
18
- return new Promise(function(resolve, reject) {
19
- var gen = fn.apply(self, args);
20
- function _next(value) {
21
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
22
- }
23
- function _throw(err) {
24
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
25
- }
26
- _next(undefined);
27
- });
28
- };
29
- }
30
- function _define_property(obj, key, value) {
31
- if (key in obj) {
32
- Object.defineProperty(obj, key, {
33
- value: value,
34
- enumerable: true,
35
- configurable: true,
36
- writable: true
37
- });
38
- } else {
39
- obj[key] = value;
40
- }
41
- return obj;
42
- }
43
- function _object_spread(target) {
44
- for(var i = 1; i < arguments.length; i++){
45
- var source = arguments[i] != null ? arguments[i] : {};
46
- var ownKeys = Object.keys(source);
47
- if (typeof Object.getOwnPropertySymbols === "function") {
48
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
49
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
50
- }));
51
- }
52
- ownKeys.forEach(function(key) {
53
- _define_property(target, key, source[key]);
54
- });
55
- }
56
- return target;
57
- }
58
- function ownKeys(object, enumerableOnly) {
59
- var keys = Object.keys(object);
60
- if (Object.getOwnPropertySymbols) {
61
- var symbols = Object.getOwnPropertySymbols(object);
62
- if (enumerableOnly) {
63
- symbols = symbols.filter(function(sym) {
64
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
65
- });
66
- }
67
- keys.push.apply(keys, symbols);
68
- }
69
- return keys;
70
- }
71
- function _object_spread_props(target, source) {
72
- source = source != null ? source : {};
73
- if (Object.getOwnPropertyDescriptors) {
74
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
75
- } else {
76
- ownKeys(Object(source)).forEach(function(key) {
77
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
78
- });
79
- }
80
- return target;
81
- }
82
- function _ts_generator(thisArg, body) {
83
- var f, y, t, g, _ = {
84
- label: 0,
85
- sent: function() {
86
- if (t[0] & 1) throw t[1];
87
- return t[1];
88
- },
89
- trys: [],
90
- ops: []
91
- };
92
- return g = {
93
- next: verb(0),
94
- "throw": verb(1),
95
- "return": verb(2)
96
- }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
97
- return this;
98
- }), g;
99
- function verb(n) {
100
- return function(v) {
101
- return step([
102
- n,
103
- v
104
- ]);
105
- };
106
- }
107
- function step(op) {
108
- if (f) throw new TypeError("Generator is already executing.");
109
- while(_)try {
110
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
111
- if (y = 0, t) op = [
112
- op[0] & 2,
113
- t.value
114
- ];
115
- switch(op[0]){
116
- case 0:
117
- case 1:
118
- t = op;
119
- break;
120
- case 4:
121
- _.label++;
122
- return {
123
- value: op[1],
124
- done: false
125
- };
126
- case 5:
127
- _.label++;
128
- y = op[1];
129
- op = [
130
- 0
131
- ];
132
- continue;
133
- case 7:
134
- op = _.ops.pop();
135
- _.trys.pop();
136
- continue;
137
- default:
138
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
139
- _ = 0;
140
- continue;
141
- }
142
- if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
143
- _.label = op[1];
144
- break;
145
- }
146
- if (op[0] === 6 && _.label < t[1]) {
147
- _.label = t[1];
148
- t = op;
149
- break;
150
- }
151
- if (t && _.label < t[2]) {
152
- _.label = t[2];
153
- _.ops.push(op);
154
- break;
155
- }
156
- if (t[2]) _.ops.pop();
157
- _.trys.pop();
158
- continue;
159
- }
160
- op = body.call(thisArg, _);
161
- } catch (e) {
162
- op = [
163
- 6,
164
- e
165
- ];
166
- y = 0;
167
- } finally{
168
- f = t = 0;
169
- }
170
- if (op[0] & 5) throw op[1];
171
- return {
172
- value: op[0] ? op[1] : void 0,
173
- done: true
174
- };
175
- }
176
- }
177
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
178
2
  import { Document } from '@react-pdf/renderer';
179
3
  import { useMemo } from 'react';
@@ -184,83 +8,25 @@ import Details from './Details.js';
184
8
  import SubscriptionAgreementPage from './SubscriptionAgreementPage.js';
185
9
  import TermsOfUse from './TermsOfUse.js';
186
10
  import { useTranslations } from './translations.js';
187
- export var generateSubscriptionAgreementPdf = /*#__PURE__*/ function() {
188
- var _ref = _async_to_generator(function(param, fileName) {
189
- var _param_locale, locale, subscription;
190
- return _ts_generator(this, function(_state) {
191
- switch(_state.label){
192
- case 0:
193
- _param_locale = param.locale, locale = _param_locale === void 0 ? 'en' : _param_locale, subscription = param.subscription;
194
- if (!subscription.signature) {
195
- throw new Error('Signature not found');
196
- }
197
- return [
198
- 4,
199
- toPdf(/*#__PURE__*/ _jsx(SubscriptionAgreement, {
200
- locale: locale,
201
- signature: subscription.signature,
202
- subscription: subscription
203
- }), fileName)
204
- ];
205
- case 1:
206
- return [
207
- 2,
208
- _state.sent()
209
- ];
210
- }
211
- });
212
- });
213
- return function generateSubscriptionAgreementPdf(_, fileName) {
214
- return _ref.apply(this, arguments);
215
- };
216
- }();
217
- var SubscriptionAgreement = function(param) {
218
- var _param_locale = param.locale, locale = _param_locale === void 0 ? 'en' : _param_locale, signature = param.signature, subscription = param.subscription;
11
+ export const generateSubscriptionAgreementPdf = async ({ locale = 'en', subscription }, fileName) => {
12
+ if (!subscription.signature) {
13
+ throw new Error('Signature not found');
14
+ }
15
+ return await toPdf(_jsx(SubscriptionAgreement, { locale: locale, signature: subscription.signature, subscription: subscription }), fileName);
16
+ };
17
+ const SubscriptionAgreement = ({ locale = 'en', signature, subscription, }) => {
219
18
  if (!signature.signedAt) {
220
- throw new Error("Missing 'signature.signedAt'");
19
+ throw new Error(`Missing 'signature.signedAt'`);
221
20
  }
222
- var useT = useTranslations(locale);
223
- var pageProps = useMemo(function() {
21
+ const useT = useTranslations(locale);
22
+ const pageProps = useMemo(() => {
224
23
  return {
225
24
  t: useT,
226
25
  userId: subscription.userId,
227
- subscriptionId: subscription.id
26
+ subscriptionId: subscription.id,
228
27
  };
229
- }, [
230
- subscription.userId,
231
- subscription.id,
232
- useT
233
- ]);
234
- var t = pageProps.t;
235
- return /*#__PURE__*/ _jsxs(Document, {
236
- title: t.title,
237
- language: locale,
238
- children: [
239
- /*#__PURE__*/ _jsx(SubscriptionAgreementPage, _object_spread_props(_object_spread({}, pageProps), {
240
- children: /*#__PURE__*/ _jsx(CoverPage, {
241
- tTitle: t.title,
242
- tCover: t.cover,
243
- signedAt: signature.signedAt,
244
- user: subscription.user
245
- })
246
- })),
247
- /*#__PURE__*/ _jsx(SubscriptionAgreementPage, _object_spread_props(_object_spread({}, pageProps), {
248
- children: /*#__PURE__*/ _jsx(TermsOfUse, {
249
- t: t.termsOfUse
250
- })
251
- })),
252
- /*#__PURE__*/ _jsxs(SubscriptionAgreementPage, _object_spread_props(_object_spread({}, pageProps), {
253
- children: [
254
- /*#__PURE__*/ _jsx(Details, {
255
- tDetails: t.details,
256
- subscription: subscription
257
- }),
258
- /*#__PURE__*/ _jsx(Confirmation, {
259
- tConfirmation: t.confirmation,
260
- subscription: subscription
261
- })
262
- ]
263
- }))
264
- ]
265
- });
28
+ }, [subscription.userId, subscription.id, useT]);
29
+ const { t } = pageProps;
30
+ return (_jsxs(Document, { title: t.title, language: locale, children: [_jsx(SubscriptionAgreementPage, { ...pageProps, children: _jsx(CoverPage, { tTitle: t.title, tCover: t.cover, signedAt: signature.signedAt, user: subscription.user }) }), _jsx(SubscriptionAgreementPage, { ...pageProps, children: _jsx(TermsOfUse, { t: t.termsOfUse }) }), _jsxs(SubscriptionAgreementPage, { ...pageProps, children: [_jsx(Details, { tDetails: t.details, subscription: subscription }), _jsx(Confirmation, { tConfirmation: t.confirmation, subscription: subscription })] })] }));
266
31
  };
32
+ //# sourceMappingURL=index.js.map
package/dist/utils.js CHANGED
@@ -1,174 +1,24 @@
1
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
2
- try {
3
- var info = gen[key](arg);
4
- var value = info.value;
5
- } catch (error) {
6
- reject(error);
7
- return;
8
- }
9
- if (info.done) {
10
- resolve(value);
11
- } else {
12
- Promise.resolve(value).then(_next, _throw);
13
- }
14
- }
15
- function _async_to_generator(fn) {
16
- return function() {
17
- var self = this, args = arguments;
18
- return new Promise(function(resolve, reject) {
19
- var gen = fn.apply(self, args);
20
- function _next(value) {
21
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
22
- }
23
- function _throw(err) {
24
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
25
- }
26
- _next(undefined);
27
- });
28
- };
29
- }
30
- function _ts_generator(thisArg, body) {
31
- var f, y, t, g, _ = {
32
- label: 0,
33
- sent: function() {
34
- if (t[0] & 1) throw t[1];
35
- return t[1];
36
- },
37
- trys: [],
38
- ops: []
39
- };
40
- return g = {
41
- next: verb(0),
42
- "throw": verb(1),
43
- "return": verb(2)
44
- }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
45
- return this;
46
- }), g;
47
- function verb(n) {
48
- return function(v) {
49
- return step([
50
- n,
51
- v
52
- ]);
53
- };
54
- }
55
- function step(op) {
56
- if (f) throw new TypeError("Generator is already executing.");
57
- while(_)try {
58
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
59
- if (y = 0, t) op = [
60
- op[0] & 2,
61
- t.value
62
- ];
63
- switch(op[0]){
64
- case 0:
65
- case 1:
66
- t = op;
67
- break;
68
- case 4:
69
- _.label++;
70
- return {
71
- value: op[1],
72
- done: false
73
- };
74
- case 5:
75
- _.label++;
76
- y = op[1];
77
- op = [
78
- 0
79
- ];
80
- continue;
81
- case 7:
82
- op = _.ops.pop();
83
- _.trys.pop();
84
- continue;
85
- default:
86
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
87
- _ = 0;
88
- continue;
89
- }
90
- if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
91
- _.label = op[1];
92
- break;
93
- }
94
- if (op[0] === 6 && _.label < t[1]) {
95
- _.label = t[1];
96
- t = op;
97
- break;
98
- }
99
- if (t && _.label < t[2]) {
100
- _.label = t[2];
101
- _.ops.push(op);
102
- break;
103
- }
104
- if (t[2]) _.ops.pop();
105
- _.trys.pop();
106
- continue;
107
- }
108
- op = body.call(thisArg, _);
109
- } catch (e) {
110
- op = [
111
- 6,
112
- e
113
- ];
114
- y = 0;
115
- } finally{
116
- f = t = 0;
117
- }
118
- if (op[0] & 5) throw op[1];
119
- return {
120
- value: op[0] ? op[1] : void 0,
121
- done: true
122
- };
123
- }
124
- }
125
1
  import ReactPDF from '@react-pdf/renderer';
126
2
  /**
127
3
  *
128
4
  * @param document React PDF Document element
129
5
  * @param fileName DO NOT USE THIS IN NEXT.JS APP, as Vercel does not allow us to amend files. This will generate a PDF file in the given fileName
130
6
  * @returns PDF Buffer
131
- */ export var toPdf = /*#__PURE__*/ function() {
132
- var _ref = _async_to_generator(function(document, fileName) {
133
- var stream;
134
- return _ts_generator(this, function(_state) {
135
- switch(_state.label){
136
- case 0:
137
- if (!fileName) return [
138
- 3,
139
- 2
140
- ];
141
- return [
142
- 4,
143
- ReactPDF.renderToFile(document, fileName)
144
- ];
145
- case 1:
146
- _state.sent();
147
- _state.label = 2;
148
- case 2:
149
- return [
150
- 4,
151
- ReactPDF.renderToStream(document)
152
- ];
153
- case 3:
154
- stream = _state.sent();
155
- return [
156
- 2,
157
- new Promise(function(resolve, reject) {
158
- var buffers = [];
159
- stream.on('data', function(data) {
160
- buffers.push(data);
161
- });
162
- stream.on('end', function() {
163
- resolve(Buffer.concat(buffers));
164
- });
165
- stream.on('error', reject);
166
- })
167
- ];
168
- }
7
+ */
8
+ export const toPdf = async (document, fileName) => {
9
+ if (fileName) {
10
+ await ReactPDF.renderToFile(document, fileName);
11
+ }
12
+ const stream = await ReactPDF.renderToStream(document);
13
+ return new Promise((resolve, reject) => {
14
+ const buffers = [];
15
+ stream.on('data', (data) => {
16
+ buffers.push(data);
17
+ });
18
+ stream.on('end', () => {
19
+ resolve(Buffer.concat(buffers));
169
20
  });
21
+ stream.on('error', reject);
170
22
  });
171
- return function toPdf(document, fileName) {
172
- return _ref.apply(this, arguments);
173
- };
174
- }();
23
+ };
24
+ //# sourceMappingURL=utils.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@driveflux/pdf",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -12,7 +12,7 @@
12
12
  "dist"
13
13
  ],
14
14
  "dependencies": {
15
- "@driveflux/db": "2.0.2",
15
+ "@driveflux/db": "2.0.3",
16
16
  "@driveflux/env": "1.5.0",
17
17
  "@driveflux/format-money": "5.4.0",
18
18
  "@driveflux/time": "4.4.0",