@orlikfy/api-interfaces 6.1.0 → 6.1.2
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/api.d.ts +5 -1
- package/dist/api.js +3 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2188,6 +2188,7 @@ export interface components {
|
|
|
2188
2188
|
gameContactPhone?: string | null;
|
|
2189
2189
|
visibility?: components["schemas"]["visibility"];
|
|
2190
2190
|
locationType?: components["schemas"]["AppGameLocationType"];
|
|
2191
|
+
teamId?: string | null;
|
|
2191
2192
|
};
|
|
2192
2193
|
HostedGameDtoLocation: {
|
|
2193
2194
|
locationId: string;
|
|
@@ -7691,7 +7692,10 @@ export declare enum KnownException {
|
|
|
7691
7692
|
UserNameAndSurnameCannotBeEmpty = "UserNameAndSurnameCannotBeEmpty",
|
|
7692
7693
|
UserNameAndSurnameCannotBeEmptyToCreateGame = "UserNameAndSurnameCannotBeEmptyToCreateGame",
|
|
7693
7694
|
UserDisplayNameNotSet = "UserDisplayNameNotSet",
|
|
7694
|
-
YouHaveAlreadyGivenThisComment = "YouHaveAlreadyGivenThisComment"
|
|
7695
|
+
YouHaveAlreadyGivenThisComment = "YouHaveAlreadyGivenThisComment",
|
|
7696
|
+
NotAMemberOfTeam = "NotAMemberOfTeam",
|
|
7697
|
+
CannotCreateMultipleTeams = "CannotCreateMultipleTeams",
|
|
7698
|
+
NotTheHostOfTeam = "NotTheHostOfTeam"
|
|
7695
7699
|
}
|
|
7696
7700
|
export declare enum Visibility {
|
|
7697
7701
|
PUBLIC = "PUBLIC",
|
package/dist/api.js
CHANGED
|
@@ -32,6 +32,9 @@ var KnownException;
|
|
|
32
32
|
KnownException["UserNameAndSurnameCannotBeEmptyToCreateGame"] = "UserNameAndSurnameCannotBeEmptyToCreateGame";
|
|
33
33
|
KnownException["UserDisplayNameNotSet"] = "UserDisplayNameNotSet";
|
|
34
34
|
KnownException["YouHaveAlreadyGivenThisComment"] = "YouHaveAlreadyGivenThisComment";
|
|
35
|
+
KnownException["NotAMemberOfTeam"] = "NotAMemberOfTeam";
|
|
36
|
+
KnownException["CannotCreateMultipleTeams"] = "CannotCreateMultipleTeams";
|
|
37
|
+
KnownException["NotTheHostOfTeam"] = "NotTheHostOfTeam";
|
|
35
38
|
})(KnownException || (exports.KnownException = KnownException = {}));
|
|
36
39
|
var Visibility;
|
|
37
40
|
(function (Visibility) {
|