Skip to content

Commit

Permalink
Build after contribute
Browse files Browse the repository at this point in the history
  • Loading branch information
DidoMarchet committed Apr 20, 2023
1 parent bf07eea commit 8a32f04
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 17 deletions.
3 changes: 2 additions & 1 deletion dist/lib/@types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { App } from "vue";
import type { SupabaseClientOptions } from "@supabase/supabase-js";
export interface Params {
supabaseUrl: string;
supabaseKey: string;
options?: never;
options?: SupabaseClientOptions<'public'>;
}
export interface IVueSupabase {
install(app: App, params: Params): void;
Expand Down
6 changes: 6 additions & 0 deletions dist/lib/main.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import type { IVueSupabase } from "./@types";
import type { SupabaseClient } from "@supabase/supabase-js";

declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
$supabase: IVueSupabase;
}
}

export function useSupabase(): SupabaseClient;

declare const supabasePlugin: IVueSupabase;
export default supabasePlugin;
27 changes: 14 additions & 13 deletions dist/vue-3-supabase.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -1140,29 +1140,34 @@ class PostgrestClient {
});
}
}
const _from = "websocket@^1.0.34";
const _args = [
[
"[email protected]",
"/Users/Dido/Desktop/Test/vue-3-supabase"
]
];
const _from = "[email protected]";
const _id = "[email protected]";
const _inBundle = false;
const _integrity = "sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==";
const _location = "/websocket";
const _phantomChildren = {};
const _requested = {
type: "range",
type: "version",
registry: true,
raw: "websocket@^1.0.34",
raw: "[email protected]",
name: "websocket",
escapedName: "websocket",
rawSpec: "^1.0.34",
rawSpec: "1.0.34",
saveSpec: null,
fetchSpec: "^1.0.34"
fetchSpec: "1.0.34"
};
const _requiredBy = [
"/@supabase/realtime-js"
];
const _resolved = "https://registry.npmjs.org/websocket/-/websocket-1.0.34.tgz";
const _shasum = "2bdc2602c08bf2c82253b730655c0ef7dcab3111";
const _spec = "websocket@^1.0.34";
const _where = "/Users/dido/Desktop/Dido Git/vue-3-supabase/node_modules/@supabase/realtime-js";
const _spec = "1.0.34";
const _where = "/Users/Dido/Desktop/Test/vue-3-supabase";
const author = {
name: "Brian McKelvey",
email: "[email protected]",
Expand All @@ -1172,7 +1177,6 @@ const browser$1 = "lib/browser.js";
const bugs = {
url: "https://github.com/theturtle32/WebSocket-Node/issues"
};
const bundleDependencies = false;
const config = {
verbose: false
};
Expand All @@ -1191,7 +1195,6 @@ const dependencies = {
"utf-8-validate": "^5.0.2",
yaeti: "^0.0.6"
};
const deprecated = false;
const description = "Websocket Client & Server Library implementing the WebSocket protocol as specified in RFC 6455.";
const devDependencies = {
"buffer-equal": "^1.0.0",
Expand Down Expand Up @@ -1233,6 +1236,7 @@ const scripts = {
};
const version$5 = "1.0.34";
var require$$0 = {
_args,
_from,
_id,
_inBundle,
Expand All @@ -1242,17 +1246,14 @@ var require$$0 = {
_requested,
_requiredBy,
_resolved,
_shasum,
_spec,
_where,
author,
browser: browser$1,
bugs,
bundleDependencies,
config,
contributors,
dependencies,
deprecated,
description,
devDependencies,
directories,
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-3-supabase.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-3-supabase",
"version": "2.2.5",
"version": "2.2.6",
"files": [
"dist"
],
Expand Down

0 comments on commit 8a32f04

Please sign in to comment.