@periskope/types 0.6.321 → 0.6.323
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/billing.types.d.ts +14 -0
- package/dist/billing.types.d.ts.map +1 -0
- package/dist/billing.types.js +2 -0
- package/dist/supabase.types.d.ts +3 -0
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/types.d.ts +15 -11
- 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 +20 -19
- package/src/index.ts +4 -4
- package/src/object.types.ts +100 -100
- package/src/rules.types.ts +2570 -2570
- package/src/supabase.types.ts +4 -1
- package/src/types.ts +1590 -1585
- package/src/workflows.types.ts +955 -955
- package/tsconfig.json +37 -37
- package/tsconfig.tsbuildinfo +1 -0
- package/update_package.ps1 +21 -21
package/src/supabase.types.ts
CHANGED
|
@@ -235,6 +235,7 @@ export type Database = {
|
|
|
235
235
|
flag_metadata: Json | null
|
|
236
236
|
flag_status: boolean | null
|
|
237
237
|
org_id: string
|
|
238
|
+
org_phone: string | null
|
|
238
239
|
unique_id: string
|
|
239
240
|
updated_at: string | null
|
|
240
241
|
}
|
|
@@ -244,6 +245,7 @@ export type Database = {
|
|
|
244
245
|
flag_metadata?: Json | null
|
|
245
246
|
flag_status?: boolean | null
|
|
246
247
|
org_id: string
|
|
248
|
+
org_phone?: string | null
|
|
247
249
|
unique_id: string
|
|
248
250
|
updated_at?: string | null
|
|
249
251
|
}
|
|
@@ -253,6 +255,7 @@ export type Database = {
|
|
|
253
255
|
flag_metadata?: Json | null
|
|
254
256
|
flag_status?: boolean | null
|
|
255
257
|
org_id?: string
|
|
258
|
+
org_phone?: string | null
|
|
256
259
|
unique_id?: string
|
|
257
260
|
updated_at?: string | null
|
|
258
261
|
}
|
|
@@ -3643,4 +3646,4 @@ export const Constants = {
|
|
|
3643
3646
|
},
|
|
3644
3647
|
} as const
|
|
3645
3648
|
|
|
3646
|
-
|
|
3649
|
+
|