Skip to content

Commit 8a32f04

Browse files
committed
Build after contribute
1 parent bf07eea commit 8a32f04

File tree

6 files changed

+25
-17
lines changed

6 files changed

+25
-17
lines changed

dist/lib/@types/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import { App } from "vue";
2+
import type { SupabaseClientOptions } from "@supabase/supabase-js";
23
export interface Params {
34
supabaseUrl: string;
45
supabaseKey: string;
5-
options?: never;
6+
options?: SupabaseClientOptions<'public'>;
67
}
78
export interface IVueSupabase {
89
install(app: App, params: Params): void;

dist/lib/main.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import type { IVueSupabase } from "./@types";
2+
import type { SupabaseClient } from "@supabase/supabase-js";
3+
24
declare module "@vue/runtime-core" {
35
interface ComponentCustomProperties {
46
$supabase: IVueSupabase;
57
}
68
}
79

10+
export function useSupabase(): SupabaseClient;
11+
12+
declare const supabasePlugin: IVueSupabase;
13+
export default supabasePlugin;

dist/vue-3-supabase.es.js

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,29 +1140,34 @@ class PostgrestClient {
11401140
});
11411141
}
11421142
}
1143-
const _from = "websocket@^1.0.34";
1143+
const _args = [
1144+
[
1145+
"websocket@1.0.34",
1146+
"/Users/Dido/Desktop/Test/vue-3-supabase"
1147+
]
1148+
];
1149+
const _from = "websocket@1.0.34";
11441150
const _id = "websocket@1.0.34";
11451151
const _inBundle = false;
11461152
const _integrity = "sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==";
11471153
const _location = "/websocket";
11481154
const _phantomChildren = {};
11491155
const _requested = {
1150-
type: "range",
1156+
type: "version",
11511157
registry: true,
1152-
raw: "websocket@^1.0.34",
1158+
raw: "websocket@1.0.34",
11531159
name: "websocket",
11541160
escapedName: "websocket",
1155-
rawSpec: "^1.0.34",
1161+
rawSpec: "1.0.34",
11561162
saveSpec: null,
1157-
fetchSpec: "^1.0.34"
1163+
fetchSpec: "1.0.34"
11581164
};
11591165
const _requiredBy = [
11601166
"/@supabase/realtime-js"
11611167
];
11621168
const _resolved = "https://registry.npmjs.org/websocket/-/websocket-1.0.34.tgz";
1163-
const _shasum = "2bdc2602c08bf2c82253b730655c0ef7dcab3111";
1164-
const _spec = "websocket@^1.0.34";
1165-
const _where = "/Users/dido/Desktop/Dido Git/vue-3-supabase/node_modules/@supabase/realtime-js";
1169+
const _spec = "1.0.34";
1170+
const _where = "/Users/Dido/Desktop/Test/vue-3-supabase";
11661171
const author = {
11671172
name: "Brian McKelvey",
11681173
email: "theturtle32@gmail.com",
@@ -1172,7 +1177,6 @@ const browser$1 = "lib/browser.js";
11721177
const bugs = {
11731178
url: "https://github.com/theturtle32/WebSocket-Node/issues"
11741179
};
1175-
const bundleDependencies = false;
11761180
const config = {
11771181
verbose: false
11781182
};
@@ -1191,7 +1195,6 @@ const dependencies = {
11911195
"utf-8-validate": "^5.0.2",
11921196
yaeti: "^0.0.6"
11931197
};
1194-
const deprecated = false;
11951198
const description = "Websocket Client & Server Library implementing the WebSocket protocol as specified in RFC 6455.";
11961199
const devDependencies = {
11971200
"buffer-equal": "^1.0.0",
@@ -1233,6 +1236,7 @@ const scripts = {
12331236
};
12341237
const version$5 = "1.0.34";
12351238
var require$$0 = {
1239+
_args,
12361240
_from,
12371241
_id,
12381242
_inBundle,
@@ -1242,17 +1246,14 @@ var require$$0 = {
12421246
_requested,
12431247
_requiredBy,
12441248
_resolved,
1245-
_shasum,
12461249
_spec,
12471250
_where,
12481251
author,
12491252
browser: browser$1,
12501253
bugs,
1251-
bundleDependencies,
12521254
config,
12531255
contributors,
12541256
dependencies,
1255-
deprecated,
12561257
description,
12571258
devDependencies,
12581259
directories,

dist/vue-3-supabase.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-3-supabase",
3-
"version": "2.2.5",
3+
"version": "2.2.6",
44
"files": [
55
"dist"
66
],

0 commit comments

Comments
 (0)