Skip to content

Commit 670c09f

Browse files
authored
chore: apply prod migrations (#5346)
1 parent 4b8657f commit 670c09f

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

apps/frontend/lib/types/schema-types.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,10 @@ export type PreviewDeductCreditsArgs = z.infer<
294294
export type PreviewDeductCreditsReturns = z.infer<
295295
typeof generated.previewDeductCreditsReturnsSchema
296296
>;
297+
export type UuidOrNullArgs = z.infer<typeof generated.uuidOrNullArgsSchema>;
298+
export type UuidOrNullReturns = z.infer<
299+
typeof generated.uuidOrNullReturnsSchema
300+
>;
297301
export type ValidateOwnershipLimitsArgs = z.infer<
298302
typeof generated.validateOwnershipLimitsArgsSchema
299303
>;

apps/frontend/lib/types/schema.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,6 +1046,12 @@ export const previewDeductCreditsArgsSchema = z.object({
10461046

10471047
export const previewDeductCreditsReturnsSchema = z.boolean();
10481048

1049+
export const uuidOrNullArgsSchema = z.object({
1050+
str: z.string(),
1051+
});
1052+
1053+
export const uuidOrNullReturnsSchema = z.string();
1054+
10491055
export const validateOwnershipLimitsArgsSchema = z.object({
10501056
p_current_record_id: z.string().optional(),
10511057
p_new_role: z.string(),

apps/frontend/lib/types/supabase.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,10 @@ export type Database = {
981981
};
982982
Returns: boolean;
983983
};
984+
uuid_or_null: {
985+
Args: { str: string };
986+
Returns: string;
987+
};
984988
validate_ownership_limits: {
985989
Args: {
986990
p_current_record_id?: string;

0 commit comments

Comments
 (0)