@astro-sports-developers/models 1.0.91 → 1.1.0

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.
@@ -57,7 +57,7 @@ export interface M_OrganizationMin_V1 {
57
57
  ORGM_Gender: 'Boys' | 'Girls' | 'Mixed' | 'Co-ed';
58
58
  ORGM_RemovePortal: boolean;
59
59
  }
60
- export interface M_PortalNews {
60
+ export interface M_PortalNews_Organization {
61
61
  PN_Id: string;
62
62
  PN_Title: string;
63
63
  PN_Content: string;
@@ -72,5 +72,5 @@ export interface M_ORG_PremiumPortal {
72
72
  ORGPP_HeaderText?: string;
73
73
  ORGPP_BackgroundImage?: string;
74
74
  ORGPP_IsDarkMode?: boolean;
75
- ORGPP_News?: M_PortalNews[];
75
+ ORGPP_News?: M_PortalNews_Organization[];
76
76
  }
@@ -50,28 +50,6 @@ export interface M_SPonsor {
50
50
  PR_Name: string;
51
51
  PURSP_Id: string;
52
52
  }
53
- export interface M_SchoolPortalPaymentPayload {
54
- PR_Id: string;
55
- PR_Price: number;
56
- PR_Type: string;
57
- PR_Category: string;
58
- PR_SubCategory: string;
59
- SP_Id: string;
60
- uid: string;
61
- email: string;
62
- PURSP_CustomerEmail: string;
63
- PURSP_CustomerPhone: string;
64
- PURSP_CustomerGivenName: string;
65
- PURSP_CustomerFamilyName: string;
66
- PURSP_CustomerAddress: string;
67
- PURSP_CustomerState: string;
68
- PURSP_CustomerCity: string;
69
- paymentSourceId: string;
70
- idempotencyKey: string;
71
- environment: 'development' | 'production';
72
- PURSP_Note?: string;
73
- PURSP_SponsorIsAnonymous?: boolean;
74
- }
75
53
  interface M_SportProgramPortal {
76
54
  SPP_SportProgramName: string;
77
55
  SPP_PortalType: 'T1' | 'T1+' | 'T2' | 'T2+' | 'T3' | 'T3+' | 'T4' | 'T4+' | 'T5' | 'T5+';
@@ -1,6 +1,5 @@
1
1
  import { M_EventMin_V1 } from './M_Events';
2
2
  import { M_MediaFileV1 } from './M_MediaFile';
3
- import { M_PortalNews } from './M_Organization.models';
4
3
  import { M_PlayerProfile_V1 } from './M_PlayersProfile.models';
5
4
  import { M_SPOnsorsV1 } from './M_Sponsors.model';
6
5
  import { M_TournamentMin_V1 } from './M_Tournaments';
@@ -25,7 +24,7 @@ export interface M_SportAssociation_V1 {
25
24
  SA_PortalHeaderText?: string;
26
25
  SA_PortalBackgroundImage?: string;
27
26
  SA_PortalIsDarkMode?: boolean;
28
- SA_PortalNews?: M_PortalNews[];
27
+ SA_PortalNews?: any[];
29
28
  SA_Description?: string;
30
29
  SA_Country: string;
31
30
  SA_State: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astro-sports-developers/models",
3
- "version": "1.0.91",
3
+ "version": "1.1.0",
4
4
  "description": "Astro shared models library",
5
5
  "main": "bundles/astro-models.umd.js",
6
6
  "module": "fesm2022/astro-sports-developers-models.mjs",
package/public-api.d.ts CHANGED
@@ -16,3 +16,4 @@ export * from './lib/models/M_SchoolProgram.model';
16
16
  export * from './lib/models/M_Tournaments';
17
17
  export * from './lib/models/purchaseResponseTypes';
18
18
  export * from './lib/models/M_News.model';
19
+ export * from './lib/models/M_SchoolProgram_OLD';