@scoreboardmax/api-types 1.0.36 → 1.0.37
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/dist/index.cjs +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +1 -0
- package/dist/internal.cjs +1 -0
- package/dist/internal.d.ts +2 -0
- package/dist/internal.mjs +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -154,6 +154,7 @@ var ErrorCode;
|
|
|
154
154
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
155
155
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
156
156
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
157
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
157
158
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
158
159
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
159
160
|
ErrorCode["InvalidInput"] = "InvalidInput";
|
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ export declare enum ErrorCode {
|
|
|
120
120
|
InsufficientResourcePermissions = "InsufficientResourcePermissions",
|
|
121
121
|
InsufficientResourceItemPermissions = "InsufficientResourceItemPermissions",
|
|
122
122
|
InvalidAuthType = "InvalidAuthType",
|
|
123
|
+
InvalidCaptchaToken = "InvalidCaptchaToken",
|
|
123
124
|
InvalidColorFormat = "InvalidColorFormat",
|
|
124
125
|
InvalidDate = "InvalidDate",
|
|
125
126
|
InvalidInput = "InvalidInput",
|
|
@@ -706,6 +707,7 @@ export interface NewAccountRequest {
|
|
|
706
707
|
email: string;
|
|
707
708
|
password: string;
|
|
708
709
|
name?: string;
|
|
710
|
+
captchaToken?: string;
|
|
709
711
|
}
|
|
710
712
|
export interface NumberInput extends BaseInput {
|
|
711
713
|
type: "number";
|
package/dist/index.mjs
CHANGED
|
@@ -145,6 +145,7 @@ export var ErrorCode;
|
|
|
145
145
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
146
146
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
147
147
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
148
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
148
149
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
149
150
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
150
151
|
ErrorCode["InvalidInput"] = "InvalidInput";
|
package/dist/internal.cjs
CHANGED
|
@@ -173,6 +173,7 @@ var ErrorCode;
|
|
|
173
173
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
174
174
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
175
175
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
176
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
176
177
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
177
178
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
178
179
|
ErrorCode["InvalidInput"] = "InvalidInput";
|
package/dist/internal.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ export declare enum ErrorCode {
|
|
|
127
127
|
InsufficientResourcePermissions = "InsufficientResourcePermissions",
|
|
128
128
|
InsufficientResourceItemPermissions = "InsufficientResourceItemPermissions",
|
|
129
129
|
InvalidAuthType = "InvalidAuthType",
|
|
130
|
+
InvalidCaptchaToken = "InvalidCaptchaToken",
|
|
130
131
|
InvalidColorFormat = "InvalidColorFormat",
|
|
131
132
|
InvalidDate = "InvalidDate",
|
|
132
133
|
InvalidInput = "InvalidInput",
|
|
@@ -724,6 +725,7 @@ export interface NewAccountRequest {
|
|
|
724
725
|
email: string;
|
|
725
726
|
password: string;
|
|
726
727
|
name?: string;
|
|
728
|
+
captchaToken?: string;
|
|
727
729
|
}
|
|
728
730
|
export interface NumberInput extends BaseInput {
|
|
729
731
|
type: "number";
|
package/dist/internal.mjs
CHANGED
|
@@ -160,6 +160,7 @@ export var ErrorCode;
|
|
|
160
160
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
161
161
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
162
162
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
163
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
163
164
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
164
165
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
165
166
|
ErrorCode["InvalidInput"] = "InvalidInput";
|