Socket
Socket
Sign inDemoInstall

skedify-types

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skedify-types - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

src/utils.ts

10

CHANGELOG.md
# skedify-types
## 0.2.5
### Patch Changes
- 4bf3a3b9: SKED-9021:
- fix: PlanningRules view to use filtered data
- fix: Team > Members & Team > Appointment views to show all available contacts (including pending)
- fix: Allow `customer.language` to be `null`
- fix: Only show relevant roles for users in `Team > Members` (scoped to office).
## 0.2.4

@@ -4,0 +14,0 @@

8

package.json
{
"version": "0.2.4",
"version": "0.2.5",
"name": "skedify-types",

@@ -22,7 +22,5 @@ "description": "Skedify Types",

],
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"tsconfig": "0.0.2",
"scripts": "0.0.2"
"scripts": "0.0.3",
"tsconfig": "0.0.2"
},

@@ -29,0 +27,0 @@ "jest": {

export * from "./logger";
export * from "./resources";
export * from "./utils";

@@ -19,2 +19,11 @@ import {

export enum AppointmentStateEnum {
ACCEPTED = "accepted",
INCOMING = "incoming",
OUTGOING = "outgoing",
COMPLETED = "completed",
CANCELLED = "cancelled",
OCCURRED = "occurred",
}
export enum AppointmentUserType {

@@ -21,0 +30,0 @@ CUSTOMER = "customer",

@@ -14,3 +14,3 @@ import { BaseFields, Location } from ".";

date_of_birth: string | null;
language: string;
language: string | null;
phone_number: string | null;

@@ -17,0 +17,0 @@ profile_picture: number | null;

@@ -67,2 +67,9 @@ import { BaseFields, Locale } from ".";

export type MeetingType = "office" | "on_location" | "phone" | "video";
export enum MeetingTypeEnum {
OFFICE = "office",
ON_LOCATION = "on_location",
PHONE = "phone",
VIDEO = "video",
}
export type ReceiverType = "customer" | "contact";

@@ -69,0 +76,0 @@

export * from "./logger";
export * from "./resources";
export * from "./utils";
//# sourceMappingURL=index.d.ts.map
import { BaseFields, Customer, Employee, Location, MeetingType, Subject, WithEmployeeUser } from ".";
export declare type AppointmentState = "incoming" | "outgoing" | "completed" | "cancelled" | "accepted" | "occurred";
export declare enum AppointmentStateEnum {
ACCEPTED = "accepted",
INCOMING = "incoming",
OUTGOING = "outgoing",
COMPLETED = "completed",
CANCELLED = "cancelled",
OCCURRED = "occurred"
}
export declare enum AppointmentUserType {

@@ -4,0 +12,0 @@ CUSTOMER = "customer",

@@ -13,3 +13,3 @@ import { BaseFields, Location } from ".";

date_of_birth: string | null;
language: string;
language: string | null;
phone_number: string | null;

@@ -16,0 +16,0 @@ profile_picture: number | null;

@@ -61,2 +61,8 @@ import { BaseFields, Locale } from ".";

export declare type MeetingType = "office" | "on_location" | "phone" | "video";
export declare enum MeetingTypeEnum {
OFFICE = "office",
ON_LOCATION = "on_location",
PHONE = "phone",
VIDEO = "video"
}
export declare type ReceiverType = "customer" | "contact";

@@ -63,0 +69,0 @@ export interface SubjectAvailabilitySettings {

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc