@purpleschool/rugpt-lib-common 0.0.59 → 0.0.60
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 +7 -0
- package/errors/errors.ts +7 -0
- package/package.json +1 -1
package/build/errors/errors.js
CHANGED
|
@@ -6461,4 +6461,11 @@ exports.ERRORS = {
|
|
|
6461
6461
|
httpCode: 500,
|
|
6462
6462
|
},
|
|
6463
6463
|
},
|
|
6464
|
+
AGENT_STATISTICS: {
|
|
6465
|
+
GET_ERROR: {
|
|
6466
|
+
code: "AGENT_STATISTICS.GET_ERROR",
|
|
6467
|
+
message: "Произошла ошибка при получении статистики агента",
|
|
6468
|
+
httpCode: 500,
|
|
6469
|
+
},
|
|
6470
|
+
},
|
|
6464
6471
|
};
|
package/errors/errors.ts
CHANGED
|
@@ -6632,4 +6632,11 @@ export const ERRORS = {
|
|
|
6632
6632
|
httpCode: 500,
|
|
6633
6633
|
},
|
|
6634
6634
|
},
|
|
6635
|
+
AGENT_STATISTICS: {
|
|
6636
|
+
GET_ERROR: {
|
|
6637
|
+
code: "AGENT_STATISTICS.GET_ERROR",
|
|
6638
|
+
message: "Произошла ошибка при получении статистики агента",
|
|
6639
|
+
httpCode: 500,
|
|
6640
|
+
},
|
|
6641
|
+
},
|
|
6635
6642
|
};
|