@timothyw/pat-common 1.0.139 → 1.0.140

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.
@@ -102,9 +102,6 @@ export interface CreateAgendaItemResponse {
102
102
  export interface GetAgendaItemsResponse {
103
103
  agendaItems: Serialized<AgendaItemData>[];
104
104
  }
105
- export interface GetAgendaItemResponse {
106
- agendaItem: Serialized<AgendaItemData>;
107
- }
108
105
  export interface UpdateAgendaItemResponse {
109
106
  agendaItem: Serialized<AgendaItemData>;
110
107
  }
@@ -251,17 +251,14 @@ export type NotificationTrigger = z.infer<typeof notificationSchedulerDataSchema
251
251
  export type NotificationTemplateData = z.infer<typeof notificationTemplateSchema>;
252
252
  export type CreateNotificationTemplateRequest = z.infer<typeof createNotificationTemplateRequestSchema>;
253
253
  export type UpdateNotificationTemplateRequest = z.infer<typeof updateNotificationTemplateRequestSchema>;
254
- export type EntitySyncRequest = z.infer<typeof setEntitySyncRequestSchema>;
255
254
  export type GetEntitySyncRequest = z.infer<typeof getEntitySyncRequestSchema>;
255
+ export type SetEntitySyncRequest = z.infer<typeof setEntitySyncRequestSchema>;
256
256
  export interface CreateNotificationTemplateResponse {
257
257
  template: Serialized<NotificationTemplateData>;
258
258
  }
259
259
  export interface GetNotificationTemplatesResponse {
260
260
  templates: Serialized<NotificationTemplateData>[];
261
261
  }
262
- export interface GetNotificationTemplateResponse {
263
- template: Serialized<NotificationTemplateData>;
264
- }
265
262
  export interface UpdateNotificationTemplateResponse {
266
263
  template: Serialized<NotificationTemplateData>;
267
264
  }
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.139",
5
+ "version": "1.0.140",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -52,10 +52,6 @@ export interface GetAgendaItemsResponse {
52
52
  agendaItems: Serialized<AgendaItemData>[];
53
53
  }
54
54
 
55
- export interface GetAgendaItemResponse {
56
- agendaItem: Serialized<AgendaItemData>;
57
- }
58
-
59
55
  export interface UpdateAgendaItemResponse {
60
56
  agendaItem: Serialized<AgendaItemData>;
61
57
  }
@@ -88,8 +88,9 @@ export type NotificationTemplateData = z.infer<typeof notificationTemplateSchema
88
88
 
89
89
  export type CreateNotificationTemplateRequest = z.infer<typeof createNotificationTemplateRequestSchema>;
90
90
  export type UpdateNotificationTemplateRequest = z.infer<typeof updateNotificationTemplateRequestSchema>;
91
- export type EntitySyncRequest = z.infer<typeof setEntitySyncRequestSchema>;
91
+
92
92
  export type GetEntitySyncRequest = z.infer<typeof getEntitySyncRequestSchema>;
93
+ export type SetEntitySyncRequest = z.infer<typeof setEntitySyncRequestSchema>;
93
94
 
94
95
  export interface CreateNotificationTemplateResponse {
95
96
  template: Serialized<NotificationTemplateData>;
@@ -99,10 +100,6 @@ export interface GetNotificationTemplatesResponse {
99
100
  templates: Serialized<NotificationTemplateData>[];
100
101
  }
101
102
 
102
- export interface GetNotificationTemplateResponse {
103
- template: Serialized<NotificationTemplateData>;
104
- }
105
-
106
103
  export interface UpdateNotificationTemplateResponse {
107
104
  template: Serialized<NotificationTemplateData>;
108
105
  }