@mtgame/core 0.1.87 → 0.1.88

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.
@@ -0,0 +1,5 @@
1
+ export declare const OrganizationStatusesLocalization: {
2
+ 1: string;
3
+ 2: string;
4
+ 3: string;
5
+ };
@@ -11,3 +11,4 @@ export * from './team-event-type';
11
11
  export * from './team-user-role';
12
12
  export * from './user-profile';
13
13
  export * from './volleyball-game-log-types';
14
+ export * from './organization-statuses';
@@ -2,7 +2,8 @@ import { BaseModel } from './util';
2
2
  import { User } from './user';
3
3
  export declare enum OrganizationStatuses {
4
4
  active = 1,
5
- blocked = 2
5
+ blocked = 2,
6
+ not_confirmed = 3
6
7
  }
7
8
  export declare class Organization extends BaseModel {
8
9
  id: number;