File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -294,6 +294,10 @@ export type PreviewDeductCreditsArgs = z.infer<
294294export 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+ > ;
297301export type ValidateOwnershipLimitsArgs = z . infer <
298302 typeof generated . validateOwnershipLimitsArgsSchema
299303> ;
Original file line number Diff line number Diff line change @@ -1046,6 +1046,12 @@ export const previewDeductCreditsArgsSchema = z.object({
10461046
10471047export const previewDeductCreditsReturnsSchema = z . boolean ( ) ;
10481048
1049+ export const uuidOrNullArgsSchema = z . object ( {
1050+ str : z . string ( ) ,
1051+ } ) ;
1052+
1053+ export const uuidOrNullReturnsSchema = z . string ( ) ;
1054+
10491055export const validateOwnershipLimitsArgsSchema = z . object ( {
10501056 p_current_record_id : z . string ( ) . optional ( ) ,
10511057 p_new_role : z . string ( ) ,
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments