Skip to content

Commit

Permalink
Update release pipeline (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks authored Apr 5, 2023
1 parent b289862 commit f86073d
Show file tree
Hide file tree
Showing 4 changed files with 2,128 additions and 2,214 deletions.
5 changes: 5 additions & 0 deletions .changeset/nine-birds-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@supabase/auth-helpers-shared': patch
---

Update to use custom Buffer implementation
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: pnpm/[email protected]
with:
version: 7.13.4
version: 8.1.0

- name: Set up Node
uses: actions/setup-node@v2
Expand Down
114 changes: 31 additions & 83 deletions examples/nextjs/db_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,110 +9,58 @@ export type Json =
export interface Database {
public: {
Tables: {
partners: {
test: {
Row: {
created_at: string | null;
id: number;
slug: string;
type: Database['public']['Enums']['partner_type'];
category: string;
developer: string;
title: string;
description: string;
logo: string;
images: string[];
video: string;
overview: string;
website: string;
docs: string;
approved: boolean;
};
Insert: {
created_at?: string | null;
id?: number;
slug?: string;
type?: Database['public']['Enums']['partner_type'];
category?: string;
developer?: string;
title?: string;
description?: string;
logo?: string;
images?: string[];
video?: string;
overview?: string;
website?: string;
docs?: string;
approved?: boolean;
};
Update: {
created_at?: string | null;
id?: number;
slug?: string;
type?: Database['public']['Enums']['partner_type'];
category?: string;
developer?: string;
title?: string;
description?: string;
logo?: string;
images?: string[];
video?: string;
overview?: string;
website?: string;
docs?: string;
approved?: boolean;
};
};
partner_contacts: {
users: {
Row: {
id: number;
type: Database['public']['Enums']['partner_type'];
company: string;
country: string;
details?: string;
email: string;
first: string;
last: string;
phone?: string;
size?: number;
title?: string;
website: string;
city: string | null;
country: string | null;
created_at: string;
full_name: string | null;
id: string;
username: string | null;
};
Insert: {
id?: number;
type?: Database['public']['Enums']['partner_type'];
company?: string;
country?: string;
details?: string;
email?: string;
first?: string;
last?: string;
phone?: string;
size?: number;
title?: string;
website?: string;
city?: string | null;
country?: string | null;
created_at?: string;
full_name?: string | null;
id: string;
username?: string | null;
};
Update: {
id?: number;
type?: Database['public']['Enums']['partner_type'];
company?: string;
country?: string;
details?: string;
email?: string;
first?: string;
last?: string;
phone?: string;
size?: number;
title?: string;
website?: string;
city?: string | null;
country?: string | null;
created_at?: string;
full_name?: string | null;
id?: string;
username?: string | null;
};
};
};
Views: {};
Views: {
[_ in never]: never;
};
Functions: {
derive_label_sort_from_label: {
Args: { label: string };
Returns: string;
};
[_ in never]: never;
};
Enums: {
partner_type: 'technology' | 'expert';
[_ in never]: never;
};
CompositeTypes: {
[_ in never]: never;
};
};
}
Loading

0 comments on commit f86073d

Please sign in to comment.