Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

Commit

Permalink
Update database types
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 8, 2022
1 parent e3202d8 commit f16e3f5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/types/supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export interface paths {
userId?: parameters["rowFilter.Bill.userId"];
completedDate?: parameters["rowFilter.Bill.completedDate"];
archivedDate?: parameters["rowFilter.Bill.archivedDate"];
deletedDate?: parameters["rowFilter.Bill.deletedDate"];
/** Filtering Columns */
select?: parameters["select"];
/** Ordering */
Expand Down Expand Up @@ -82,6 +83,7 @@ export interface paths {
userId?: parameters["rowFilter.Bill.userId"];
completedDate?: parameters["rowFilter.Bill.completedDate"];
archivedDate?: parameters["rowFilter.Bill.archivedDate"];
deletedDate?: parameters["rowFilter.Bill.deletedDate"];
};
header: {
/** Preference */
Expand All @@ -104,6 +106,7 @@ export interface paths {
userId?: parameters["rowFilter.Bill.userId"];
completedDate?: parameters["rowFilter.Bill.completedDate"];
archivedDate?: parameters["rowFilter.Bill.archivedDate"];
deletedDate?: parameters["rowFilter.Bill.deletedDate"];
};
body: {
/** Bill */
Expand Down Expand Up @@ -441,6 +444,8 @@ export interface definitions {
completedDate?: string;
/** Format: date */
archivedDate?: string;
/** Format: date */
deletedDate?: string;
};
FCMToken: {
/**
Expand Down Expand Up @@ -562,6 +567,8 @@ export interface parameters {
"rowFilter.Bill.completedDate": string;
/** Format: date */
"rowFilter.Bill.archivedDate": string;
/** Format: date */
"rowFilter.Bill.deletedDate": string;
/** @description FCMToken */
"body.FCMToken": definitions["FCMToken"];
/** Format: bigint */
Expand Down

0 comments on commit f16e3f5

Please sign in to comment.