skedify-types
Advanced tools
Comparing version 0.2.3 to 0.2.4
# skedify-types | ||
## 0.2.4 | ||
### Patch Changes | ||
- 81f60ead: fix: allow nullable contact uuid | ||
## 0.2.3 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"name": "skedify-types", | ||
@@ -4,0 +4,0 @@ "description": "Skedify Types", |
@@ -31,2 +31,3 @@ export interface SyncAccount { | ||
min_access_role: string; | ||
read_only?: boolean; | ||
originally_created: unknown; | ||
@@ -33,0 +34,0 @@ last_modified: unknown; |
@@ -30,3 +30,3 @@ import { BaseFields } from "."; | ||
export interface ContactRole extends BaseRole { | ||
uuid: string; | ||
uuid: string | null; | ||
default_week_template: string | null; | ||
@@ -33,0 +33,0 @@ function: string | null; |
@@ -10,3 +10,3 @@ export type UserEventProvider = "google" | "office365" | "exchange"; | ||
title?: string; | ||
description: string; | ||
description: string | null; | ||
start: string; | ||
@@ -13,0 +13,0 @@ end: string; |
@@ -30,2 +30,3 @@ export interface SyncAccount { | ||
min_access_role: string; | ||
read_only?: boolean; | ||
originally_created: unknown; | ||
@@ -32,0 +33,0 @@ last_modified: unknown; |
@@ -27,3 +27,3 @@ import { BaseFields } from "."; | ||
export interface ContactRole extends BaseRole { | ||
uuid: string; | ||
uuid: string | null; | ||
default_week_template: string | null; | ||
@@ -30,0 +30,0 @@ function: string | null; |
@@ -8,3 +8,3 @@ export declare type UserEventProvider = "google" | "office365" | "exchange"; | ||
title?: string; | ||
description: string; | ||
description: string | null; | ||
start: string; | ||
@@ -11,0 +11,0 @@ end: string; |
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
2188
199920