Skip to content

Commit

Permalink
chore: update TypeScript definition - time stamp: 2020-01-19
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions authored and Github Actions committed Feb 19, 2020
1 parent 5a416d6 commit 885f828
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 19 deletions.
2 changes: 1 addition & 1 deletion packages/foundations-ts-definitions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reapit/foundations-ts-definitions",
"version": "0.0.48",
"version": "0.0.50",
"license": "MIT",
"files": [
"types/*"
Expand Down
26 changes: 8 additions & 18 deletions packages/foundations-ts-definitions/types/platform-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,8 +685,6 @@ export interface AppointmentFollowUpModel {
}
/**
* Representation of a calendar appointment
* example:
* 2019-08-14T12:30:02.0000000Z
*/
export interface AppointmentModel {
/**
Expand Down Expand Up @@ -1723,7 +1721,7 @@ export interface CreateAppointmentAttendeeModel {
/**
* Request body used to create a new calendar appointment
* example:
* 2019-08-14T12:30:02.0000000Z
* [object Object]
*/
export interface CreateAppointmentModel {
/**
Expand All @@ -1739,11 +1737,11 @@ export interface CreateAppointmentModel {
*/
end?: string // date-time
/**
* The date and time when the appointment should be followed up
* The date when the appointment should be followed up
* example:
* 2019-08-14T12:30:02.0000000Z
* 2019-08-14
*/
followUpOn?: string // date-time
followUpOn?: string // date
/**
* The unique identifier of the appointment type
*/
Expand Down Expand Up @@ -1799,8 +1797,6 @@ export interface CreateAppointmentModel {
propertyConfirmed?: boolean
/**
* Details of the recurrence pattern for the appointment
* example:
* 2019-08-14T12:30:02.0000000Z
*/
recurrence?: {
/**
Expand All @@ -1827,8 +1823,6 @@ export interface CreateAppointmentModel {
}
/**
* Details of an appointment's recurrence pattern
* example:
* 2019-08-14T12:30:02.0000000Z
*/
export interface CreateAppointmentRecurrenceModel {
/**
Expand Down Expand Up @@ -8219,7 +8213,7 @@ export interface UpdateAppointmentFollowUpModel {
/**
* Request body used to update an existing calendar appointment
* example:
* 2019-08-14T12:30:02.0000000Z
* [object Object]
*/
export interface UpdateAppointmentModel {
/**
Expand All @@ -8235,11 +8229,11 @@ export interface UpdateAppointmentModel {
*/
end?: string // date-time
/**
* The date and time when the appointment should be followed up
* The date when the appointment should be followed up
* example:
* 2019-08-14T12:30:02.0000000Z
* 2019-08-14
*/
followUpOn?: string // date-time
followUpOn?: string // date
/**
* The unique identifier of the appointment type
*/
Expand Down Expand Up @@ -8316,8 +8310,6 @@ export interface UpdateAppointmentModel {
}
/**
* Details of the recurrence pattern for the appointment
* example:
* 2019-08-14T12:30:02.0000000Z
*/
recurrence?: {
/**
Expand All @@ -8344,8 +8336,6 @@ export interface UpdateAppointmentModel {
}
/**
* Details of an appointment's recurrence pattern
* example:
* 2019-08-14T12:30:02.0000000Z
*/
export interface UpdateAppointmentRecurrenceModel {
/**
Expand Down

0 comments on commit 885f828

Please sign in to comment.