@scoreboardmax/api-types 1.0.36 → 1.0.38
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 +3 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.mjs +3 -0
- package/dist/internal.cjs +3 -0
- package/dist/internal.d.ts +4 -0
- package/dist/internal.mjs +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -61,6 +61,8 @@ var ApiResource;
|
|
|
61
61
|
ApiResource["RosterList"] = "rosterList";
|
|
62
62
|
ApiResource["Scoreboard"] = "scoreboard";
|
|
63
63
|
ApiResource["ScoreboardList"] = "scoreboardList";
|
|
64
|
+
ApiResource["ScoreboardLog"] = "scoreboardLog";
|
|
65
|
+
ApiResource["ScoreboardLogList"] = "scoreboardLogList";
|
|
64
66
|
ApiResource["Sponsor"] = "sponsor";
|
|
65
67
|
ApiResource["SponsorList"] = "sponsorList";
|
|
66
68
|
ApiResource["Team"] = "team";
|
|
@@ -154,6 +156,7 @@ var ErrorCode;
|
|
|
154
156
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
155
157
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
156
158
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
159
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
157
160
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
158
161
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
159
162
|
ErrorCode["InvalidInput"] = "InvalidInput";
|
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export declare enum ApiResource {
|
|
|
38
38
|
RosterList = "rosterList",
|
|
39
39
|
Scoreboard = "scoreboard",
|
|
40
40
|
ScoreboardList = "scoreboardList",
|
|
41
|
+
ScoreboardLog = "scoreboardLog",
|
|
42
|
+
ScoreboardLogList = "scoreboardLogList",
|
|
41
43
|
Sponsor = "sponsor",
|
|
42
44
|
SponsorList = "sponsorList",
|
|
43
45
|
Team = "team",
|
|
@@ -120,6 +122,7 @@ export declare enum ErrorCode {
|
|
|
120
122
|
InsufficientResourcePermissions = "InsufficientResourcePermissions",
|
|
121
123
|
InsufficientResourceItemPermissions = "InsufficientResourceItemPermissions",
|
|
122
124
|
InvalidAuthType = "InvalidAuthType",
|
|
125
|
+
InvalidCaptchaToken = "InvalidCaptchaToken",
|
|
123
126
|
InvalidColorFormat = "InvalidColorFormat",
|
|
124
127
|
InvalidDate = "InvalidDate",
|
|
125
128
|
InvalidInput = "InvalidInput",
|
|
@@ -706,6 +709,7 @@ export interface NewAccountRequest {
|
|
|
706
709
|
email: string;
|
|
707
710
|
password: string;
|
|
708
711
|
name?: string;
|
|
712
|
+
captchaToken?: string;
|
|
709
713
|
}
|
|
710
714
|
export interface NumberInput extends BaseInput {
|
|
711
715
|
type: "number";
|
package/dist/index.mjs
CHANGED
|
@@ -52,6 +52,8 @@ export var ApiResource;
|
|
|
52
52
|
ApiResource["RosterList"] = "rosterList";
|
|
53
53
|
ApiResource["Scoreboard"] = "scoreboard";
|
|
54
54
|
ApiResource["ScoreboardList"] = "scoreboardList";
|
|
55
|
+
ApiResource["ScoreboardLog"] = "scoreboardLog";
|
|
56
|
+
ApiResource["ScoreboardLogList"] = "scoreboardLogList";
|
|
55
57
|
ApiResource["Sponsor"] = "sponsor";
|
|
56
58
|
ApiResource["SponsorList"] = "sponsorList";
|
|
57
59
|
ApiResource["Team"] = "team";
|
|
@@ -145,6 +147,7 @@ export var ErrorCode;
|
|
|
145
147
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
146
148
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
147
149
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
150
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
148
151
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
149
152
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
150
153
|
ErrorCode["InvalidInput"] = "InvalidInput";
|
package/dist/internal.cjs
CHANGED
|
@@ -80,6 +80,8 @@ var ApiResource;
|
|
|
80
80
|
ApiResource["RosterList"] = "rosterList";
|
|
81
81
|
ApiResource["Scoreboard"] = "scoreboard";
|
|
82
82
|
ApiResource["ScoreboardList"] = "scoreboardList";
|
|
83
|
+
ApiResource["ScoreboardLog"] = "scoreboardLog";
|
|
84
|
+
ApiResource["ScoreboardLogList"] = "scoreboardLogList";
|
|
83
85
|
ApiResource["Sponsor"] = "sponsor";
|
|
84
86
|
ApiResource["SponsorList"] = "sponsorList";
|
|
85
87
|
ApiResource["Team"] = "team";
|
|
@@ -173,6 +175,7 @@ var ErrorCode;
|
|
|
173
175
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
174
176
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
175
177
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
178
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
176
179
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
177
180
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
178
181
|
ErrorCode["InvalidInput"] = "InvalidInput";
|
package/dist/internal.d.ts
CHANGED
|
@@ -45,6 +45,8 @@ export declare enum ApiResource {
|
|
|
45
45
|
RosterList = "rosterList",
|
|
46
46
|
Scoreboard = "scoreboard",
|
|
47
47
|
ScoreboardList = "scoreboardList",
|
|
48
|
+
ScoreboardLog = "scoreboardLog",
|
|
49
|
+
ScoreboardLogList = "scoreboardLogList",
|
|
48
50
|
Sponsor = "sponsor",
|
|
49
51
|
SponsorList = "sponsorList",
|
|
50
52
|
Team = "team",
|
|
@@ -127,6 +129,7 @@ export declare enum ErrorCode {
|
|
|
127
129
|
InsufficientResourcePermissions = "InsufficientResourcePermissions",
|
|
128
130
|
InsufficientResourceItemPermissions = "InsufficientResourceItemPermissions",
|
|
129
131
|
InvalidAuthType = "InvalidAuthType",
|
|
132
|
+
InvalidCaptchaToken = "InvalidCaptchaToken",
|
|
130
133
|
InvalidColorFormat = "InvalidColorFormat",
|
|
131
134
|
InvalidDate = "InvalidDate",
|
|
132
135
|
InvalidInput = "InvalidInput",
|
|
@@ -724,6 +727,7 @@ export interface NewAccountRequest {
|
|
|
724
727
|
email: string;
|
|
725
728
|
password: string;
|
|
726
729
|
name?: string;
|
|
730
|
+
captchaToken?: string;
|
|
727
731
|
}
|
|
728
732
|
export interface NumberInput extends BaseInput {
|
|
729
733
|
type: "number";
|
package/dist/internal.mjs
CHANGED
|
@@ -67,6 +67,8 @@ export var ApiResource;
|
|
|
67
67
|
ApiResource["RosterList"] = "rosterList";
|
|
68
68
|
ApiResource["Scoreboard"] = "scoreboard";
|
|
69
69
|
ApiResource["ScoreboardList"] = "scoreboardList";
|
|
70
|
+
ApiResource["ScoreboardLog"] = "scoreboardLog";
|
|
71
|
+
ApiResource["ScoreboardLogList"] = "scoreboardLogList";
|
|
70
72
|
ApiResource["Sponsor"] = "sponsor";
|
|
71
73
|
ApiResource["SponsorList"] = "sponsorList";
|
|
72
74
|
ApiResource["Team"] = "team";
|
|
@@ -160,6 +162,7 @@ export var ErrorCode;
|
|
|
160
162
|
ErrorCode["InsufficientResourcePermissions"] = "InsufficientResourcePermissions";
|
|
161
163
|
ErrorCode["InsufficientResourceItemPermissions"] = "InsufficientResourceItemPermissions";
|
|
162
164
|
ErrorCode["InvalidAuthType"] = "InvalidAuthType";
|
|
165
|
+
ErrorCode["InvalidCaptchaToken"] = "InvalidCaptchaToken";
|
|
163
166
|
ErrorCode["InvalidColorFormat"] = "InvalidColorFormat";
|
|
164
167
|
ErrorCode["InvalidDate"] = "InvalidDate";
|
|
165
168
|
ErrorCode["InvalidInput"] = "InvalidInput";
|