@astro-sports-developers/models 1.0.15 → 1.0.16
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"astro-sports-developers-models.mjs","sources":["../../../projects/models/src/astro-sports-developers-models.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"astro-sports-developers-models.mjs","sources":["../../../projects/models/src/lib/models/M_Dictionary.models.ts","../../../projects/models/src/astro-sports-developers-models.ts"],"sourcesContent":["import { Timestamp } from 'firebase/firestore';\r\nimport { M_MediaFileV1 } from './M_MediaFile';\r\n\r\nexport const countries = [\r\n { variable: 'US', name: 'United States of America' },\r\n 'CA',\r\n 'MX',\r\n] as const;\r\n\r\nexport interface M_DictionaryTournamentItem {\r\n ORG_Id?: string;\r\n TOU_Id?: string;\r\n\r\n TOU_Tier: string;\r\n\r\n TOU_Name: string;\r\n TOU_ShortDescription?: string;\r\n\r\n TOU_State: string;\r\n TOU_City: string;\r\n TOU_StartDate?: Date | Timestamp;\r\n TOU_EndDate?: Date | Timestamp;\r\n\r\n TOU_LogoURL?: M_MediaFileV1;\r\n\r\n TOU_Type?: string;\r\n TOU_Gender?: string;\r\n TOU_Status?: string;\r\n\r\n TOU_IsCoverByAstro?: boolean;\r\n TOU_AstroStatus?: string;\r\n\r\n version: '1';\r\n}\r\n\r\nexport interface M_TOU_Dictionary_V1 {\r\n country: string;\r\n state: string;\r\n year: string;\r\n month: string;\r\n yearMonth: string;\r\n countryStateYearMonth: string; //<--Esta sera el de lectura.\r\n\r\n tournaments: M_DictionaryTournamentItem[];\r\n\r\n updateAt: Timestamp | Date;\r\n version: '1';\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAGa,MAAA,SAAS,GAAG;AACvB,IAAA,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,0BAA0B,EAAE;IACpD,IAAI;IACJ,IAAI;;;ACNN;;AAEG;;;;"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Timestamp } from 'firebase/firestore';
|
|
2
|
+
import { M_MediaFileV1 } from './M_MediaFile';
|
|
3
|
+
export declare const countries: readonly [{
|
|
4
|
+
readonly variable: "US";
|
|
5
|
+
readonly name: "United States of America";
|
|
6
|
+
}, "CA", "MX"];
|
|
7
|
+
export interface M_DictionaryTournamentItem {
|
|
8
|
+
ORG_Id?: string;
|
|
9
|
+
TOU_Id?: string;
|
|
10
|
+
TOU_Tier: string;
|
|
11
|
+
TOU_Name: string;
|
|
12
|
+
TOU_ShortDescription?: string;
|
|
13
|
+
TOU_State: string;
|
|
14
|
+
TOU_City: string;
|
|
15
|
+
TOU_StartDate?: Date | Timestamp;
|
|
16
|
+
TOU_EndDate?: Date | Timestamp;
|
|
17
|
+
TOU_LogoURL?: M_MediaFileV1;
|
|
18
|
+
TOU_Type?: string;
|
|
19
|
+
TOU_Gender?: string;
|
|
20
|
+
TOU_Status?: string;
|
|
21
|
+
TOU_IsCoverByAstro?: boolean;
|
|
22
|
+
TOU_AstroStatus?: string;
|
|
23
|
+
version: '1';
|
|
24
|
+
}
|
|
25
|
+
export interface M_TOU_Dictionary_V1 {
|
|
26
|
+
country: string;
|
|
27
|
+
state: string;
|
|
28
|
+
year: string;
|
|
29
|
+
month: string;
|
|
30
|
+
yearMonth: string;
|
|
31
|
+
countryStateYearMonth: string;
|
|
32
|
+
tournaments: M_DictionaryTournamentItem[];
|
|
33
|
+
updateAt: Timestamp | Date;
|
|
34
|
+
version: '1';
|
|
35
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED