@astro-sports-developers/models 1.0.34 → 1.0.36

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.
@@ -18,8 +18,9 @@ export interface M_PurchasePayload_V1 extends M_PartialPayloadEvent, M_PartialPa
18
18
  PURSP_CustomerAddress: string | null;
19
19
  PURSP_CustomerState: string | null;
20
20
  PURSP_CustomerCity: string | null;
21
+ PURSP_CustomerUid: string | null;
21
22
  PURSP_Note?: string;
22
- version?: 'v1';
23
+ version?: 'v2';
23
24
  }
24
25
  export interface M_PartialPayloadEvent {
25
26
  E_Id?: string;
@@ -50,14 +50,23 @@ export interface M_SportAssociationV1 {
50
50
  }
51
51
  export interface M_SportAssociationV1Min {
52
52
  SA_Id?: string;
53
+ SA_MasterAdminUid: string;
53
54
  SA_Tier: 'T0' | 'T1';
54
55
  SA_SponsorIdsAccepted?: string[];
56
+ SA_OfficialSponsors?: M_SPOnsorsV1[];
55
57
  SA_Name: string;
56
58
  SA_State: string;
57
59
  SA_City: string;
58
60
  SA_TeamIds?: string[];
61
+ SA_Website?: string;
62
+ SA_StartDate?: Date | string | any;
63
+ SA_EndDate?: Date | string | any;
59
64
  SA_LogoBlackBackground?: M_MediaFileV1;
60
65
  SA_LogoWhiteBackground?: M_MediaFileV1;
61
66
  SA_MediaStorage?: number;
62
67
  version: 'V2';
68
+ log: M_DocumentLog[];
69
+ deleted: boolean;
70
+ createdAt: Date | any;
71
+ lastUpdate: Date | any;
63
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astro-sports-developers/models",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "description": "Astro shared models library",
5
5
  "main": "bundles/astro-models.umd.js",
6
6
  "module": "fesm2022/astro-sports-developers-models.mjs",