@verdocs/js-sdk 1.1.14 → 1.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,8 +2,8 @@ export interface IInitials {
2
2
  id?: string;
3
3
  profile_id: string;
4
4
  url: string;
5
- created_at?: Date;
6
- updated_at?: Date;
5
+ created_at?: string;
6
+ updated_at?: string;
7
7
  }
8
8
  /**
9
9
  * Create an initials block. In a typical signing workflow, the user is asked at the beginning of the process to "adopt"
@@ -117,7 +117,7 @@ export interface ITag {
117
117
  export interface ITags {
118
118
  name: string;
119
119
  featured?: boolean;
120
- created_at?: Date;
120
+ created_at?: string;
121
121
  }
122
122
  export interface IStar {
123
123
  template_id: string;
@@ -141,8 +141,8 @@ export interface ITemplateAsset {
141
141
  name: string;
142
142
  page_numbers: number;
143
143
  id?: string;
144
- updated_at?: Date;
145
- created_at?: Date;
144
+ updated_at?: string;
145
+ created_at?: string;
146
146
  template_id: string;
147
147
  mime: string;
148
148
  thumbnail_url: string;
@@ -188,7 +188,7 @@ export interface IPage {
188
188
  }
189
189
  export interface IReminder {
190
190
  id?: string;
191
- created_at?: Date;
191
+ created_at?: string;
192
192
  is_on: boolean;
193
193
  setup_time: number;
194
194
  interval_time: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",