@purpleschool/rugpt-lib-common 0.0.16 → 0.0.17
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/build/errors/errors.js +5 -0
- package/errors/errors.ts +5 -0
- package/package.json +1 -1
package/build/errors/errors.js
CHANGED
|
@@ -2217,6 +2217,11 @@ exports.ERRORS = {
|
|
|
2217
2217
|
httpCode: 404,
|
|
2218
2218
|
message: "Шаблон презентации не найден",
|
|
2219
2219
|
},
|
|
2220
|
+
NOT_AVAILABLE: {
|
|
2221
|
+
code: "PRESENTATION_TEMPLATE.NOT_AVAILABLE",
|
|
2222
|
+
httpCode: 403,
|
|
2223
|
+
message: "Шаблон презентации доступен только платным пользователям",
|
|
2224
|
+
},
|
|
2220
2225
|
},
|
|
2221
2226
|
PRODUCT: {
|
|
2222
2227
|
BUY_ERROR: {
|
package/errors/errors.ts
CHANGED
|
@@ -2339,6 +2339,11 @@ export const ERRORS = {
|
|
|
2339
2339
|
httpCode: 404,
|
|
2340
2340
|
message: "Шаблон презентации не найден",
|
|
2341
2341
|
},
|
|
2342
|
+
NOT_AVAILABLE: {
|
|
2343
|
+
code: "PRESENTATION_TEMPLATE.NOT_AVAILABLE",
|
|
2344
|
+
httpCode: 403,
|
|
2345
|
+
message: "Шаблон презентации доступен только платным пользователям",
|
|
2346
|
+
},
|
|
2342
2347
|
},
|
|
2343
2348
|
PRODUCT: {
|
|
2344
2349
|
BUY_ERROR: {
|