@astro-sports-developers/models 1.0.13 → 1.0.15

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.
@@ -1,6 +1,6 @@
1
- import { Timestamp } from "firebase/firestore";
2
- import { M_MediaFileV1 } from "./M_MediaFile";
3
- import { M_Product_V1 } from "./M_Product.model";
1
+ import { Timestamp } from 'firebase/firestore';
2
+ import { M_MediaFileV1 } from './M_MediaFile';
3
+ import { M_Product_V1 } from './M_Product.model';
4
4
  export interface M_Event_V2 {
5
5
  E_ORG_Id?: string;
6
6
  E_SP_Id?: string;
@@ -9,7 +9,7 @@ export interface M_Event_V2 {
9
9
  E_MasterAdminUid?: string;
10
10
  E_UserCreated?: string;
11
11
  E_Active: boolean;
12
- E_EventName?: string;
12
+ E_Name?: string;
13
13
  E_Type: 'Tournament' | 'Media Day' | 'Camp' | 'League' | 'Other';
14
14
  E_EventStatus?: string;
15
15
  E_Address?: string;
@@ -30,9 +30,12 @@ export interface M_Event_V2 {
30
30
  createdAt?: any;
31
31
  updatedAt?: any;
32
32
  delete?: boolean;
33
- version?: 'v2';
33
+ version?: 'v3';
34
34
  }
35
35
  export interface M_EventMini {
36
+ E_ORG_Id?: string;
37
+ E_SP_Id?: string;
38
+ E_TOU_Id?: string;
36
39
  E_Id?: string;
37
40
  E_EventName?: string;
38
41
  E_Type: 'Tournament' | 'Media Day' | 'Camp' | 'League' | 'Other';
@@ -41,6 +44,7 @@ export interface M_EventMini {
41
44
  E_Description?: string;
42
45
  E_CoverByAstro?: boolean;
43
46
  E_AstroStatus?: string;
47
+ E_LogoUrl?: M_MediaFileV1;
44
48
  E_ImageUrl?: M_MediaFileV1;
45
49
  E_DateOptions?: Timestamp[] | Date[];
46
50
  createdAt?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astro-sports-developers/models",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Astro shared models library",
5
5
  "main": "bundles/astro-models.umd.js",
6
6
  "module": "fesm2022/astro-sports-developers-models.mjs",