@astro-sports-developers/models 1.0.18 → 1.0.22

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,10 +1,11 @@
1
1
  import { Timestamp } from 'firebase/firestore';
2
2
  import { M_MediaFileV1 } from './M_MediaFile';
3
3
  import { M_Product_V1 } from './M_Product.model';
4
- export interface M_Event_V2 {
4
+ export interface M_Event_V4 {
5
5
  E_ORG_Id?: string;
6
6
  E_SP_Id?: string;
7
7
  E_TOU_Id?: string;
8
+ E_SA_Id?: string;
8
9
  E_Id?: string;
9
10
  E_MasterAdminUid?: string;
10
11
  E_UserCreated?: string;
@@ -27,10 +28,11 @@ export interface M_Event_V2 {
27
28
  E_AstroStatus?: string;
28
29
  E_RegisteredProductsAstro?: M_Product_V1[];
29
30
  E_RegisteredProducts?: M_Product_V1[];
31
+ E_RegisterTickets?: M_Product_V1[];
30
32
  createdAt?: any;
31
33
  updatedAt?: any;
32
34
  delete?: boolean;
33
- version?: 'v3';
35
+ version?: 'v4';
34
36
  }
35
37
  export interface M_EventMini {
36
38
  E_ORG_Id?: string;
@@ -2,6 +2,8 @@ import { Timestamp } from 'firebase/firestore';
2
2
  import { M_Product_V1 } from './M_Product.model';
3
3
  export interface M_Purchase_V1 {
4
4
  ORG_Id?: string;
5
+ SA_ID?: string;
6
+ SP_Id?: string;
5
7
  ORG_Status_Purchases?: string;
6
8
  PAccountMail?: string;
7
9
  PAmount?: number;
@@ -15,6 +17,9 @@ export interface M_Purchase_V1 {
15
17
  PURSP_CustomerPhone?: string;
16
18
  PURSP_CustomerState?: string;
17
19
  PURSP_Note?: string;
20
+ PURSP_CustomerUid?: string;
21
+ E_Id?: string;
22
+ E_Name?: string;
18
23
  TOU_Id?: string;
19
24
  TOU_Name?: string;
20
25
  currency?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astro-sports-developers/models",
3
- "version": "1.0.18",
3
+ "version": "1.0.22",
4
4
  "description": "Astro shared models library",
5
5
  "main": "bundles/astro-models.umd.js",
6
6
  "module": "fesm2022/astro-sports-developers-models.mjs",