@periskope/types 0.1.0 → 0.2.0
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.
- package/package.json +1 -1
- package/supabase.types.ts +3 -0
- package/types.ts +7 -1
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -528,6 +528,7 @@ export interface Database {
|
|
|
528
528
|
org_id: string
|
|
529
529
|
org_phone: string | null
|
|
530
530
|
phone_id: string
|
|
531
|
+
qr_code: string | null
|
|
531
532
|
updated_at: string
|
|
532
533
|
wa_state: string | null
|
|
533
534
|
}
|
|
@@ -537,6 +538,7 @@ export interface Database {
|
|
|
537
538
|
org_id: string
|
|
538
539
|
org_phone?: string | null
|
|
539
540
|
phone_id?: string
|
|
541
|
+
qr_code?: string | null
|
|
540
542
|
updated_at?: string
|
|
541
543
|
wa_state?: string | null
|
|
542
544
|
}
|
|
@@ -546,6 +548,7 @@ export interface Database {
|
|
|
546
548
|
org_id?: string
|
|
547
549
|
org_phone?: string | null
|
|
548
550
|
phone_id?: string
|
|
551
|
+
qr_code?: string | null
|
|
549
552
|
updated_at?: string
|
|
550
553
|
wa_state?: string | null
|
|
551
554
|
}
|
package/types.ts
CHANGED
|
@@ -62,4 +62,10 @@ export const labelColors = [
|
|
|
62
62
|
'#DB2777',
|
|
63
63
|
'#2563EB',
|
|
64
64
|
'#F97316',
|
|
65
|
-
];
|
|
65
|
+
];
|
|
66
|
+
|
|
67
|
+
export const enumChatColors = [
|
|
68
|
+
"#B4876E", "#A5B337", "#06CF9C", "#25D366", "#02A698",
|
|
69
|
+
"#7D9EF1", "#007BFC", "#5E47DE", "#7F66FF", "#9333EA",
|
|
70
|
+
"#FA6533", "#C4532D", "#DC2626", "#FF2E74", "#DB2777"
|
|
71
|
+
] as const;
|