@lancom/shared 0.0.200 → 0.0.201

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.
@@ -124,6 +124,9 @@ const api = {
124
124
  saveQuoteRequest(quote, shop) {
125
125
  return quote._id ? _put(`shop/${shop}/quotes/${quote._id}`, quote) : _post(`shop/${shop}/quotes`, quote);
126
126
  },
127
+ generateQuotePDF(id, option) {
128
+ return _get(`quotes/${id}/option/${option}/pdf`);
129
+ },
127
130
  addQuoteQuestion(quote, shop, data) {
128
131
  return _post(`shop/${shop}/quotes/${quote._id}/questions`, data);
129
132
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.200",
3
+ "version": "0.0.201",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {