@sport-activities/sdk
Advanced tools
Comparing version 0.0.5 to 0.0.6
{ | ||
"name": "@sport-activities/sdk", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "types": "./types.d.ts", |
@@ -0,1 +1,10 @@ | ||
declare enum MediaTypeEnum { | ||
VIDEO = "video", | ||
IMAGE = "image" | ||
} | ||
export interface MediaInterface { | ||
name: string; | ||
url: string; | ||
type: MediaTypeEnum; | ||
} | ||
export interface OfferInterface { | ||
@@ -28,2 +37,3 @@ price: string | number; | ||
location: PlaceInterface; | ||
image: MediaInterface | null; | ||
} | ||
@@ -33,3 +43,4 @@ export interface TimeslotInterface { | ||
activityIdentifier: string; | ||
availability: number; | ||
remainingAttendeeCapacity: number; | ||
maximumAttendeeCapacity: number; | ||
startDate: Date; | ||
@@ -36,0 +47,0 @@ endDate: Date; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1394
56