@free-drivers-ed-california/types 0.0.182 → 0.0.183

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,6 +2,6 @@
2
2
  * Request interface for delete email template endpoint
3
3
  */
4
4
  export interface DeleteEmailTemplateRequest {
5
- id: string;
5
+ id: number;
6
6
  }
7
7
  //# sourceMappingURL=delete-email-template-request.interface.d.ts.map
@@ -4,6 +4,6 @@ import { BaseResponse } from "../../../../generics";
4
4
  */
5
5
  export interface DeleteEmailTemplateResponse extends BaseResponse {
6
6
  success: boolean;
7
- deletedId: string;
7
+ deletedId: number;
8
8
  }
9
9
  //# sourceMappingURL=delete-email-template-response.interface.d.ts.map
@@ -3,7 +3,7 @@ import { EmailTriggers } from '../../../enums';
3
3
  * Request interface for update email template endpoint
4
4
  */
5
5
  export interface UpdateEmailTemplateRequest {
6
- id: string;
6
+ id: number;
7
7
  name?: string;
8
8
  description?: string;
9
9
  triggerEvent?: EmailTriggers;
@@ -1,6 +1,6 @@
1
1
  import { EmailTriggers } from '../enums';
2
2
  export interface DatabaseEmail {
3
- id: string;
3
+ id: number;
4
4
  created_at: string;
5
5
  updated_at: string;
6
6
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@free-drivers-ed-california/types",
3
- "version": "0.0.182",
3
+ "version": "0.0.183",
4
4
  "private": false,
5
5
  "description": "Types and Interfaces for Free Drivers Ed California UI & API",
6
6
  "main": "dist/index.js",