@periskope/types 0.6.207 → 0.6.209
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/dist/rules.types.d.ts.map +1 -1
- package/dist/supabase.types.d.ts +4 -0
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/mod_json_type.ps1 +108 -108
- package/mod_json_type.sh +22 -22
- package/package.json +17 -17
- package/src/index.ts +3 -3
- package/src/rules.types.ts +1944 -1944
- package/src/supabase.types.ts +4 -0
- package/src/types.ts +977 -975
- package/tsconfig.json +18 -18
- package/tsconfig.tsbuildinfo +1 -0
- package/update_package.ps1 +21 -21
package/src/supabase.types.ts
CHANGED
|
@@ -570,6 +570,7 @@ export type Database = {
|
|
|
570
570
|
timestamp: string | null
|
|
571
571
|
to: string | null
|
|
572
572
|
token: string | null
|
|
573
|
+
translated_body: Json | null
|
|
573
574
|
unique_id: string | null
|
|
574
575
|
updated_at: string | null
|
|
575
576
|
vcards: string[] | null
|
|
@@ -624,6 +625,7 @@ export type Database = {
|
|
|
624
625
|
timestamp?: string | null
|
|
625
626
|
to?: string | null
|
|
626
627
|
token?: string | null
|
|
628
|
+
translated_body?: Json | null
|
|
627
629
|
unique_id?: string | null
|
|
628
630
|
updated_at?: string | null
|
|
629
631
|
vcards?: string[] | null
|
|
@@ -678,6 +680,7 @@ export type Database = {
|
|
|
678
680
|
timestamp?: string | null
|
|
679
681
|
to?: string | null
|
|
680
682
|
token?: string | null
|
|
683
|
+
translated_body?: Json | null
|
|
681
684
|
unique_id?: string | null
|
|
682
685
|
updated_at?: string | null
|
|
683
686
|
vcards?: string[] | null
|
|
@@ -2568,6 +2571,7 @@ export type Database = {
|
|
|
2568
2571
|
timestamp: string | null
|
|
2569
2572
|
to: string | null
|
|
2570
2573
|
token: string | null
|
|
2574
|
+
translated_body: Json | null
|
|
2571
2575
|
unique_id: string | null
|
|
2572
2576
|
updated_at: string | null
|
|
2573
2577
|
vcards: string[] | null
|