skedify-types
Advanced tools
Comparing version 0.2.11 to 0.3.0
# skedify-types | ||
## 0.3.0 | ||
### Minor Changes | ||
- d8cb0cef: feature/SKED-9581 : Make the travel time for on-location appointments configurable | ||
- d7ae8c3c: SKED-8875: Add feature enablement settings to organisation, where admin can enable/disable certain pages for all users in organisation | ||
### Patch Changes | ||
- 294434e3: SKED-9507: Add outcome to appointment detail | ||
## 0.2.11 | ||
@@ -4,0 +15,0 @@ |
{ | ||
"version": "0.2.11", | ||
"version": "0.3.0", | ||
"name": "skedify-types", | ||
@@ -24,3 +24,3 @@ "description": "Skedify Types", | ||
"devDependencies": { | ||
"scripts": "0.0.9", | ||
"scripts": "0.0.10", | ||
"tsconfig": "0.0.2" | ||
@@ -27,0 +27,0 @@ }, |
@@ -7,2 +7,3 @@ import { | ||
MeetingType, | ||
Outcome, | ||
Subject, | ||
@@ -140,1 +141,5 @@ WithContactEmployee, | ||
} | ||
export type WithOutcomes = { | ||
outcomes: Outcome[]; | ||
}; |
@@ -46,2 +46,3 @@ import { Locale } from "."; | ||
appointment_min_suggestions: number; | ||
appointment_travel_buffer_time: number; | ||
availability_max_future_days_to_sync: number; | ||
@@ -70,2 +71,22 @@ contact_notifications: Notifications; | ||
} | ||
export interface EnterpriseTeamSettings { | ||
allow_team_appointments: boolean; | ||
allow_team_insights: boolean; | ||
allow_team_scheduling: boolean; | ||
allow_team_team: boolean; | ||
allow_team_office: boolean; | ||
} | ||
export interface EnterprisePersonalSettings { | ||
allow_personal_account: boolean; | ||
allow_personal_availability: boolean; | ||
allow_personal_calendar_sync: boolean; | ||
allow_personal_application_settings: boolean; | ||
} | ||
export interface EnterpriseAppointmentsSettings { | ||
allow_personal_appointments: boolean; | ||
} | ||
export interface EnterpriseCustomerSettings { | ||
@@ -104,2 +125,5 @@ appointment_create_allow_change_customer: boolean; | ||
EnterpriseCustomerSettings & | ||
EnterprisePersonalSettings & | ||
EnterpriseTeamSettings & | ||
EnterpriseAppointmentsSettings & | ||
EnterpriseSubjectSettings & | ||
@@ -106,0 +130,0 @@ EnterpriseAvailabilitySettings & |
@@ -13,3 +13,3 @@ export interface ReactI18nYupError { | ||
DATE_WRITTEN = "E dd MMM yyyy", | ||
DATE_TIME_WRITTEN = "E dd MMM yyyy HH:mm", | ||
DATE_TIME_WRITTEN = "E dd MMM yyyy - HH:mm", | ||
} |
@@ -1,2 +0,2 @@ | ||
import { BaseFields, Customer, Employee, Location, MeetingType, Subject, WithContactEmployee, WithEmployeeUser } from "."; | ||
import { BaseFields, Customer, Employee, Location, MeetingType, Outcome, Subject, WithContactEmployee, WithEmployeeUser } from "."; | ||
export declare type AppointmentState = "incoming" | "outgoing" | "completed" | "cancelled" | "accepted" | "occurred"; | ||
@@ -104,2 +104,5 @@ export declare enum AppointmentStateEnum { | ||
} | ||
export declare type WithOutcomes = { | ||
outcomes: Outcome[]; | ||
}; | ||
//# sourceMappingURL=appointment.d.ts.map |
@@ -39,2 +39,3 @@ import { Locale } from "."; | ||
appointment_min_suggestions: number; | ||
appointment_travel_buffer_time: number; | ||
availability_max_future_days_to_sync: number; | ||
@@ -62,2 +63,18 @@ contact_notifications: Notifications; | ||
} | ||
export interface EnterpriseTeamSettings { | ||
allow_team_appointments: boolean; | ||
allow_team_insights: boolean; | ||
allow_team_scheduling: boolean; | ||
allow_team_team: boolean; | ||
allow_team_office: boolean; | ||
} | ||
export interface EnterprisePersonalSettings { | ||
allow_personal_account: boolean; | ||
allow_personal_availability: boolean; | ||
allow_personal_calendar_sync: boolean; | ||
allow_personal_application_settings: boolean; | ||
} | ||
export interface EnterpriseAppointmentsSettings { | ||
allow_personal_appointments: boolean; | ||
} | ||
export interface EnterpriseCustomerSettings { | ||
@@ -91,3 +108,3 @@ appointment_create_allow_change_customer: boolean; | ||
} | ||
export declare type EnterpriseSettings = DefaultEnterpriseSettings & EnterpriseCustomerSettings & EnterpriseSubjectSettings & EnterpriseAvailabilitySettings & EnterprisePluginSettings & EnterpriseUserCommunicationSettings; | ||
export declare type EnterpriseSettings = DefaultEnterpriseSettings & EnterpriseCustomerSettings & EnterprisePersonalSettings & EnterpriseTeamSettings & EnterpriseAppointmentsSettings & EnterpriseSubjectSettings & EnterpriseAvailabilitySettings & EnterprisePluginSettings & EnterpriseUserCommunicationSettings; | ||
export interface CustomerFieldSetting { | ||
@@ -94,0 +111,0 @@ ask: boolean; |
@@ -14,4 +14,4 @@ export interface ReactI18nYupError { | ||
DATE_WRITTEN = "E dd MMM yyyy", | ||
DATE_TIME_WRITTEN = "E dd MMM yyyy HH:mm" | ||
DATE_TIME_WRITTEN = "E dd MMM yyyy - HH:mm" | ||
} | ||
//# sourceMappingURL=utils.d.ts.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
142836
2460