@astro-sports-developers/models 1.0.16 → 1.0.17
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/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
|
|
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 { variable: 'CA', name: 'Canada' },\r\n { variable: 'MX', name: 'Mexico' },\r\n] as const;\r\n\r\nexport interface M_DictionaryTournamentItem_V1_1 {\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_Country: string;\r\n TOU_State: string;\r\n TOU_City: string;\r\n\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.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_V1_1[];\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;AACpD,IAAA,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE;AAClC,IAAA,EAAE,QAAQ,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE;;;ACNpC;;AAEG;;;;"}
|
|
@@ -3,13 +3,20 @@ import { M_MediaFileV1 } from './M_MediaFile';
|
|
|
3
3
|
export declare const countries: readonly [{
|
|
4
4
|
readonly variable: "US";
|
|
5
5
|
readonly name: "United States of America";
|
|
6
|
-
},
|
|
7
|
-
|
|
6
|
+
}, {
|
|
7
|
+
readonly variable: "CA";
|
|
8
|
+
readonly name: "Canada";
|
|
9
|
+
}, {
|
|
10
|
+
readonly variable: "MX";
|
|
11
|
+
readonly name: "Mexico";
|
|
12
|
+
}];
|
|
13
|
+
export interface M_DictionaryTournamentItem_V1_1 {
|
|
8
14
|
ORG_Id?: string;
|
|
9
15
|
TOU_Id?: string;
|
|
10
16
|
TOU_Tier: string;
|
|
11
17
|
TOU_Name: string;
|
|
12
18
|
TOU_ShortDescription?: string;
|
|
19
|
+
TOU_Country: string;
|
|
13
20
|
TOU_State: string;
|
|
14
21
|
TOU_City: string;
|
|
15
22
|
TOU_StartDate?: Date | Timestamp;
|
|
@@ -20,7 +27,7 @@ export interface M_DictionaryTournamentItem {
|
|
|
20
27
|
TOU_Status?: string;
|
|
21
28
|
TOU_IsCoverByAstro?: boolean;
|
|
22
29
|
TOU_AstroStatus?: string;
|
|
23
|
-
version: '1';
|
|
30
|
+
version: '1.1';
|
|
24
31
|
}
|
|
25
32
|
export interface M_TOU_Dictionary_V1 {
|
|
26
33
|
country: string;
|
|
@@ -29,7 +36,7 @@ export interface M_TOU_Dictionary_V1 {
|
|
|
29
36
|
month: string;
|
|
30
37
|
yearMonth: string;
|
|
31
38
|
countryStateYearMonth: string;
|
|
32
|
-
tournaments:
|
|
39
|
+
tournaments: M_DictionaryTournamentItem_V1_1[];
|
|
33
40
|
updateAt: Timestamp | Date;
|
|
34
41
|
version: '1';
|
|
35
42
|
}
|
package/package.json
CHANGED