@timothyw/pat-common 1.0.145 → 1.0.146

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.
@@ -293,8 +293,8 @@ export interface UpdateNotificationTemplateResponse {
293
293
  export interface DeleteNotificationTemplateResponse {
294
294
  }
295
295
  export interface GetEntitySyncResponse {
296
- synced: boolean;
296
+ syncState: NotificationTemplateSyncState;
297
297
  }
298
298
  export interface SetEntitySyncResponse {
299
- synced: boolean;
299
+ syncState: NotificationTemplateSyncState;
300
300
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@timothyw/pat-common",
3
3
  "description": "",
4
4
  "author": "Timothy Washburn",
5
- "version": "1.0.145",
5
+ "version": "1.0.146",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -121,9 +121,9 @@ export interface UpdateNotificationTemplateResponse {
121
121
  export interface DeleteNotificationTemplateResponse {}
122
122
 
123
123
  export interface GetEntitySyncResponse {
124
- synced: boolean;
124
+ syncState: NotificationTemplateSyncState;
125
125
  }
126
126
 
127
127
  export interface SetEntitySyncResponse {
128
- synced: boolean;
128
+ syncState: NotificationTemplateSyncState;
129
129
  }