@purpleschool/rugpt-lib-common 0.0.14 → 0.0.16
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/enums/index.js +1 -0
- package/build/enums/locale.enum.js +8 -0
- package/build/errors/errors.js +5 -0
- package/enums/index.ts +1 -0
- package/enums/locale.enum.ts +4 -0
- package/errors/errors.ts +5 -0
- package/package.json +1 -1
package/build/enums/index.js
CHANGED
package/build/errors/errors.js
CHANGED
|
@@ -4828,6 +4828,11 @@ exports.ERRORS = {
|
|
|
4828
4828
|
httpCode: 403,
|
|
4829
4829
|
message: "Team account operation is forbidden",
|
|
4830
4830
|
},
|
|
4831
|
+
TEAM_ACCOUNT_MEMBERS_LIMIT_EXCEEDED: {
|
|
4832
|
+
code: "TEAM_ACCOUNT_MEMBERS_LIMIT_EXCEEDED",
|
|
4833
|
+
httpCode: 403,
|
|
4834
|
+
message: "Team members limit exceeded",
|
|
4835
|
+
},
|
|
4831
4836
|
TEAM_ACCOUNT_INVITE_ERROR: {
|
|
4832
4837
|
code: "TEAM_ACCOUNT_INVITE_ERROR",
|
|
4833
4838
|
httpCode: 500,
|
package/enums/index.ts
CHANGED
package/errors/errors.ts
CHANGED
|
@@ -5080,6 +5080,11 @@ export const ERRORS = {
|
|
|
5080
5080
|
httpCode: 403,
|
|
5081
5081
|
message: "Team account operation is forbidden",
|
|
5082
5082
|
},
|
|
5083
|
+
TEAM_ACCOUNT_MEMBERS_LIMIT_EXCEEDED: {
|
|
5084
|
+
code: "TEAM_ACCOUNT_MEMBERS_LIMIT_EXCEEDED",
|
|
5085
|
+
httpCode: 403,
|
|
5086
|
+
message: "Team members limit exceeded",
|
|
5087
|
+
},
|
|
5083
5088
|
TEAM_ACCOUNT_INVITE_ERROR: {
|
|
5084
5089
|
code: "TEAM_ACCOUNT_INVITE_ERROR",
|
|
5085
5090
|
httpCode: 500,
|