wedance-shared 1.0.102 → 1.0.103

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.
@@ -1,14 +1,14 @@
1
1
  export interface SupportTicket {
2
2
  id: string;
3
- userId: string | null;
3
+ user_id: string | null;
4
4
  subject: string;
5
5
  message: string;
6
6
  status: "open" | "in_progress" | "closed";
7
- createdAt: Date;
8
- updatedAt: Date;
9
- deletedAt: Date | null;
7
+ created_at: string;
8
+ updated_at: string;
9
+ deleted_at: string | null;
10
10
  }
11
- export type SupportTicketInsert = Omit<SupportTicket, "id" | "createdAt" | "updatedAt" | "deletedAt"> & {
11
+ export type SupportTicketInsert = Omit<SupportTicket, "id" | "created_at" | "updated_at" | "deleted_at"> & {
12
12
  status?: SupportTicket["status"];
13
13
  };
14
- export type SupportTicketUpdate = Partial<Pick<SupportTicket, "subject" | "message" | "status" | "deletedAt">>;
14
+ export type SupportTicketUpdate = Partial<Pick<SupportTicket, "subject" | "message" | "status" | "deleted_at">>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.102",
3
+ "version": "1.0.103",
4
4
  "description": "This repository contains shared TypeScript types and interfaces used across multiple WeDance applications:",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",