zephex 2.0.11 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -40
- package/dist/cli.js +1 -1
- package/dist/index.js +51090 -122909
- package/dist/tools/architecture/index.js +865 -256
- package/dist/tools/audit_headers/index.js +705 -381
- package/dist/tools/context/index.js +1895 -366
- package/dist/tools/reader/readCode.js +548 -434
- package/dist/tools/scope_task/index.js +24253 -19318
- package/dist/tools/search/findCode.js +17212 -13149
- package/dist/tools/server.js +22789 -96958
- package/dist/tools/thinking/index.js +904 -264
- package/package.json +2 -2
- package/dist/tools/inspect_url/index.js +0 -166175
|
@@ -148,6 +148,25 @@ function filePolyfill(path) {
|
|
|
148
148
|
text: async () => readFile(path, "utf8")
|
|
149
149
|
};
|
|
150
150
|
}
|
|
151
|
+
|
|
152
|
+
class GlobPolyfill {
|
|
153
|
+
pattern;
|
|
154
|
+
constructor(pattern) {
|
|
155
|
+
this.pattern = pattern;
|
|
156
|
+
}
|
|
157
|
+
async* scan(opts) {
|
|
158
|
+
const { glob } = await import("node:fs/promises");
|
|
159
|
+
const cwd = opts?.cwd ?? process.cwd();
|
|
160
|
+
for await (const entry of glob(this.pattern, { cwd })) {
|
|
161
|
+
if (opts?.absolute) {
|
|
162
|
+
const { resolve } = await import("node:path");
|
|
163
|
+
yield resolve(cwd, entry);
|
|
164
|
+
} else {
|
|
165
|
+
yield entry;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
151
170
|
function ensureBunPolyfill() {
|
|
152
171
|
const g = globalThis;
|
|
153
172
|
if (typeof g.Bun !== "undefined")
|
|
@@ -155,7 +174,8 @@ function ensureBunPolyfill() {
|
|
|
155
174
|
g.Bun = {
|
|
156
175
|
file: filePolyfill,
|
|
157
176
|
spawn: spawnPolyfill,
|
|
158
|
-
JSONL: { parse: jsonlParsePolyfill }
|
|
177
|
+
JSONL: { parse: jsonlParsePolyfill },
|
|
178
|
+
Glob: GlobPolyfill
|
|
159
179
|
};
|
|
160
180
|
}
|
|
161
181
|
var init_bun_polyfill = __esm(() => {
|
|
@@ -186244,16 +186264,27 @@ function sanitizeContextOutput(output, maxOutputChars = 8000) {
|
|
|
186244
186264
|
truncated = true;
|
|
186245
186265
|
try {
|
|
186246
186266
|
const parsed = JSON.parse(jsonStr);
|
|
186247
|
-
|
|
186248
|
-
|
|
186249
|
-
|
|
186267
|
+
for (const key of ["file_tree", "mermaid_diagrams", "mermaid", "diagrams"]) {
|
|
186268
|
+
if (parsed[key] && JSON.stringify(parsed[key]).length > maxOutputChars / 4) {
|
|
186269
|
+
delete parsed[key];
|
|
186270
|
+
parsed._truncation_note = `${key} removed due to output size limit`;
|
|
186271
|
+
}
|
|
186250
186272
|
}
|
|
186251
186273
|
jsonStr = JSON.stringify(parsed, null, 0);
|
|
186252
186274
|
if (jsonStr.length > maxOutputChars) {
|
|
186253
|
-
|
|
186275
|
+
const reparsed = JSON.parse(jsonStr);
|
|
186276
|
+
for (const [k, v] of Object.entries(reparsed)) {
|
|
186277
|
+
if (typeof v === "string" && v.length > 500) {
|
|
186278
|
+
reparsed[k] = v.slice(0, 500) + "...[truncated]";
|
|
186279
|
+
}
|
|
186280
|
+
}
|
|
186281
|
+
jsonStr = JSON.stringify(reparsed, null, 0);
|
|
186282
|
+
}
|
|
186283
|
+
if (jsonStr.length > maxOutputChars) {
|
|
186284
|
+
jsonStr = JSON.stringify({ ...JSON.parse(jsonStr.slice(0, maxOutputChars * 2)), _truncated: true });
|
|
186254
186285
|
}
|
|
186255
186286
|
} catch {
|
|
186256
|
-
|
|
186287
|
+
return { sanitized: output, truncated: true, secretsRedacted };
|
|
186257
186288
|
}
|
|
186258
186289
|
}
|
|
186259
186290
|
try {
|
|
@@ -186914,7 +186945,7 @@ var require_tslib = __commonJS((exports, module) => {
|
|
|
186914
186945
|
});
|
|
186915
186946
|
});
|
|
186916
186947
|
|
|
186917
|
-
// node_modules/.bun/@supabase+functions-js@2.
|
|
186948
|
+
// node_modules/.bun/@supabase+functions-js@2.105.1/node_modules/@supabase/functions-js/dist/main/helper.js
|
|
186918
186949
|
var require_helper = __commonJS((exports) => {
|
|
186919
186950
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
186920
186951
|
exports.resolveFetch = undefined;
|
|
@@ -186927,7 +186958,7 @@ var require_helper = __commonJS((exports) => {
|
|
|
186927
186958
|
exports.resolveFetch = resolveFetch;
|
|
186928
186959
|
});
|
|
186929
186960
|
|
|
186930
|
-
// node_modules/.bun/@supabase+functions-js@2.
|
|
186961
|
+
// node_modules/.bun/@supabase+functions-js@2.105.1/node_modules/@supabase/functions-js/dist/main/types.js
|
|
186931
186962
|
var require_types = __commonJS((exports) => {
|
|
186932
186963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
186933
186964
|
exports.FunctionRegion = exports.FunctionsHttpError = exports.FunctionsRelayError = exports.FunctionsFetchError = exports.FunctionsError = undefined;
|
|
@@ -186938,6 +186969,13 @@ var require_types = __commonJS((exports) => {
|
|
|
186938
186969
|
this.name = name;
|
|
186939
186970
|
this.context = context;
|
|
186940
186971
|
}
|
|
186972
|
+
toJSON() {
|
|
186973
|
+
return {
|
|
186974
|
+
name: this.name,
|
|
186975
|
+
message: this.message,
|
|
186976
|
+
context: this.context
|
|
186977
|
+
};
|
|
186978
|
+
}
|
|
186941
186979
|
}
|
|
186942
186980
|
exports.FunctionsError = FunctionsError;
|
|
186943
186981
|
|
|
@@ -186981,7 +187019,7 @@ var require_types = __commonJS((exports) => {
|
|
|
186981
187019
|
})(FunctionRegion || (exports.FunctionRegion = FunctionRegion = {}));
|
|
186982
187020
|
});
|
|
186983
187021
|
|
|
186984
|
-
// node_modules/.bun/@supabase+functions-js@2.
|
|
187022
|
+
// node_modules/.bun/@supabase+functions-js@2.105.1/node_modules/@supabase/functions-js/dist/main/FunctionsClient.js
|
|
186985
187023
|
var require_FunctionsClient = __commonJS((exports) => {
|
|
186986
187024
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
186987
187025
|
exports.FunctionsClient = undefined;
|
|
@@ -187094,7 +187132,7 @@ var require_FunctionsClient = __commonJS((exports) => {
|
|
|
187094
187132
|
exports.FunctionsClient = FunctionsClient;
|
|
187095
187133
|
});
|
|
187096
187134
|
|
|
187097
|
-
// node_modules/.bun/@supabase+functions-js@2.
|
|
187135
|
+
// node_modules/.bun/@supabase+functions-js@2.105.1/node_modules/@supabase/functions-js/dist/main/index.js
|
|
187098
187136
|
var require_main = __commonJS((exports) => {
|
|
187099
187137
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
187100
187138
|
exports.FunctionRegion = exports.FunctionsRelayError = exports.FunctionsHttpError = exports.FunctionsFetchError = exports.FunctionsError = exports.FunctionsClient = undefined;
|
|
@@ -187120,7 +187158,33 @@ var require_main = __commonJS((exports) => {
|
|
|
187120
187158
|
} });
|
|
187121
187159
|
});
|
|
187122
187160
|
|
|
187123
|
-
// node_modules/.bun/@supabase+postgrest-js@2.
|
|
187161
|
+
// node_modules/.bun/@supabase+postgrest-js@2.105.1/node_modules/@supabase/postgrest-js/dist/index.mjs
|
|
187162
|
+
function sleep(ms, signal) {
|
|
187163
|
+
return new Promise((resolve2) => {
|
|
187164
|
+
if (signal === null || signal === undefined ? undefined : signal.aborted) {
|
|
187165
|
+
resolve2();
|
|
187166
|
+
return;
|
|
187167
|
+
}
|
|
187168
|
+
const id = setTimeout(() => {
|
|
187169
|
+
signal === null || signal === undefined || signal.removeEventListener("abort", onAbort);
|
|
187170
|
+
resolve2();
|
|
187171
|
+
}, ms);
|
|
187172
|
+
function onAbort() {
|
|
187173
|
+
clearTimeout(id);
|
|
187174
|
+
resolve2();
|
|
187175
|
+
}
|
|
187176
|
+
signal === null || signal === undefined || signal.addEventListener("abort", onAbort);
|
|
187177
|
+
});
|
|
187178
|
+
}
|
|
187179
|
+
function shouldRetry(method, status, attemptCount, retryEnabled) {
|
|
187180
|
+
if (!retryEnabled || attemptCount >= DEFAULT_MAX_RETRIES)
|
|
187181
|
+
return false;
|
|
187182
|
+
if (!RETRYABLE_METHODS.includes(method))
|
|
187183
|
+
return false;
|
|
187184
|
+
if (!RETRYABLE_STATUS_CODES.includes(status))
|
|
187185
|
+
return false;
|
|
187186
|
+
return true;
|
|
187187
|
+
}
|
|
187124
187188
|
function _typeof(o) {
|
|
187125
187189
|
"@babel/helpers - typeof";
|
|
187126
187190
|
return _typeof = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(o$1) {
|
|
@@ -187174,10 +187238,11 @@ function _objectSpread2(e) {
|
|
|
187174
187238
|
}
|
|
187175
187239
|
return e;
|
|
187176
187240
|
}
|
|
187177
|
-
var PostgrestError, PostgrestBuilder = class {
|
|
187241
|
+
var DEFAULT_MAX_RETRIES = 3, getRetryDelay = (attemptIndex) => Math.min(1000 * 2 ** attemptIndex, 30000), RETRYABLE_STATUS_CODES, RETRYABLE_METHODS, PostgrestError, PostgrestBuilder = class {
|
|
187178
187242
|
constructor(builder) {
|
|
187179
|
-
var _builder$shouldThrowO, _builder$isMaybeSingl, _builder$urlLengthLim;
|
|
187243
|
+
var _builder$shouldThrowO, _builder$isMaybeSingl, _builder$shouldStripN, _builder$urlLengthLim, _builder$retry;
|
|
187180
187244
|
this.shouldThrowOnError = false;
|
|
187245
|
+
this.retryEnabled = true;
|
|
187181
187246
|
this.method = builder.method;
|
|
187182
187247
|
this.url = builder.url;
|
|
187183
187248
|
this.headers = new Headers(builder.headers);
|
|
@@ -187186,7 +187251,9 @@ var PostgrestError, PostgrestBuilder = class {
|
|
|
187186
187251
|
this.shouldThrowOnError = (_builder$shouldThrowO = builder.shouldThrowOnError) !== null && _builder$shouldThrowO !== undefined ? _builder$shouldThrowO : false;
|
|
187187
187252
|
this.signal = builder.signal;
|
|
187188
187253
|
this.isMaybeSingle = (_builder$isMaybeSingl = builder.isMaybeSingle) !== null && _builder$isMaybeSingl !== undefined ? _builder$isMaybeSingl : false;
|
|
187254
|
+
this.shouldStripNulls = (_builder$shouldStripN = builder.shouldStripNulls) !== null && _builder$shouldStripN !== undefined ? _builder$shouldStripN : false;
|
|
187189
187255
|
this.urlLengthLimit = (_builder$urlLengthLim = builder.urlLengthLimit) !== null && _builder$urlLengthLim !== undefined ? _builder$urlLengthLim : 8000;
|
|
187256
|
+
this.retryEnabled = (_builder$retry = builder.retry) !== null && _builder$retry !== undefined ? _builder$retry : true;
|
|
187190
187257
|
if (builder.fetch)
|
|
187191
187258
|
this.fetch = builder.fetch;
|
|
187192
187259
|
else
|
|
@@ -187196,11 +187263,21 @@ var PostgrestError, PostgrestBuilder = class {
|
|
|
187196
187263
|
this.shouldThrowOnError = true;
|
|
187197
187264
|
return this;
|
|
187198
187265
|
}
|
|
187266
|
+
stripNulls() {
|
|
187267
|
+
if (this.headers.get("Accept") === "text/csv")
|
|
187268
|
+
throw new Error("stripNulls() cannot be used with csv()");
|
|
187269
|
+
this.shouldStripNulls = true;
|
|
187270
|
+
return this;
|
|
187271
|
+
}
|
|
187199
187272
|
setHeader(name, value) {
|
|
187200
187273
|
this.headers = new Headers(this.headers);
|
|
187201
187274
|
this.headers.set(name, value);
|
|
187202
187275
|
return this;
|
|
187203
187276
|
}
|
|
187277
|
+
retry(enabled) {
|
|
187278
|
+
this.retryEnabled = enabled;
|
|
187279
|
+
return this;
|
|
187280
|
+
}
|
|
187204
187281
|
then(onfulfilled, onrejected) {
|
|
187205
187282
|
var _this = this;
|
|
187206
187283
|
if (this.schema === undefined) {} else if (["GET", "HEAD"].includes(this.method))
|
|
@@ -187209,78 +187286,54 @@ var PostgrestError, PostgrestBuilder = class {
|
|
|
187209
187286
|
this.headers.set("Content-Profile", this.schema);
|
|
187210
187287
|
if (this.method !== "GET" && this.method !== "HEAD")
|
|
187211
187288
|
this.headers.set("Content-Type", "application/json");
|
|
187289
|
+
if (this.shouldStripNulls) {
|
|
187290
|
+
const currentAccept = this.headers.get("Accept");
|
|
187291
|
+
if (currentAccept === "application/vnd.pgrst.object+json")
|
|
187292
|
+
this.headers.set("Accept", "application/vnd.pgrst.object+json;nulls=stripped");
|
|
187293
|
+
else if (!currentAccept || currentAccept === "application/json")
|
|
187294
|
+
this.headers.set("Accept", "application/vnd.pgrst.array+json;nulls=stripped");
|
|
187295
|
+
}
|
|
187212
187296
|
const _fetch = this.fetch;
|
|
187213
|
-
|
|
187214
|
-
|
|
187215
|
-
|
|
187216
|
-
|
|
187217
|
-
|
|
187218
|
-
|
|
187219
|
-
|
|
187220
|
-
let data = null;
|
|
187221
|
-
let count = null;
|
|
187222
|
-
let status = res$1.status;
|
|
187223
|
-
let statusText = res$1.statusText;
|
|
187224
|
-
if (res$1.ok) {
|
|
187225
|
-
var _this$headers$get2, _res$headers$get;
|
|
187226
|
-
if (_this.method !== "HEAD") {
|
|
187227
|
-
var _this$headers$get;
|
|
187228
|
-
const body = await res$1.text();
|
|
187229
|
-
if (body === "") {} else if (_this.headers.get("Accept") === "text/csv")
|
|
187230
|
-
data = body;
|
|
187231
|
-
else if (_this.headers.get("Accept") && ((_this$headers$get = _this.headers.get("Accept")) === null || _this$headers$get === undefined ? undefined : _this$headers$get.includes("application/vnd.pgrst.plan+text")))
|
|
187232
|
-
data = body;
|
|
187233
|
-
else
|
|
187234
|
-
data = JSON.parse(body);
|
|
187235
|
-
}
|
|
187236
|
-
const countHeader = (_this$headers$get2 = _this.headers.get("Prefer")) === null || _this$headers$get2 === undefined ? undefined : _this$headers$get2.match(/count=(exact|planned|estimated)/);
|
|
187237
|
-
const contentRange = (_res$headers$get = res$1.headers.get("content-range")) === null || _res$headers$get === undefined ? undefined : _res$headers$get.split("/");
|
|
187238
|
-
if (countHeader && contentRange && contentRange.length > 1)
|
|
187239
|
-
count = parseInt(contentRange[1]);
|
|
187240
|
-
if (_this.isMaybeSingle && Array.isArray(data))
|
|
187241
|
-
if (data.length > 1) {
|
|
187242
|
-
error48 = {
|
|
187243
|
-
code: "PGRST116",
|
|
187244
|
-
details: `Results contain ${data.length} rows, application/vnd.pgrst.object+json requires 1 row`,
|
|
187245
|
-
hint: null,
|
|
187246
|
-
message: "JSON object requested, multiple (or no) rows returned"
|
|
187247
|
-
};
|
|
187248
|
-
data = null;
|
|
187249
|
-
count = null;
|
|
187250
|
-
status = 406;
|
|
187251
|
-
statusText = "Not Acceptable";
|
|
187252
|
-
} else if (data.length === 1)
|
|
187253
|
-
data = data[0];
|
|
187254
|
-
else
|
|
187255
|
-
data = null;
|
|
187256
|
-
} else {
|
|
187257
|
-
const body = await res$1.text();
|
|
187297
|
+
const executeWithRetry = async () => {
|
|
187298
|
+
let attemptCount = 0;
|
|
187299
|
+
while (true) {
|
|
187300
|
+
const requestHeaders = new Headers(_this.headers);
|
|
187301
|
+
if (attemptCount > 0)
|
|
187302
|
+
requestHeaders.set("X-Retry-Count", String(attemptCount));
|
|
187303
|
+
let res$1;
|
|
187258
187304
|
try {
|
|
187259
|
-
|
|
187260
|
-
|
|
187261
|
-
|
|
187262
|
-
|
|
187263
|
-
|
|
187264
|
-
|
|
187265
|
-
|
|
187266
|
-
|
|
187267
|
-
|
|
187268
|
-
|
|
187269
|
-
|
|
187270
|
-
|
|
187271
|
-
|
|
187305
|
+
res$1 = await _fetch(_this.url.toString(), {
|
|
187306
|
+
method: _this.method,
|
|
187307
|
+
headers: requestHeaders,
|
|
187308
|
+
body: JSON.stringify(_this.body, (_, value) => typeof value === "bigint" ? value.toString() : value),
|
|
187309
|
+
signal: _this.signal
|
|
187310
|
+
});
|
|
187311
|
+
} catch (fetchError) {
|
|
187312
|
+
if ((fetchError === null || fetchError === undefined ? undefined : fetchError.name) === "AbortError" || (fetchError === null || fetchError === undefined ? undefined : fetchError.code) === "ABORT_ERR")
|
|
187313
|
+
throw fetchError;
|
|
187314
|
+
if (!RETRYABLE_METHODS.includes(_this.method))
|
|
187315
|
+
throw fetchError;
|
|
187316
|
+
if (_this.retryEnabled && attemptCount < DEFAULT_MAX_RETRIES) {
|
|
187317
|
+
const delay = getRetryDelay(attemptCount);
|
|
187318
|
+
attemptCount++;
|
|
187319
|
+
await sleep(delay, _this.signal);
|
|
187320
|
+
continue;
|
|
187321
|
+
}
|
|
187322
|
+
throw fetchError;
|
|
187323
|
+
}
|
|
187324
|
+
if (shouldRetry(_this.method, res$1.status, attemptCount, _this.retryEnabled)) {
|
|
187325
|
+
var _res$headers$get, _res$headers;
|
|
187326
|
+
const retryAfterHeader = (_res$headers$get = (_res$headers = res$1.headers) === null || _res$headers === undefined ? undefined : _res$headers.get("Retry-After")) !== null && _res$headers$get !== undefined ? _res$headers$get : null;
|
|
187327
|
+
const delay = retryAfterHeader !== null ? Math.max(0, parseInt(retryAfterHeader, 10) || 0) * 1000 : getRetryDelay(attemptCount);
|
|
187328
|
+
await res$1.text();
|
|
187329
|
+
attemptCount++;
|
|
187330
|
+
await sleep(delay, _this.signal);
|
|
187331
|
+
continue;
|
|
187272
187332
|
}
|
|
187273
|
-
|
|
187274
|
-
throw new PostgrestError(error48);
|
|
187333
|
+
return await _this.processResponse(res$1);
|
|
187275
187334
|
}
|
|
187276
|
-
|
|
187277
|
-
|
|
187278
|
-
data,
|
|
187279
|
-
count,
|
|
187280
|
-
status,
|
|
187281
|
-
statusText
|
|
187282
|
-
};
|
|
187283
|
-
});
|
|
187335
|
+
};
|
|
187336
|
+
let res = executeWithRetry();
|
|
187284
187337
|
if (!this.shouldThrowOnError)
|
|
187285
187338
|
res = res.catch((fetchError) => {
|
|
187286
187339
|
var _fetchError$name2;
|
|
@@ -187318,6 +187371,7 @@ ${cause.stack}`;
|
|
|
187318
187371
|
hint += `. Your request URL is ${urlLength} characters. If selecting many fields, consider using views. If filtering with large arrays (e.g., .in('id', [200+ IDs])), consider using an RPC function instead.`;
|
|
187319
187372
|
}
|
|
187320
187373
|
return {
|
|
187374
|
+
success: false,
|
|
187321
187375
|
error: {
|
|
187322
187376
|
message: `${(_fetchError$name2 = fetchError === null || fetchError === undefined ? undefined : fetchError.name) !== null && _fetchError$name2 !== undefined ? _fetchError$name2 : "FetchError"}: ${fetchError === null || fetchError === undefined ? undefined : fetchError.message}`,
|
|
187323
187377
|
details: errorDetails,
|
|
@@ -187332,6 +187386,74 @@ ${cause.stack}`;
|
|
|
187332
187386
|
});
|
|
187333
187387
|
return res.then(onfulfilled, onrejected);
|
|
187334
187388
|
}
|
|
187389
|
+
async processResponse(res) {
|
|
187390
|
+
var _this2 = this;
|
|
187391
|
+
let error48 = null;
|
|
187392
|
+
let data = null;
|
|
187393
|
+
let count = null;
|
|
187394
|
+
let status = res.status;
|
|
187395
|
+
let statusText = res.statusText;
|
|
187396
|
+
if (res.ok) {
|
|
187397
|
+
var _this$headers$get2, _res$headers$get2;
|
|
187398
|
+
if (_this2.method !== "HEAD") {
|
|
187399
|
+
var _this$headers$get;
|
|
187400
|
+
const body = await res.text();
|
|
187401
|
+
if (body === "") {} else if (_this2.headers.get("Accept") === "text/csv")
|
|
187402
|
+
data = body;
|
|
187403
|
+
else if (_this2.headers.get("Accept") && ((_this$headers$get = _this2.headers.get("Accept")) === null || _this$headers$get === undefined ? undefined : _this$headers$get.includes("application/vnd.pgrst.plan+text")))
|
|
187404
|
+
data = body;
|
|
187405
|
+
else
|
|
187406
|
+
data = JSON.parse(body);
|
|
187407
|
+
}
|
|
187408
|
+
const countHeader = (_this$headers$get2 = _this2.headers.get("Prefer")) === null || _this$headers$get2 === undefined ? undefined : _this$headers$get2.match(/count=(exact|planned|estimated)/);
|
|
187409
|
+
const contentRange = (_res$headers$get2 = res.headers.get("content-range")) === null || _res$headers$get2 === undefined ? undefined : _res$headers$get2.split("/");
|
|
187410
|
+
if (countHeader && contentRange && contentRange.length > 1)
|
|
187411
|
+
count = parseInt(contentRange[1]);
|
|
187412
|
+
if (_this2.isMaybeSingle && Array.isArray(data))
|
|
187413
|
+
if (data.length > 1) {
|
|
187414
|
+
error48 = {
|
|
187415
|
+
code: "PGRST116",
|
|
187416
|
+
details: `Results contain ${data.length} rows, application/vnd.pgrst.object+json requires 1 row`,
|
|
187417
|
+
hint: null,
|
|
187418
|
+
message: "JSON object requested, multiple (or no) rows returned"
|
|
187419
|
+
};
|
|
187420
|
+
data = null;
|
|
187421
|
+
count = null;
|
|
187422
|
+
status = 406;
|
|
187423
|
+
statusText = "Not Acceptable";
|
|
187424
|
+
} else if (data.length === 1)
|
|
187425
|
+
data = data[0];
|
|
187426
|
+
else
|
|
187427
|
+
data = null;
|
|
187428
|
+
} else {
|
|
187429
|
+
const body = await res.text();
|
|
187430
|
+
try {
|
|
187431
|
+
error48 = JSON.parse(body);
|
|
187432
|
+
if (Array.isArray(error48) && res.status === 404) {
|
|
187433
|
+
data = [];
|
|
187434
|
+
error48 = null;
|
|
187435
|
+
status = 200;
|
|
187436
|
+
statusText = "OK";
|
|
187437
|
+
}
|
|
187438
|
+
} catch (_unused) {
|
|
187439
|
+
if (res.status === 404 && body === "") {
|
|
187440
|
+
status = 204;
|
|
187441
|
+
statusText = "No Content";
|
|
187442
|
+
} else
|
|
187443
|
+
error48 = { message: body };
|
|
187444
|
+
}
|
|
187445
|
+
if (error48 && _this2.shouldThrowOnError)
|
|
187446
|
+
throw new PostgrestError(error48);
|
|
187447
|
+
}
|
|
187448
|
+
return {
|
|
187449
|
+
success: error48 === null,
|
|
187450
|
+
error: error48,
|
|
187451
|
+
data,
|
|
187452
|
+
count,
|
|
187453
|
+
status,
|
|
187454
|
+
statusText
|
|
187455
|
+
};
|
|
187456
|
+
}
|
|
187335
187457
|
returns() {
|
|
187336
187458
|
return this;
|
|
187337
187459
|
}
|
|
@@ -187339,12 +187461,13 @@ ${cause.stack}`;
|
|
|
187339
187461
|
return this;
|
|
187340
187462
|
}
|
|
187341
187463
|
}, PostgrestTransformBuilder, PostgrestReservedCharsRegexp, PostgrestFilterBuilder, PostgrestQueryBuilder = class {
|
|
187342
|
-
constructor(url2, { headers = {}, schema, fetch: fetch$1, urlLengthLimit = 8000 }) {
|
|
187464
|
+
constructor(url2, { headers = {}, schema, fetch: fetch$1, urlLengthLimit = 8000, retry }) {
|
|
187343
187465
|
this.url = url2;
|
|
187344
187466
|
this.headers = new Headers(headers);
|
|
187345
187467
|
this.schema = schema;
|
|
187346
187468
|
this.fetch = fetch$1;
|
|
187347
187469
|
this.urlLengthLimit = urlLengthLimit;
|
|
187470
|
+
this.retry = retry;
|
|
187348
187471
|
}
|
|
187349
187472
|
cloneRequestState() {
|
|
187350
187473
|
return {
|
|
@@ -187373,7 +187496,8 @@ ${cause.stack}`;
|
|
|
187373
187496
|
headers,
|
|
187374
187497
|
schema: this.schema,
|
|
187375
187498
|
fetch: this.fetch,
|
|
187376
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187499
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187500
|
+
retry: this.retry
|
|
187377
187501
|
});
|
|
187378
187502
|
}
|
|
187379
187503
|
insert(values, { count, defaultToNull = true } = {}) {
|
|
@@ -187398,7 +187522,8 @@ ${cause.stack}`;
|
|
|
187398
187522
|
schema: this.schema,
|
|
187399
187523
|
body: values,
|
|
187400
187524
|
fetch: (_this$fetch = this.fetch) !== null && _this$fetch !== undefined ? _this$fetch : fetch,
|
|
187401
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187525
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187526
|
+
retry: this.retry
|
|
187402
187527
|
});
|
|
187403
187528
|
}
|
|
187404
187529
|
upsert(values, { onConflict, ignoreDuplicates = false, count, defaultToNull = true } = {}) {
|
|
@@ -187426,7 +187551,8 @@ ${cause.stack}`;
|
|
|
187426
187551
|
schema: this.schema,
|
|
187427
187552
|
body: values,
|
|
187428
187553
|
fetch: (_this$fetch2 = this.fetch) !== null && _this$fetch2 !== undefined ? _this$fetch2 : fetch,
|
|
187429
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187554
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187555
|
+
retry: this.retry
|
|
187430
187556
|
});
|
|
187431
187557
|
}
|
|
187432
187558
|
update(values, { count } = {}) {
|
|
@@ -187442,7 +187568,8 @@ ${cause.stack}`;
|
|
|
187442
187568
|
schema: this.schema,
|
|
187443
187569
|
body: values,
|
|
187444
187570
|
fetch: (_this$fetch3 = this.fetch) !== null && _this$fetch3 !== undefined ? _this$fetch3 : fetch,
|
|
187445
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187571
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187572
|
+
retry: this.retry
|
|
187446
187573
|
});
|
|
187447
187574
|
}
|
|
187448
187575
|
delete({ count } = {}) {
|
|
@@ -187457,11 +187584,12 @@ ${cause.stack}`;
|
|
|
187457
187584
|
headers,
|
|
187458
187585
|
schema: this.schema,
|
|
187459
187586
|
fetch: (_this$fetch4 = this.fetch) !== null && _this$fetch4 !== undefined ? _this$fetch4 : fetch,
|
|
187460
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187587
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187588
|
+
retry: this.retry
|
|
187461
187589
|
});
|
|
187462
187590
|
}
|
|
187463
187591
|
}, PostgrestClient = class PostgrestClient2 {
|
|
187464
|
-
constructor(url2, { headers = {}, schema, fetch: fetch$1, timeout, urlLengthLimit = 8000 } = {}) {
|
|
187592
|
+
constructor(url2, { headers = {}, schema, fetch: fetch$1, timeout, urlLengthLimit = 8000, retry } = {}) {
|
|
187465
187593
|
this.url = url2;
|
|
187466
187594
|
this.headers = new Headers(headers);
|
|
187467
187595
|
this.schemaName = schema;
|
|
@@ -187491,6 +187619,7 @@ ${cause.stack}`;
|
|
|
187491
187619
|
};
|
|
187492
187620
|
else
|
|
187493
187621
|
this.fetch = originalFetch;
|
|
187622
|
+
this.retry = retry;
|
|
187494
187623
|
}
|
|
187495
187624
|
from(relation) {
|
|
187496
187625
|
if (!relation || typeof relation !== "string" || relation.trim() === "")
|
|
@@ -187499,7 +187628,8 @@ ${cause.stack}`;
|
|
|
187499
187628
|
headers: new Headers(this.headers),
|
|
187500
187629
|
schema: this.schemaName,
|
|
187501
187630
|
fetch: this.fetch,
|
|
187502
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187631
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187632
|
+
retry: this.retry
|
|
187503
187633
|
});
|
|
187504
187634
|
}
|
|
187505
187635
|
schema(schema) {
|
|
@@ -187507,7 +187637,8 @@ ${cause.stack}`;
|
|
|
187507
187637
|
headers: this.headers,
|
|
187508
187638
|
schema,
|
|
187509
187639
|
fetch: this.fetch,
|
|
187510
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187640
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187641
|
+
retry: this.retry
|
|
187511
187642
|
});
|
|
187512
187643
|
}
|
|
187513
187644
|
rpc(fn, args = {}, { head = false, get = false, count } = {}) {
|
|
@@ -187541,11 +187672,18 @@ ${cause.stack}`;
|
|
|
187541
187672
|
schema: this.schemaName,
|
|
187542
187673
|
body,
|
|
187543
187674
|
fetch: (_this$fetch = this.fetch) !== null && _this$fetch !== undefined ? _this$fetch : fetch,
|
|
187544
|
-
urlLengthLimit: this.urlLengthLimit
|
|
187675
|
+
urlLengthLimit: this.urlLengthLimit,
|
|
187676
|
+
retry: this.retry
|
|
187545
187677
|
});
|
|
187546
187678
|
}
|
|
187547
187679
|
};
|
|
187548
187680
|
var init_dist = __esm(() => {
|
|
187681
|
+
RETRYABLE_STATUS_CODES = [520, 503];
|
|
187682
|
+
RETRYABLE_METHODS = [
|
|
187683
|
+
"GET",
|
|
187684
|
+
"HEAD",
|
|
187685
|
+
"OPTIONS"
|
|
187686
|
+
];
|
|
187549
187687
|
PostgrestError = class extends Error {
|
|
187550
187688
|
constructor(context) {
|
|
187551
187689
|
super(context.message);
|
|
@@ -187554,6 +187692,15 @@ var init_dist = __esm(() => {
|
|
|
187554
187692
|
this.hint = context.hint;
|
|
187555
187693
|
this.code = context.code;
|
|
187556
187694
|
}
|
|
187695
|
+
toJSON() {
|
|
187696
|
+
return {
|
|
187697
|
+
name: this.name,
|
|
187698
|
+
message: this.message,
|
|
187699
|
+
details: this.details,
|
|
187700
|
+
hint: this.hint,
|
|
187701
|
+
code: this.code
|
|
187702
|
+
};
|
|
187703
|
+
}
|
|
187557
187704
|
};
|
|
187558
187705
|
PostgrestTransformBuilder = class extends PostgrestBuilder {
|
|
187559
187706
|
select(columns) {
|
|
@@ -187801,7 +187948,7 @@ var init_dist = __esm(() => {
|
|
|
187801
187948
|
};
|
|
187802
187949
|
});
|
|
187803
187950
|
|
|
187804
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
187951
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/lib/websocket-factory.js
|
|
187805
187952
|
var require_websocket_factory = __commonJS((exports) => {
|
|
187806
187953
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
187807
187954
|
exports.WebSocketFactory = undefined;
|
|
@@ -187890,14 +188037,14 @@ Suggested solution: ${env.workaround}`;
|
|
|
187890
188037
|
exports.default = WebSocketFactory;
|
|
187891
188038
|
});
|
|
187892
188039
|
|
|
187893
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
188040
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/lib/version.js
|
|
187894
188041
|
var require_version = __commonJS((exports) => {
|
|
187895
188042
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
187896
188043
|
exports.version = undefined;
|
|
187897
|
-
exports.version = "2.
|
|
188044
|
+
exports.version = "2.105.1";
|
|
187898
188045
|
});
|
|
187899
188046
|
|
|
187900
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
188047
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/lib/constants.js
|
|
187901
188048
|
var require_constants = __commonJS((exports) => {
|
|
187902
188049
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
187903
188050
|
exports.CONNECTION_STATE = exports.TRANSPORTS = exports.CHANNEL_EVENTS = exports.CHANNEL_STATES = exports.SOCKET_STATES = exports.MAX_PUSH_BUFFER_SIZE = exports.WS_CLOSE_NORMAL = exports.DEFAULT_TIMEOUT = exports.VERSION = exports.DEFAULT_VSN = exports.VSN_2_0_0 = exports.VSN_1_0_0 = exports.DEFAULT_VERSION = undefined;
|
|
@@ -187942,7 +188089,7 @@ var require_constants = __commonJS((exports) => {
|
|
|
187942
188089
|
};
|
|
187943
188090
|
});
|
|
187944
188091
|
|
|
187945
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
188092
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/lib/serializer.js
|
|
187946
188093
|
var require_serializer = __commonJS((exports) => {
|
|
187947
188094
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
187948
188095
|
|
|
@@ -188087,7 +188234,7 @@ var require_serializer = __commonJS((exports) => {
|
|
|
188087
188234
|
exports.default = Serializer;
|
|
188088
188235
|
});
|
|
188089
188236
|
|
|
188090
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
188237
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/lib/transformers.js
|
|
188091
188238
|
var require_transformers = __commonJS((exports) => {
|
|
188092
188239
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
188093
188240
|
exports.httpEndpointURL = exports.toTimestampString = exports.toArray = exports.toJson = exports.toNumber = exports.toBoolean = exports.convertCell = exports.convertColumn = exports.convertChangeData = exports.PostgresTypes = undefined;
|
|
@@ -188256,7 +188403,7 @@ var require_transformers = __commonJS((exports) => {
|
|
|
188256
188403
|
exports.httpEndpointURL = httpEndpointURL;
|
|
188257
188404
|
});
|
|
188258
188405
|
|
|
188259
|
-
// node_modules/.bun/@supabase+phoenix@0.4.
|
|
188406
|
+
// node_modules/.bun/@supabase+phoenix@0.4.1/node_modules/@supabase/phoenix/priv/static/phoenix.cjs.js
|
|
188260
188407
|
var require_phoenix_cjs = __commonJS((exports, module) => {
|
|
188261
188408
|
var __defProp2 = Object.defineProperty;
|
|
188262
188409
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -189414,7 +189561,7 @@ var require_phoenix_cjs = __commonJS((exports, module) => {
|
|
|
189414
189561
|
} catch (e) {
|
|
189415
189562
|
this.log("error", "error in heartbeat callback", e);
|
|
189416
189563
|
}
|
|
189417
|
-
this.triggerChanError();
|
|
189564
|
+
this.triggerChanError(new Error("heartbeat timeout"));
|
|
189418
189565
|
this.closeWasClean = false;
|
|
189419
189566
|
this.teardown(() => this.reconnectTimer.scheduleTimeout(), WS_CLOSE_NORMAL, "heartbeat timeout");
|
|
189420
189567
|
}
|
|
@@ -189473,7 +189620,7 @@ var require_phoenix_cjs = __commonJS((exports, module) => {
|
|
|
189473
189620
|
this.conn.onclose = () => {};
|
|
189474
189621
|
if (this.hasLogger())
|
|
189475
189622
|
this.log("transport", "close", event);
|
|
189476
|
-
this.triggerChanError();
|
|
189623
|
+
this.triggerChanError(event);
|
|
189477
189624
|
this.clearHeartbeats();
|
|
189478
189625
|
if (!this.closeWasClean) {
|
|
189479
189626
|
this.reconnectTimer.scheduleTimeout();
|
|
@@ -189482,18 +189629,18 @@ var require_phoenix_cjs = __commonJS((exports, module) => {
|
|
|
189482
189629
|
}
|
|
189483
189630
|
onConnError(error48) {
|
|
189484
189631
|
if (this.hasLogger())
|
|
189485
|
-
this.log("transport", error48);
|
|
189632
|
+
this.log("transport", "error", error48);
|
|
189486
189633
|
let transportBefore = this.transport;
|
|
189487
189634
|
let establishedBefore = this.establishedConnections;
|
|
189488
189635
|
this.triggerStateCallbacks("error", error48, transportBefore, establishedBefore);
|
|
189489
189636
|
if (transportBefore === this.transport || establishedBefore > 0) {
|
|
189490
|
-
this.triggerChanError();
|
|
189637
|
+
this.triggerChanError(error48);
|
|
189491
189638
|
}
|
|
189492
189639
|
}
|
|
189493
|
-
triggerChanError() {
|
|
189640
|
+
triggerChanError(reason) {
|
|
189494
189641
|
this.channels.forEach((channel) => {
|
|
189495
189642
|
if (!(channel.isErrored() || channel.isLeaving() || channel.isClosed())) {
|
|
189496
|
-
channel.trigger(CHANNEL_EVENTS.error);
|
|
189643
|
+
channel.trigger(CHANNEL_EVENTS.error, reason);
|
|
189497
189644
|
}
|
|
189498
189645
|
});
|
|
189499
189646
|
}
|
|
@@ -189630,7 +189777,7 @@ var require_phoenix_cjs = __commonJS((exports, module) => {
|
|
|
189630
189777
|
};
|
|
189631
189778
|
});
|
|
189632
189779
|
|
|
189633
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
189780
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/phoenix/presenceAdapter.js
|
|
189634
189781
|
var require_presenceAdapter = __commonJS((exports) => {
|
|
189635
189782
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
189636
189783
|
var phoenix_1 = require_phoenix_cjs();
|
|
@@ -189703,7 +189850,7 @@ var require_presenceAdapter = __commonJS((exports) => {
|
|
|
189703
189850
|
}
|
|
189704
189851
|
});
|
|
189705
189852
|
|
|
189706
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
189853
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/RealtimePresence.js
|
|
189707
189854
|
var require_RealtimePresence = __commonJS((exports) => {
|
|
189708
189855
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
189709
189856
|
exports.REALTIME_PRESENCE_LISTEN_EVENTS = undefined;
|
|
@@ -189728,7 +189875,30 @@ var require_RealtimePresence = __commonJS((exports) => {
|
|
|
189728
189875
|
exports.default = RealtimePresence;
|
|
189729
189876
|
});
|
|
189730
189877
|
|
|
189731
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
189878
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/lib/normalizeChannelError.js
|
|
189879
|
+
var require_normalizeChannelError = __commonJS((exports) => {
|
|
189880
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
189881
|
+
exports.normalizeChannelError = normalizeChannelError;
|
|
189882
|
+
function normalizeChannelError(reason) {
|
|
189883
|
+
if (reason instanceof Error) {
|
|
189884
|
+
return reason;
|
|
189885
|
+
}
|
|
189886
|
+
if (typeof reason === "string") {
|
|
189887
|
+
return new Error(reason);
|
|
189888
|
+
}
|
|
189889
|
+
if (reason && typeof reason === "object") {
|
|
189890
|
+
const obj = reason;
|
|
189891
|
+
if (typeof obj.code === "number") {
|
|
189892
|
+
const detail = typeof obj.reason === "string" && obj.reason ? ` (${obj.reason})` : "";
|
|
189893
|
+
return new Error(`socket closed: ${obj.code}${detail}`, { cause: reason });
|
|
189894
|
+
}
|
|
189895
|
+
return new Error("channel error: transport failure", { cause: reason });
|
|
189896
|
+
}
|
|
189897
|
+
return new Error("channel error: connection lost");
|
|
189898
|
+
}
|
|
189899
|
+
});
|
|
189900
|
+
|
|
189901
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/phoenix/channelAdapter.js
|
|
189732
189902
|
var require_channelAdapter = __commonJS((exports) => {
|
|
189733
189903
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
189734
189904
|
var constants_1 = require_constants();
|
|
@@ -189780,7 +189950,7 @@ var require_channelAdapter = __commonJS((exports) => {
|
|
|
189780
189950
|
try {
|
|
189781
189951
|
push = this.channel.push(event, payload, timeout);
|
|
189782
189952
|
} catch (error48) {
|
|
189783
|
-
throw `tried to push '${event}' to '${this.channel.topic}' before joining. Use channel.subscribe() before pushing events
|
|
189953
|
+
throw new Error(`tried to push '${event}' to '${this.channel.topic}' before joining. Use channel.subscribe() before pushing events`);
|
|
189784
189954
|
}
|
|
189785
189955
|
if (this.channel.pushBuffer.length > constants_1.MAX_PUSH_BUFFER_SIZE) {
|
|
189786
189956
|
const removedPush = this.channel.pushBuffer.shift();
|
|
@@ -189830,7 +190000,7 @@ var require_channelAdapter = __commonJS((exports) => {
|
|
|
189830
190000
|
}
|
|
189831
190001
|
});
|
|
189832
190002
|
|
|
189833
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
190003
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/RealtimeChannel.js
|
|
189834
190004
|
var require_RealtimeChannel = __commonJS((exports) => {
|
|
189835
190005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
189836
190006
|
exports.REALTIME_CHANNEL_STATES = exports.REALTIME_SUBSCRIBE_STATES = exports.REALTIME_LISTEN_TYPES = exports.REALTIME_POSTGRES_CHANGES_LISTEN_EVENT = undefined;
|
|
@@ -189839,6 +190009,7 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
189839
190009
|
var RealtimePresence_1 = tslib_1.__importDefault(require_RealtimePresence());
|
|
189840
190010
|
var Transformers = tslib_1.__importStar(require_transformers());
|
|
189841
190011
|
var transformers_1 = require_transformers();
|
|
190012
|
+
var normalizeChannelError_1 = require_normalizeChannelError();
|
|
189842
190013
|
var channelAdapter_1 = tslib_1.__importDefault(require_channelAdapter());
|
|
189843
190014
|
var REALTIME_POSTGRES_CHANGES_LISTEN_EVENT;
|
|
189844
190015
|
(function(REALTIME_POSTGRES_CHANGES_LISTEN_EVENT2) {
|
|
@@ -189903,7 +190074,7 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
189903
190074
|
this.broadcastEndpointURL = (0, transformers_1.httpEndpointURL)(this.socket.socketAdapter.endPointURL());
|
|
189904
190075
|
this.private = this.params.config.private || false;
|
|
189905
190076
|
if (!this.private && ((_b = (_a2 = this.params.config) === null || _a2 === undefined ? undefined : _a2.broadcast) === null || _b === undefined ? undefined : _b.replay)) {
|
|
189906
|
-
throw `tried to use replay on public channel '${this.topic}'. It must be a private channel
|
|
190077
|
+
throw new Error(`tried to use replay on public channel '${this.topic}'. It must be a private channel.`);
|
|
189907
190078
|
}
|
|
189908
190079
|
}
|
|
189909
190080
|
subscribe(callback, timeout = this.timeout) {
|
|
@@ -189926,7 +190097,7 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
189926
190097
|
accessTokenPayload.access_token = this.socket.accessTokenValue;
|
|
189927
190098
|
}
|
|
189928
190099
|
this._onError((reason) => {
|
|
189929
|
-
callback === null || callback === undefined || callback(REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR, reason);
|
|
190100
|
+
callback === null || callback === undefined || callback(REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR, (0, normalizeChannelError_1.normalizeChannelError)(reason));
|
|
189930
190101
|
});
|
|
189931
190102
|
this._onClose(() => callback === null || callback === undefined ? undefined : callback(REALTIME_SUBSCRIBE_STATES.CLOSED));
|
|
189932
190103
|
this.updateJoinPayload(Object.assign({ config: config2 }, accessTokenPayload));
|
|
@@ -189942,7 +190113,8 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
189942
190113
|
this._updatePostgresBindings(postgres_changes2, callback);
|
|
189943
190114
|
}).receive("error", (error48) => {
|
|
189944
190115
|
this.state = constants_1.CHANNEL_STATES.errored;
|
|
189945
|
-
|
|
190116
|
+
const message = Object.values(error48).join(", ") || "error";
|
|
190117
|
+
callback === null || callback === undefined || callback(REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR, new Error(message, { cause: error48 }));
|
|
189946
190118
|
}).receive("timeout", () => {
|
|
189947
190119
|
callback === null || callback === undefined || callback(REALTIME_SUBSCRIBE_STATES.TIMED_OUT);
|
|
189948
190120
|
});
|
|
@@ -189989,16 +190161,18 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
189989
190161
|
}, opts);
|
|
189990
190162
|
}
|
|
189991
190163
|
on(type, filter, callback) {
|
|
189992
|
-
|
|
189993
|
-
|
|
189994
|
-
|
|
190164
|
+
const stateCheck = this.channelAdapter.isJoined() || this.channelAdapter.isJoining();
|
|
190165
|
+
const typeCheck = type === REALTIME_LISTEN_TYPES.PRESENCE || type === REALTIME_LISTEN_TYPES.POSTGRES_CHANGES;
|
|
190166
|
+
if (stateCheck && typeCheck) {
|
|
190167
|
+
this.socket.log("channel", `cannot add \`${type}\` callbacks for ${this.topic} after \`subscribe()\`.`);
|
|
190168
|
+
throw new Error(`cannot add \`${type}\` callbacks for ${this.topic} after \`subscribe()\`.`);
|
|
189995
190169
|
}
|
|
189996
190170
|
return this._on(type, filter, callback);
|
|
189997
190171
|
}
|
|
189998
190172
|
async httpSend(event, payload, opts = {}) {
|
|
189999
190173
|
var _a2;
|
|
190000
190174
|
if (payload === undefined || payload === null) {
|
|
190001
|
-
return Promise.reject("Payload is required for httpSend()");
|
|
190175
|
+
return Promise.reject(new Error("Payload is required for httpSend()"));
|
|
190002
190176
|
}
|
|
190003
190177
|
const headers = {
|
|
190004
190178
|
apikey: this.socket.apiKey ? this.socket.apiKey : "",
|
|
@@ -190172,6 +190346,16 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
190172
190346
|
return payload;
|
|
190173
190347
|
});
|
|
190174
190348
|
}
|
|
190349
|
+
copyBindings(other) {
|
|
190350
|
+
if (this.joinedOnce) {
|
|
190351
|
+
throw new Error("cannot copy bindings into joined channel");
|
|
190352
|
+
}
|
|
190353
|
+
for (const kind in other.bindings) {
|
|
190354
|
+
for (const binding of other.bindings[kind]) {
|
|
190355
|
+
this._on(binding.type, binding.filter, binding.callback);
|
|
190356
|
+
}
|
|
190357
|
+
}
|
|
190358
|
+
}
|
|
190175
190359
|
static isFilterValueEqual(serverValue, clientValue) {
|
|
190176
190360
|
const normalizedServer = serverValue !== null && serverValue !== undefined ? serverValue : undefined;
|
|
190177
190361
|
const normalizedClient = clientValue !== null && clientValue !== undefined ? clientValue : undefined;
|
|
@@ -190194,7 +190378,7 @@ var require_RealtimeChannel = __commonJS((exports) => {
|
|
|
190194
190378
|
exports.default = RealtimeChannel;
|
|
190195
190379
|
});
|
|
190196
190380
|
|
|
190197
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
190381
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/phoenix/socketAdapter.js
|
|
190198
190382
|
var require_socketAdapter = __commonJS((exports) => {
|
|
190199
190383
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
190200
190384
|
var phoenix_1 = require_phoenix_cjs();
|
|
@@ -190307,7 +190491,7 @@ var require_socketAdapter = __commonJS((exports) => {
|
|
|
190307
190491
|
exports.default = SocketAdapter;
|
|
190308
190492
|
});
|
|
190309
190493
|
|
|
190310
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
190494
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/RealtimeClient.js
|
|
190311
190495
|
var require_RealtimeClient = __commonJS((exports) => {
|
|
190312
190496
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
190313
190497
|
var tslib_1 = require_tslib();
|
|
@@ -190395,6 +190579,8 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190395
190579
|
this._authPromise = null;
|
|
190396
190580
|
this._workerHeartbeatTimer = undefined;
|
|
190397
190581
|
this._pendingWorkerHeartbeatRef = null;
|
|
190582
|
+
this._pendingDisconnectTimer = null;
|
|
190583
|
+
this._disconnectOnEmptyChannelsAfterMs = 0;
|
|
190398
190584
|
this._resolveFetch = (customFetch) => {
|
|
190399
190585
|
if (customFetch) {
|
|
190400
190586
|
return (...args) => customFetch(...args);
|
|
@@ -190446,6 +190632,7 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190446
190632
|
return this.socketAdapter.endPointURL();
|
|
190447
190633
|
}
|
|
190448
190634
|
async disconnect(code, reason) {
|
|
190635
|
+
this._cancelPendingDisconnect();
|
|
190449
190636
|
if (this.isDisconnecting()) {
|
|
190450
190637
|
return "ok";
|
|
190451
190638
|
}
|
|
@@ -190462,9 +190649,6 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190462
190649
|
if (status === "ok") {
|
|
190463
190650
|
channel.teardown();
|
|
190464
190651
|
}
|
|
190465
|
-
if (this.channels.length === 0) {
|
|
190466
|
-
this.disconnect();
|
|
190467
|
-
}
|
|
190468
190652
|
return status;
|
|
190469
190653
|
}
|
|
190470
190654
|
async removeAllChannels() {
|
|
@@ -190474,7 +190658,7 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190474
190658
|
return result2;
|
|
190475
190659
|
});
|
|
190476
190660
|
const result = await Promise.all(promises);
|
|
190477
|
-
this.disconnect();
|
|
190661
|
+
await this.disconnect();
|
|
190478
190662
|
return result;
|
|
190479
190663
|
}
|
|
190480
190664
|
log(kind, msg, data) {
|
|
@@ -190497,6 +190681,7 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190497
190681
|
const exists = this.getChannels().find((c) => c.topic === realtimeTopic);
|
|
190498
190682
|
if (!exists) {
|
|
190499
190683
|
const chan = new RealtimeChannel_1.default(`realtime:${topic}`, params, this);
|
|
190684
|
+
this._cancelPendingDisconnect();
|
|
190500
190685
|
this.channels.push(chan);
|
|
190501
190686
|
return chan;
|
|
190502
190687
|
} else {
|
|
@@ -190528,6 +190713,33 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190528
190713
|
}
|
|
190529
190714
|
_remove(channel) {
|
|
190530
190715
|
this.channels = this.channels.filter((c) => c.topic !== channel.topic);
|
|
190716
|
+
if (this.channels.length === 0) {
|
|
190717
|
+
this.log("transport", "no channels remaining, scheduling disconnect");
|
|
190718
|
+
this._schedulePendingDisconnect();
|
|
190719
|
+
}
|
|
190720
|
+
}
|
|
190721
|
+
_schedulePendingDisconnect() {
|
|
190722
|
+
this._cancelPendingDisconnect();
|
|
190723
|
+
if (this._disconnectOnEmptyChannelsAfterMs === 0) {
|
|
190724
|
+
this.log("transport", "disconnecting immediately - no channels");
|
|
190725
|
+
this.disconnect();
|
|
190726
|
+
return;
|
|
190727
|
+
}
|
|
190728
|
+
this._pendingDisconnectTimer = setTimeout(() => {
|
|
190729
|
+
this._pendingDisconnectTimer = null;
|
|
190730
|
+
if (this.channels.length === 0) {
|
|
190731
|
+
this.log("transport", "deferred disconnect fired - no channels, disconnecting");
|
|
190732
|
+
this.disconnect();
|
|
190733
|
+
}
|
|
190734
|
+
}, this._disconnectOnEmptyChannelsAfterMs);
|
|
190735
|
+
this.log("transport", `deferred disconnect scheduled in ${this._disconnectOnEmptyChannelsAfterMs}ms`);
|
|
190736
|
+
}
|
|
190737
|
+
_cancelPendingDisconnect() {
|
|
190738
|
+
if (this._pendingDisconnectTimer !== null) {
|
|
190739
|
+
this.log("transport", "pending disconnect cancelled - channel activity detected");
|
|
190740
|
+
clearTimeout(this._pendingDisconnectTimer);
|
|
190741
|
+
this._pendingDisconnectTimer = null;
|
|
190742
|
+
}
|
|
190531
190743
|
}
|
|
190532
190744
|
async _performAuth(token = null) {
|
|
190533
190745
|
let tokenToSend;
|
|
@@ -190653,22 +190865,23 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190653
190865
|
return result_url;
|
|
190654
190866
|
}
|
|
190655
190867
|
_initializeOptions(options) {
|
|
190656
|
-
var _a2, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
190868
|
+
var _a2, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
190657
190869
|
this.worker = (_a2 = options === null || options === undefined ? undefined : options.worker) !== null && _a2 !== undefined ? _a2 : false;
|
|
190658
190870
|
this.accessToken = (_b = options === null || options === undefined ? undefined : options.accessToken) !== null && _b !== undefined ? _b : null;
|
|
190659
190871
|
const result = {};
|
|
190660
190872
|
result.timeout = (_c = options === null || options === undefined ? undefined : options.timeout) !== null && _c !== undefined ? _c : constants_1.DEFAULT_TIMEOUT;
|
|
190661
190873
|
result.heartbeatIntervalMs = (_d = options === null || options === undefined ? undefined : options.heartbeatIntervalMs) !== null && _d !== undefined ? _d : CONNECTION_TIMEOUTS.HEARTBEAT_INTERVAL;
|
|
190662
|
-
|
|
190874
|
+
this._disconnectOnEmptyChannelsAfterMs = (_e = options === null || options === undefined ? undefined : options.disconnectOnEmptyChannelsAfterMs) !== null && _e !== undefined ? _e : 2 * ((_f = options === null || options === undefined ? undefined : options.heartbeatIntervalMs) !== null && _f !== undefined ? _f : CONNECTION_TIMEOUTS.HEARTBEAT_INTERVAL);
|
|
190875
|
+
result.transport = (_g = options === null || options === undefined ? undefined : options.transport) !== null && _g !== undefined ? _g : websocket_factory_1.default.getWebSocketConstructor();
|
|
190663
190876
|
result.params = options === null || options === undefined ? undefined : options.params;
|
|
190664
190877
|
result.logger = options === null || options === undefined ? undefined : options.logger;
|
|
190665
190878
|
result.heartbeatCallback = this._wrapHeartbeatCallback(options === null || options === undefined ? undefined : options.heartbeatCallback);
|
|
190666
|
-
result.reconnectAfterMs = (
|
|
190879
|
+
result.reconnectAfterMs = (_h = options === null || options === undefined ? undefined : options.reconnectAfterMs) !== null && _h !== undefined ? _h : (tries) => {
|
|
190667
190880
|
return RECONNECT_INTERVALS[tries - 1] || DEFAULT_RECONNECT_FALLBACK;
|
|
190668
190881
|
};
|
|
190669
190882
|
let defaultEncode;
|
|
190670
190883
|
let defaultDecode;
|
|
190671
|
-
const vsn = (
|
|
190884
|
+
const vsn = (_j = options === null || options === undefined ? undefined : options.vsn) !== null && _j !== undefined ? _j : constants_1.DEFAULT_VSN;
|
|
190672
190885
|
switch (vsn) {
|
|
190673
190886
|
case constants_1.VSN_1_0_0:
|
|
190674
190887
|
defaultEncode = (payload, callback) => {
|
|
@@ -190686,8 +190899,8 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190686
190899
|
throw new Error(`Unsupported serializer version: ${result.vsn}`);
|
|
190687
190900
|
}
|
|
190688
190901
|
result.vsn = vsn;
|
|
190689
|
-
result.encode = (
|
|
190690
|
-
result.decode = (
|
|
190902
|
+
result.encode = (_k = options === null || options === undefined ? undefined : options.encode) !== null && _k !== undefined ? _k : defaultEncode;
|
|
190903
|
+
result.decode = (_l = options === null || options === undefined ? undefined : options.decode) !== null && _l !== undefined ? _l : defaultDecode;
|
|
190691
190904
|
result.beforeReconnect = this._reconnectAuth.bind(this);
|
|
190692
190905
|
if ((options === null || options === undefined ? undefined : options.logLevel) || (options === null || options === undefined ? undefined : options.log_level)) {
|
|
190693
190906
|
this.logLevel = options.logLevel || options.log_level;
|
|
@@ -190712,7 +190925,7 @@ var require_RealtimeClient = __commonJS((exports) => {
|
|
|
190712
190925
|
exports.default = RealtimeClient;
|
|
190713
190926
|
});
|
|
190714
190927
|
|
|
190715
|
-
// node_modules/.bun/@supabase+realtime-js@2.
|
|
190928
|
+
// node_modules/.bun/@supabase+realtime-js@2.105.1/node_modules/@supabase/realtime-js/dist/main/index.js
|
|
190716
190929
|
var require_main2 = __commonJS((exports) => {
|
|
190717
190930
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
190718
190931
|
exports.WebSocketFactory = exports.REALTIME_CHANNEL_STATES = exports.REALTIME_SUBSCRIBE_STATES = exports.REALTIME_PRESENCE_LISTEN_EVENTS = exports.REALTIME_POSTGRES_CHANGES_LISTEN_EVENT = exports.REALTIME_LISTEN_TYPES = exports.RealtimeClient = exports.RealtimeChannel = exports.RealtimePresence = undefined;
|
|
@@ -191042,10 +191255,7 @@ var init_dist2 = __esm(() => {
|
|
|
191042
191255
|
};
|
|
191043
191256
|
});
|
|
191044
191257
|
|
|
191045
|
-
// node_modules/.bun/@supabase+storage-js@2.
|
|
191046
|
-
function isStorageError(error48) {
|
|
191047
|
-
return typeof error48 === "object" && error48 !== null && "__isStorageError" in error48;
|
|
191048
|
-
}
|
|
191258
|
+
// node_modules/.bun/@supabase+storage-js@2.105.1/node_modules/@supabase/storage-js/dist/index.mjs
|
|
191049
191259
|
function _typeof2(o) {
|
|
191050
191260
|
"@babel/helpers - typeof";
|
|
191051
191261
|
return _typeof2 = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(o$1) {
|
|
@@ -191099,6 +191309,24 @@ function _objectSpread22(e) {
|
|
|
191099
191309
|
}
|
|
191100
191310
|
return e;
|
|
191101
191311
|
}
|
|
191312
|
+
function isStorageError(error48) {
|
|
191313
|
+
return typeof error48 === "object" && error48 !== null && "__isStorageError" in error48;
|
|
191314
|
+
}
|
|
191315
|
+
function setHeader(headers, name, value) {
|
|
191316
|
+
const result = _objectSpread22({}, headers);
|
|
191317
|
+
const nameLower = name.toLowerCase();
|
|
191318
|
+
for (const key of Object.keys(result))
|
|
191319
|
+
if (key.toLowerCase() === nameLower)
|
|
191320
|
+
delete result[key];
|
|
191321
|
+
result[nameLower] = value;
|
|
191322
|
+
return result;
|
|
191323
|
+
}
|
|
191324
|
+
function normalizeHeaders(headers) {
|
|
191325
|
+
const result = {};
|
|
191326
|
+
for (const [key, value] of Object.entries(headers))
|
|
191327
|
+
result[key.toLowerCase()] = value;
|
|
191328
|
+
return result;
|
|
191329
|
+
}
|
|
191102
191330
|
async function _handleRequest(fetcher, method, url2, options, parameters, body, namespace) {
|
|
191103
191331
|
return new Promise((resolve2, reject) => {
|
|
191104
191332
|
fetcher(url2, _getRequestParams(method, options, parameters, body)).then((result) => {
|
|
@@ -191192,7 +191420,13 @@ var StorageError, StorageApiError, StorageUnknownError, resolveFetch = (customFe
|
|
|
191192
191420
|
if (method === "GET" || method === "HEAD" || !body)
|
|
191193
191421
|
return _objectSpread22(_objectSpread22({}, params), parameters);
|
|
191194
191422
|
if (isPlainObject2(body)) {
|
|
191195
|
-
|
|
191423
|
+
var _contentType;
|
|
191424
|
+
const headers = (options === null || options === undefined ? undefined : options.headers) || {};
|
|
191425
|
+
let contentType;
|
|
191426
|
+
for (const [key, value] of Object.entries(headers))
|
|
191427
|
+
if (key.toLowerCase() === "content-type")
|
|
191428
|
+
contentType = value;
|
|
191429
|
+
params.headers = setHeader(headers, "Content-Type", (_contentType = contentType) !== null && _contentType !== undefined ? _contentType : "application/json");
|
|
191196
191430
|
params.body = JSON.stringify(body);
|
|
191197
191431
|
} else
|
|
191198
191432
|
params.body = body;
|
|
@@ -191203,7 +191437,7 @@ var StorageError, StorageApiError, StorageUnknownError, resolveFetch = (customFe
|
|
|
191203
191437
|
constructor(url2, headers = {}, fetch$1, namespace = "storage") {
|
|
191204
191438
|
this.shouldThrowOnError = false;
|
|
191205
191439
|
this.url = url2;
|
|
191206
|
-
this.headers = headers;
|
|
191440
|
+
this.headers = normalizeHeaders(headers);
|
|
191207
191441
|
this.fetch = resolveFetch(fetch$1);
|
|
191208
191442
|
this.namespace = namespace;
|
|
191209
191443
|
}
|
|
@@ -191212,7 +191446,7 @@ var StorageError, StorageApiError, StorageUnknownError, resolveFetch = (customFe
|
|
|
191212
191446
|
return this;
|
|
191213
191447
|
}
|
|
191214
191448
|
setHeader(name, value) {
|
|
191215
|
-
this.headers =
|
|
191449
|
+
this.headers = setHeader(this.headers, name, value);
|
|
191216
191450
|
return this;
|
|
191217
191451
|
}
|
|
191218
191452
|
async handleOperation(operation) {
|
|
@@ -191301,7 +191535,7 @@ var StorageError, StorageApiError, StorageUnknownError, resolveFetch = (customFe
|
|
|
191301
191535
|
throw error48;
|
|
191302
191536
|
}
|
|
191303
191537
|
}
|
|
191304
|
-
}, DEFAULT_SEARCH_OPTIONS, DEFAULT_FILE_OPTIONS, StorageFileApi, version2 = "2.
|
|
191538
|
+
}, DEFAULT_SEARCH_OPTIONS, DEFAULT_FILE_OPTIONS, StorageFileApi, version2 = "2.105.1", DEFAULT_HEADERS, StorageBucketApi, StorageAnalyticsClient, VectorIndexApi, VectorDataApi, VectorBucketApi, StorageVectorsClient, VectorBucketScope, VectorIndexScope, StorageClient;
|
|
191305
191539
|
var init_dist3 = __esm(() => {
|
|
191306
191540
|
init_dist2();
|
|
191307
191541
|
StorageError = class extends Error {
|
|
@@ -191313,6 +191547,14 @@ var init_dist3 = __esm(() => {
|
|
|
191313
191547
|
this.status = status;
|
|
191314
191548
|
this.statusCode = statusCode;
|
|
191315
191549
|
}
|
|
191550
|
+
toJSON() {
|
|
191551
|
+
return {
|
|
191552
|
+
name: this.name,
|
|
191553
|
+
message: this.message,
|
|
191554
|
+
status: this.status,
|
|
191555
|
+
statusCode: this.statusCode
|
|
191556
|
+
};
|
|
191557
|
+
}
|
|
191316
191558
|
};
|
|
191317
191559
|
StorageApiError = class extends StorageError {
|
|
191318
191560
|
constructor(message, status, statusCode, namespace = "storage") {
|
|
@@ -191322,12 +191564,7 @@ var init_dist3 = __esm(() => {
|
|
|
191322
191564
|
this.statusCode = statusCode;
|
|
191323
191565
|
}
|
|
191324
191566
|
toJSON() {
|
|
191325
|
-
return {
|
|
191326
|
-
name: this.name,
|
|
191327
|
-
message: this.message,
|
|
191328
|
-
status: this.status,
|
|
191329
|
-
statusCode: this.statusCode
|
|
191330
|
-
};
|
|
191567
|
+
return _objectSpread22({}, super.toJSON());
|
|
191331
191568
|
}
|
|
191332
191569
|
};
|
|
191333
191570
|
StorageUnknownError = class extends StorageError {
|
|
@@ -191388,7 +191625,8 @@ var init_dist3 = __esm(() => {
|
|
|
191388
191625
|
options.duplex = "half";
|
|
191389
191626
|
}
|
|
191390
191627
|
if (fileOptions === null || fileOptions === undefined ? undefined : fileOptions.headers)
|
|
191391
|
-
|
|
191628
|
+
for (const [key, value] of Object.entries(fileOptions.headers))
|
|
191629
|
+
headers = setHeader(headers, key, value);
|
|
191392
191630
|
const cleanPath = _this._removeEmptyFolders(path5);
|
|
191393
191631
|
const _path = _this._getFinalPath(cleanPath);
|
|
191394
191632
|
const data = await (method == "PUT" ? put : post)(_this.fetch, `${_this.url}/object/${_path}`, body, _objectSpread22({ headers }, (options === null || options === undefined ? undefined : options.duplex) ? { duplex: options.duplex } : {}));
|
|
@@ -191411,22 +191649,35 @@ var init_dist3 = __esm(() => {
|
|
|
191411
191649
|
return _this3.handleOperation(async () => {
|
|
191412
191650
|
let body;
|
|
191413
191651
|
const options = _objectSpread22(_objectSpread22({}, DEFAULT_FILE_OPTIONS), fileOptions);
|
|
191414
|
-
|
|
191652
|
+
let headers = _objectSpread22(_objectSpread22({}, _this3.headers), { "x-upsert": String(options.upsert) });
|
|
191653
|
+
const metadata = options.metadata;
|
|
191415
191654
|
if (typeof Blob !== "undefined" && fileBody instanceof Blob) {
|
|
191416
191655
|
body = new FormData;
|
|
191417
191656
|
body.append("cacheControl", options.cacheControl);
|
|
191657
|
+
if (metadata)
|
|
191658
|
+
body.append("metadata", _this3.encodeMetadata(metadata));
|
|
191418
191659
|
body.append("", fileBody);
|
|
191419
191660
|
} else if (typeof FormData !== "undefined" && fileBody instanceof FormData) {
|
|
191420
191661
|
body = fileBody;
|
|
191421
|
-
body.
|
|
191662
|
+
if (!body.has("cacheControl"))
|
|
191663
|
+
body.append("cacheControl", options.cacheControl);
|
|
191664
|
+
if (metadata && !body.has("metadata"))
|
|
191665
|
+
body.append("metadata", _this3.encodeMetadata(metadata));
|
|
191422
191666
|
} else {
|
|
191423
191667
|
body = fileBody;
|
|
191424
191668
|
headers["cache-control"] = `max-age=${options.cacheControl}`;
|
|
191425
191669
|
headers["content-type"] = options.contentType;
|
|
191670
|
+
if (metadata)
|
|
191671
|
+
headers["x-metadata"] = _this3.toBase64(_this3.encodeMetadata(metadata));
|
|
191672
|
+
if ((typeof ReadableStream !== "undefined" && body instanceof ReadableStream || body && typeof body === "object" && ("pipe" in body) && typeof body.pipe === "function") && !options.duplex)
|
|
191673
|
+
options.duplex = "half";
|
|
191426
191674
|
}
|
|
191675
|
+
if (fileOptions === null || fileOptions === undefined ? undefined : fileOptions.headers)
|
|
191676
|
+
for (const [key, value] of Object.entries(fileOptions.headers))
|
|
191677
|
+
headers = setHeader(headers, key, value);
|
|
191427
191678
|
return {
|
|
191428
191679
|
path: cleanPath,
|
|
191429
|
-
fullPath: (await put(_this3.fetch, url2.toString(), body, { headers })).Key
|
|
191680
|
+
fullPath: (await put(_this3.fetch, url2.toString(), body, _objectSpread22({ headers }, (options === null || options === undefined ? undefined : options.duplex) ? { duplex: options.duplex } : {}))).Key
|
|
191430
191681
|
};
|
|
191431
191682
|
});
|
|
191432
191683
|
}
|
|
@@ -191480,9 +191731,13 @@ var init_dist3 = __esm(() => {
|
|
|
191480
191731
|
let _path = _this8._getFinalPath(path5);
|
|
191481
191732
|
const hasTransform = typeof (options === null || options === undefined ? undefined : options.transform) === "object" && options.transform !== null && Object.keys(options.transform).length > 0;
|
|
191482
191733
|
let data = await post(_this8.fetch, `${_this8.url}/object/sign/${_path}`, _objectSpread22({ expiresIn }, hasTransform ? { transform: options.transform } : {}), { headers: _this8.headers });
|
|
191483
|
-
const
|
|
191484
|
-
|
|
191485
|
-
|
|
191734
|
+
const query = new URLSearchParams;
|
|
191735
|
+
if (options === null || options === undefined ? undefined : options.download)
|
|
191736
|
+
query.set("download", options.download === true ? "" : options.download);
|
|
191737
|
+
if ((options === null || options === undefined ? undefined : options.cacheNonce) != null)
|
|
191738
|
+
query.set("cacheNonce", String(options.cacheNonce));
|
|
191739
|
+
const queryString = query.toString();
|
|
191740
|
+
return { signedUrl: encodeURI(`${_this8.url}${data.signedURL}${queryString ? `&${queryString}` : ""}`) };
|
|
191486
191741
|
});
|
|
191487
191742
|
}
|
|
191488
191743
|
async createSignedUrls(paths, expiresIn, options) {
|
|
@@ -191492,16 +191747,25 @@ var init_dist3 = __esm(() => {
|
|
|
191492
191747
|
expiresIn,
|
|
191493
191748
|
paths
|
|
191494
191749
|
}, { headers: _this9.headers });
|
|
191495
|
-
const
|
|
191496
|
-
|
|
191750
|
+
const query = new URLSearchParams;
|
|
191751
|
+
if (options === null || options === undefined ? undefined : options.download)
|
|
191752
|
+
query.set("download", options.download === true ? "" : options.download);
|
|
191753
|
+
if ((options === null || options === undefined ? undefined : options.cacheNonce) != null)
|
|
191754
|
+
query.set("cacheNonce", String(options.cacheNonce));
|
|
191755
|
+
const queryString = query.toString();
|
|
191756
|
+
return data.map((datum) => _objectSpread22(_objectSpread22({}, datum), {}, { signedUrl: datum.signedURL ? encodeURI(`${_this9.url}${datum.signedURL}${queryString ? `&${queryString}` : ""}`) : null }));
|
|
191497
191757
|
});
|
|
191498
191758
|
}
|
|
191499
191759
|
download(path5, options, parameters) {
|
|
191500
|
-
const renderPath = typeof (options === null || options === undefined ? undefined : options.transform)
|
|
191501
|
-
const
|
|
191502
|
-
|
|
191760
|
+
const renderPath = typeof (options === null || options === undefined ? undefined : options.transform) === "object" && options.transform !== null && Object.keys(options.transform).length > 0 ? "render/image/authenticated" : "object";
|
|
191761
|
+
const query = new URLSearchParams;
|
|
191762
|
+
if (options === null || options === undefined ? undefined : options.transform)
|
|
191763
|
+
this.applyTransformOptsToQuery(query, options.transform);
|
|
191764
|
+
if ((options === null || options === undefined ? undefined : options.cacheNonce) != null)
|
|
191765
|
+
query.set("cacheNonce", String(options.cacheNonce));
|
|
191766
|
+
const queryString = query.toString();
|
|
191503
191767
|
const _path = this._getFinalPath(path5);
|
|
191504
|
-
const downloadFn = () => get(this.fetch, `${this.url}/${renderPath}/${_path}${queryString}`, {
|
|
191768
|
+
const downloadFn = () => get(this.fetch, `${this.url}/${renderPath}/${_path}${queryString ? `?${queryString}` : ""}`, {
|
|
191505
191769
|
headers: this.headers,
|
|
191506
191770
|
noResolveJson: true
|
|
191507
191771
|
}, parameters);
|
|
@@ -191540,18 +191804,16 @@ var init_dist3 = __esm(() => {
|
|
|
191540
191804
|
}
|
|
191541
191805
|
getPublicUrl(path5, options) {
|
|
191542
191806
|
const _path = this._getFinalPath(path5);
|
|
191543
|
-
const
|
|
191544
|
-
|
|
191545
|
-
|
|
191546
|
-
|
|
191547
|
-
|
|
191548
|
-
|
|
191549
|
-
|
|
191550
|
-
|
|
191551
|
-
|
|
191552
|
-
|
|
191553
|
-
queryString = `?${queryString}`;
|
|
191554
|
-
return { data: { publicUrl: encodeURI(`${this.url}/${renderPath}/public/${_path}${queryString}`) } };
|
|
191807
|
+
const query = new URLSearchParams;
|
|
191808
|
+
if (options === null || options === undefined ? undefined : options.download)
|
|
191809
|
+
query.set("download", options.download === true ? "" : options.download);
|
|
191810
|
+
if (options === null || options === undefined ? undefined : options.transform)
|
|
191811
|
+
this.applyTransformOptsToQuery(query, options.transform);
|
|
191812
|
+
if ((options === null || options === undefined ? undefined : options.cacheNonce) != null)
|
|
191813
|
+
query.set("cacheNonce", String(options.cacheNonce));
|
|
191814
|
+
const queryString = query.toString();
|
|
191815
|
+
const renderPath = typeof (options === null || options === undefined ? undefined : options.transform) === "object" && options.transform !== null && Object.keys(options.transform).length > 0 ? "render/image" : "object";
|
|
191816
|
+
return { data: { publicUrl: encodeURI(`${this.url}/${renderPath}/public/${_path}`) + (queryString ? `?${queryString}` : "") } };
|
|
191555
191817
|
}
|
|
191556
191818
|
async remove(paths) {
|
|
191557
191819
|
var _this12 = this;
|
|
@@ -191587,19 +191849,18 @@ var init_dist3 = __esm(() => {
|
|
|
191587
191849
|
_removeEmptyFolders(path5) {
|
|
191588
191850
|
return path5.replace(/^\/|\/$/g, "").replace(/\/+/g, "/");
|
|
191589
191851
|
}
|
|
191590
|
-
|
|
191591
|
-
const params = [];
|
|
191852
|
+
applyTransformOptsToQuery(query, transform2) {
|
|
191592
191853
|
if (transform2.width)
|
|
191593
|
-
|
|
191854
|
+
query.set("width", transform2.width.toString());
|
|
191594
191855
|
if (transform2.height)
|
|
191595
|
-
|
|
191856
|
+
query.set("height", transform2.height.toString());
|
|
191596
191857
|
if (transform2.resize)
|
|
191597
|
-
|
|
191858
|
+
query.set("resize", transform2.resize);
|
|
191598
191859
|
if (transform2.format)
|
|
191599
|
-
|
|
191860
|
+
query.set("format", transform2.format);
|
|
191600
191861
|
if (transform2.quality)
|
|
191601
|
-
|
|
191602
|
-
return
|
|
191862
|
+
query.set("quality", transform2.quality.toString());
|
|
191863
|
+
return query;
|
|
191603
191864
|
}
|
|
191604
191865
|
};
|
|
191605
191866
|
DEFAULT_HEADERS = { "X-Client-Info": `storage-js/${version2}` };
|
|
@@ -191981,14 +192242,14 @@ var init_dist3 = __esm(() => {
|
|
|
191981
192242
|
};
|
|
191982
192243
|
});
|
|
191983
192244
|
|
|
191984
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
192245
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/version.js
|
|
191985
192246
|
var require_version2 = __commonJS((exports) => {
|
|
191986
192247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
191987
192248
|
exports.version = undefined;
|
|
191988
|
-
exports.version = "2.
|
|
192249
|
+
exports.version = "2.105.1";
|
|
191989
192250
|
});
|
|
191990
192251
|
|
|
191991
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
192252
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/constants.js
|
|
191992
192253
|
var require_constants2 = __commonJS((exports) => {
|
|
191993
192254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
191994
192255
|
exports.JWKS_TTL = exports.BASE64URL_REGEX = exports.API_VERSIONS = exports.API_VERSION_HEADER_NAME = exports.NETWORK_FAILURE = exports.DEFAULT_HEADERS = exports.AUDIENCE = exports.STORAGE_KEY = exports.GOTRUE_URL = exports.EXPIRY_MARGIN_MS = exports.AUTO_REFRESH_TICK_THRESHOLD = exports.AUTO_REFRESH_TICK_DURATION_MS = undefined;
|
|
@@ -192015,7 +192276,7 @@ var require_constants2 = __commonJS((exports) => {
|
|
|
192015
192276
|
exports.JWKS_TTL = 10 * 60 * 1000;
|
|
192016
192277
|
});
|
|
192017
192278
|
|
|
192018
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
192279
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/errors.js
|
|
192019
192280
|
var require_errors = __commonJS((exports) => {
|
|
192020
192281
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
192021
192282
|
exports.AuthInvalidJwtError = exports.AuthWeakPasswordError = exports.AuthRetryableFetchError = exports.AuthPKCECodeVerifierMissingError = exports.AuthPKCEGrantCodeExchangeError = exports.AuthImplicitGrantRedirectError = exports.AuthInvalidCredentialsError = exports.AuthInvalidTokenResponseError = exports.AuthSessionMissingError = exports.CustomAuthError = exports.AuthUnknownError = exports.AuthApiError = exports.AuthError = undefined;
|
|
@@ -192035,6 +192296,14 @@ var require_errors = __commonJS((exports) => {
|
|
|
192035
192296
|
this.status = status;
|
|
192036
192297
|
this.code = code;
|
|
192037
192298
|
}
|
|
192299
|
+
toJSON() {
|
|
192300
|
+
return {
|
|
192301
|
+
name: this.name,
|
|
192302
|
+
message: this.message,
|
|
192303
|
+
status: this.status,
|
|
192304
|
+
code: this.code
|
|
192305
|
+
};
|
|
192306
|
+
}
|
|
192038
192307
|
}
|
|
192039
192308
|
exports.AuthError = AuthError;
|
|
192040
192309
|
function isAuthError(error48) {
|
|
@@ -192103,12 +192372,7 @@ var require_errors = __commonJS((exports) => {
|
|
|
192103
192372
|
this.details = details;
|
|
192104
192373
|
}
|
|
192105
192374
|
toJSON() {
|
|
192106
|
-
return {
|
|
192107
|
-
name: this.name,
|
|
192108
|
-
message: this.message,
|
|
192109
|
-
status: this.status,
|
|
192110
|
-
details: this.details
|
|
192111
|
-
};
|
|
192375
|
+
return Object.assign(Object.assign({}, super.toJSON()), { details: this.details });
|
|
192112
192376
|
}
|
|
192113
192377
|
}
|
|
192114
192378
|
exports.AuthImplicitGrantRedirectError = AuthImplicitGrantRedirectError;
|
|
@@ -192123,12 +192387,7 @@ var require_errors = __commonJS((exports) => {
|
|
|
192123
192387
|
this.details = details;
|
|
192124
192388
|
}
|
|
192125
192389
|
toJSON() {
|
|
192126
|
-
return {
|
|
192127
|
-
name: this.name,
|
|
192128
|
-
message: this.message,
|
|
192129
|
-
status: this.status,
|
|
192130
|
-
details: this.details
|
|
192131
|
-
};
|
|
192390
|
+
return Object.assign(Object.assign({}, super.toJSON()), { details: this.details });
|
|
192132
192391
|
}
|
|
192133
192392
|
}
|
|
192134
192393
|
exports.AuthPKCEGrantCodeExchangeError = AuthPKCEGrantCodeExchangeError;
|
|
@@ -192158,6 +192417,9 @@ var require_errors = __commonJS((exports) => {
|
|
|
192158
192417
|
super(message, "AuthWeakPasswordError", status, "weak_password");
|
|
192159
192418
|
this.reasons = reasons;
|
|
192160
192419
|
}
|
|
192420
|
+
toJSON() {
|
|
192421
|
+
return Object.assign(Object.assign({}, super.toJSON()), { reasons: this.reasons });
|
|
192422
|
+
}
|
|
192161
192423
|
}
|
|
192162
192424
|
exports.AuthWeakPasswordError = AuthWeakPasswordError;
|
|
192163
192425
|
function isAuthWeakPasswordError(error48) {
|
|
@@ -192172,7 +192434,7 @@ var require_errors = __commonJS((exports) => {
|
|
|
192172
192434
|
exports.AuthInvalidJwtError = AuthInvalidJwtError;
|
|
192173
192435
|
});
|
|
192174
192436
|
|
|
192175
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
192437
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/base64url.js
|
|
192176
192438
|
var require_base64url = __commonJS((exports) => {
|
|
192177
192439
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
192178
192440
|
exports.byteToBase64URL = byteToBase64URL;
|
|
@@ -192360,7 +192622,7 @@ var require_base64url = __commonJS((exports) => {
|
|
|
192360
192622
|
}
|
|
192361
192623
|
});
|
|
192362
192624
|
|
|
192363
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
192625
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/helpers.js
|
|
192364
192626
|
var require_helpers = __commonJS((exports) => {
|
|
192365
192627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
192366
192628
|
exports.Deferred = exports.removeItemAsync = exports.getItemAsync = exports.setItemAsync = exports.looksLikeFetchResponse = exports.resolveFetch = exports.supportsLocalStorage = exports.isBrowser = undefined;
|
|
@@ -192368,7 +192630,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
192368
192630
|
exports.generateCallbackId = generateCallbackId;
|
|
192369
192631
|
exports.parseParametersFromURL = parseParametersFromURL;
|
|
192370
192632
|
exports.decodeJWT = decodeJWT;
|
|
192371
|
-
exports.sleep =
|
|
192633
|
+
exports.sleep = sleep2;
|
|
192372
192634
|
exports.retryable = retryable;
|
|
192373
192635
|
exports.generatePKCEVerifier = generatePKCEVerifier;
|
|
192374
192636
|
exports.generatePKCEChallenge = generatePKCEChallenge;
|
|
@@ -192377,6 +192639,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
192377
192639
|
exports.validateExp = validateExp;
|
|
192378
192640
|
exports.getAlgorithm = getAlgorithm;
|
|
192379
192641
|
exports.validateUUID = validateUUID;
|
|
192642
|
+
exports.assertPasskeyExperimentalEnabled = assertPasskeyExperimentalEnabled;
|
|
192380
192643
|
exports.userNotAvailableProxy = userNotAvailableProxy;
|
|
192381
192644
|
exports.insecureUserWarningProxy = insecureUserWarningProxy;
|
|
192382
192645
|
exports.deepClone = deepClone;
|
|
@@ -192502,7 +192765,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
192502
192765
|
};
|
|
192503
192766
|
return data;
|
|
192504
192767
|
}
|
|
192505
|
-
async function
|
|
192768
|
+
async function sleep2(time3) {
|
|
192506
192769
|
return await new Promise((accept) => {
|
|
192507
192770
|
setTimeout(() => accept(null), time3);
|
|
192508
192771
|
});
|
|
@@ -192566,7 +192829,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
192566
192829
|
const codeVerifier = generatePKCEVerifier();
|
|
192567
192830
|
let storedCodeVerifier = codeVerifier;
|
|
192568
192831
|
if (isPasswordRecovery) {
|
|
192569
|
-
storedCodeVerifier += "/
|
|
192832
|
+
storedCodeVerifier += "/recovery";
|
|
192570
192833
|
}
|
|
192571
192834
|
await (0, exports.setItemAsync)(storage, `${storageKey}-code-verifier`, storedCodeVerifier);
|
|
192572
192835
|
const codeChallenge = await generatePKCEChallenge(codeVerifier);
|
|
@@ -192621,6 +192884,11 @@ var require_helpers = __commonJS((exports) => {
|
|
|
192621
192884
|
throw new Error("@supabase/auth-js: Expected parameter to be UUID but is not");
|
|
192622
192885
|
}
|
|
192623
192886
|
}
|
|
192887
|
+
function assertPasskeyExperimentalEnabled(experimental) {
|
|
192888
|
+
if (!experimental.passkey) {
|
|
192889
|
+
throw new Error("@supabase/auth-js: the passkey API is experimental and disabled by default. Enable it by passing `auth: { experimental: { passkey: true } }` to createClient (or to the GoTrueClient constructor).");
|
|
192890
|
+
}
|
|
192891
|
+
}
|
|
192624
192892
|
function userNotAvailableProxy() {
|
|
192625
192893
|
const proxyTarget = {};
|
|
192626
192894
|
return new Proxy(proxyTarget, {
|
|
@@ -192669,7 +192937,7 @@ var require_helpers = __commonJS((exports) => {
|
|
|
192669
192937
|
}
|
|
192670
192938
|
});
|
|
192671
192939
|
|
|
192672
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
192940
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/fetch.js
|
|
192673
192941
|
var require_fetch = __commonJS((exports) => {
|
|
192674
192942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
192675
192943
|
exports.handleError = handleError2;
|
|
@@ -192685,7 +192953,7 @@ var require_fetch = __commonJS((exports) => {
|
|
|
192685
192953
|
var helpers_1 = require_helpers();
|
|
192686
192954
|
var errors_1 = require_errors();
|
|
192687
192955
|
var _getErrorMessage2 = (err) => err.msg || err.message || err.error_description || err.error || JSON.stringify(err);
|
|
192688
|
-
var NETWORK_ERROR_CODES = [502, 503, 504];
|
|
192956
|
+
var NETWORK_ERROR_CODES = [502, 503, 504, 520, 521, 522, 523, 524, 530];
|
|
192689
192957
|
async function handleError2(error48) {
|
|
192690
192958
|
var _a2;
|
|
192691
192959
|
if (!(0, helpers_1.looksLikeFetchResponse)(error48)) {
|
|
@@ -192821,14 +193089,14 @@ var require_fetch = __commonJS((exports) => {
|
|
|
192821
193089
|
}
|
|
192822
193090
|
});
|
|
192823
193091
|
|
|
192824
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193092
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/types.js
|
|
192825
193093
|
var require_types2 = __commonJS((exports) => {
|
|
192826
193094
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
192827
193095
|
exports.SIGN_OUT_SCOPES = undefined;
|
|
192828
193096
|
exports.SIGN_OUT_SCOPES = ["global", "local", "others"];
|
|
192829
193097
|
});
|
|
192830
193098
|
|
|
192831
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193099
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/GoTrueAdminApi.js
|
|
192832
193100
|
var require_GoTrueAdminApi = __commonJS((exports) => {
|
|
192833
193101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
192834
193102
|
var tslib_1 = require_tslib();
|
|
@@ -192838,10 +193106,11 @@ var require_GoTrueAdminApi = __commonJS((exports) => {
|
|
|
192838
193106
|
var errors_1 = require_errors();
|
|
192839
193107
|
|
|
192840
193108
|
class GoTrueAdminApi {
|
|
192841
|
-
constructor({ url: url2 = "", headers = {}, fetch: fetch2 }) {
|
|
193109
|
+
constructor({ url: url2 = "", headers = {}, fetch: fetch2, experimental }) {
|
|
192842
193110
|
this.url = url2;
|
|
192843
193111
|
this.headers = headers;
|
|
192844
193112
|
this.fetch = (0, helpers_1.resolveFetch)(fetch2);
|
|
193113
|
+
this.experimental = experimental !== null && experimental !== undefined ? experimental : {};
|
|
192845
193114
|
this.mfa = {
|
|
192846
193115
|
listFactors: this._listFactors.bind(this),
|
|
192847
193116
|
deleteFactor: this._deleteFactor.bind(this)
|
|
@@ -192861,6 +193130,10 @@ var require_GoTrueAdminApi = __commonJS((exports) => {
|
|
|
192861
193130
|
updateProvider: this._updateCustomProvider.bind(this),
|
|
192862
193131
|
deleteProvider: this._deleteCustomProvider.bind(this)
|
|
192863
193132
|
};
|
|
193133
|
+
this.passkey = {
|
|
193134
|
+
listPasskeys: this._adminListPasskeys.bind(this),
|
|
193135
|
+
deletePasskey: this._adminDeletePasskey.bind(this)
|
|
193136
|
+
};
|
|
192864
193137
|
}
|
|
192865
193138
|
async signOut(jwt2, scope = types_1.SIGN_OUT_SCOPES[0]) {
|
|
192866
193139
|
if (types_1.SIGN_OUT_SCOPES.indexOf(scope) < 0) {
|
|
@@ -193240,11 +193513,37 @@ var require_GoTrueAdminApi = __commonJS((exports) => {
|
|
|
193240
193513
|
throw error48;
|
|
193241
193514
|
}
|
|
193242
193515
|
}
|
|
193516
|
+
async _adminListPasskeys(params) {
|
|
193517
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
193518
|
+
(0, helpers_1.validateUUID)(params.userId);
|
|
193519
|
+
try {
|
|
193520
|
+
return await (0, fetch_1._request)(this.fetch, "GET", `${this.url}/admin/users/${params.userId}/passkeys`, { headers: this.headers, xform: (data) => ({ data, error: null }) });
|
|
193521
|
+
} catch (error48) {
|
|
193522
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
193523
|
+
return { data: null, error: error48 };
|
|
193524
|
+
}
|
|
193525
|
+
throw error48;
|
|
193526
|
+
}
|
|
193527
|
+
}
|
|
193528
|
+
async _adminDeletePasskey(params) {
|
|
193529
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
193530
|
+
(0, helpers_1.validateUUID)(params.userId);
|
|
193531
|
+
(0, helpers_1.validateUUID)(params.passkeyId);
|
|
193532
|
+
try {
|
|
193533
|
+
await (0, fetch_1._request)(this.fetch, "DELETE", `${this.url}/admin/users/${params.userId}/passkeys/${params.passkeyId}`, { headers: this.headers, noResolveJson: true });
|
|
193534
|
+
return { data: null, error: null };
|
|
193535
|
+
} catch (error48) {
|
|
193536
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
193537
|
+
return { data: null, error: error48 };
|
|
193538
|
+
}
|
|
193539
|
+
throw error48;
|
|
193540
|
+
}
|
|
193541
|
+
}
|
|
193243
193542
|
}
|
|
193244
193543
|
exports.default = GoTrueAdminApi;
|
|
193245
193544
|
});
|
|
193246
193545
|
|
|
193247
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193546
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/local-storage.js
|
|
193248
193547
|
var require_local_storage = __commonJS((exports) => {
|
|
193249
193548
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193250
193549
|
exports.memoryLocalStorageAdapter = memoryLocalStorageAdapter;
|
|
@@ -193263,7 +193562,7 @@ var require_local_storage = __commonJS((exports) => {
|
|
|
193263
193562
|
}
|
|
193264
193563
|
});
|
|
193265
193564
|
|
|
193266
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193565
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/locks.js
|
|
193267
193566
|
var require_locks = __commonJS((exports) => {
|
|
193268
193567
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193269
193568
|
exports.ProcessLockAcquireTimeoutError = exports.NavigatorLockAcquireTimeoutError = exports.LockAcquireTimeoutError = exports.internals = undefined;
|
|
@@ -193437,7 +193736,7 @@ var require_locks = __commonJS((exports) => {
|
|
|
193437
193736
|
}
|
|
193438
193737
|
});
|
|
193439
193738
|
|
|
193440
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193739
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/polyfills.js
|
|
193441
193740
|
var require_polyfills = __commonJS((exports) => {
|
|
193442
193741
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193443
193742
|
exports.polyfillGlobalThis = polyfillGlobalThis;
|
|
@@ -193461,7 +193760,7 @@ var require_polyfills = __commonJS((exports) => {
|
|
|
193461
193760
|
}
|
|
193462
193761
|
});
|
|
193463
193762
|
|
|
193464
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193763
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/web3/ethereum.js
|
|
193465
193764
|
var require_ethereum = __commonJS((exports) => {
|
|
193466
193765
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193467
193766
|
exports.getAddress = getAddress;
|
|
@@ -193538,7 +193837,7 @@ ${suffix}`;
|
|
|
193538
193837
|
}
|
|
193539
193838
|
});
|
|
193540
193839
|
|
|
193541
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
193840
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/webauthn.errors.js
|
|
193542
193841
|
var require_webauthn_errors = __commonJS((exports) => {
|
|
193543
193842
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193544
193843
|
exports.WebAuthnUnknownError = exports.WebAuthnError = undefined;
|
|
@@ -193718,7 +194017,7 @@ var require_webauthn_errors = __commonJS((exports) => {
|
|
|
193718
194017
|
}
|
|
193719
194018
|
});
|
|
193720
194019
|
|
|
193721
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
194020
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/lib/webauthn.js
|
|
193722
194021
|
var require_webauthn = __commonJS((exports) => {
|
|
193723
194022
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
193724
194023
|
exports.WebAuthnApi = exports.DEFAULT_REQUEST_OPTIONS = exports.DEFAULT_CREATION_OPTIONS = exports.webAuthnAbortService = exports.WebAuthnAbortService = exports.identifyAuthenticationError = exports.identifyRegistrationError = exports.isWebAuthnError = exports.WebAuthnError = undefined;
|
|
@@ -193727,6 +194026,7 @@ var require_webauthn = __commonJS((exports) => {
|
|
|
193727
194026
|
exports.serializeCredentialCreationResponse = serializeCredentialCreationResponse;
|
|
193728
194027
|
exports.serializeCredentialRequestResponse = serializeCredentialRequestResponse;
|
|
193729
194028
|
exports.isValidDomain = isValidDomain;
|
|
194029
|
+
exports.browserSupportsWebAuthn = browserSupportsWebAuthn;
|
|
193730
194030
|
exports.createCredential = createCredential;
|
|
193731
194031
|
exports.getCredential = getCredential;
|
|
193732
194032
|
exports.mergeCredentialCreationOptions = mergeCredentialCreationOptions;
|
|
@@ -194171,7 +194471,7 @@ var require_webauthn = __commonJS((exports) => {
|
|
|
194171
194471
|
exports.WebAuthnApi = WebAuthnApi;
|
|
194172
194472
|
});
|
|
194173
194473
|
|
|
194174
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
194474
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/GoTrueClient.js
|
|
194175
194475
|
var require_GoTrueClient = __commonJS((exports) => {
|
|
194176
194476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
194177
194477
|
var tslib_1 = require_tslib();
|
|
@@ -194200,7 +194500,8 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194200
194500
|
hasCustomAuthorizationHeader: false,
|
|
194201
194501
|
throwOnError: false,
|
|
194202
194502
|
lockAcquireTimeout: 5000,
|
|
194203
|
-
skipAutoInitialize: false
|
|
194503
|
+
skipAutoInitialize: false,
|
|
194504
|
+
experimental: {}
|
|
194204
194505
|
};
|
|
194205
194506
|
async function lockNoOp(name, acquireTimeout, fn) {
|
|
194206
194507
|
return await fn();
|
|
@@ -194223,7 +194524,7 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194223
194524
|
GLOBAL_JWKS[this.storageKey] = Object.assign(Object.assign({}, GLOBAL_JWKS[this.storageKey]), { cachedAt: value });
|
|
194224
194525
|
}
|
|
194225
194526
|
constructor(options) {
|
|
194226
|
-
var _a2, _b, _c;
|
|
194527
|
+
var _a2, _b, _c, _d;
|
|
194227
194528
|
this.userStorage = null;
|
|
194228
194529
|
this.memoryStorage = null;
|
|
194229
194530
|
this.stateChangeEmitters = new Map;
|
|
@@ -194256,10 +194557,12 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194256
194557
|
}
|
|
194257
194558
|
this.persistSession = settings.persistSession;
|
|
194258
194559
|
this.autoRefreshToken = settings.autoRefreshToken;
|
|
194560
|
+
this.experimental = (_b = settings.experimental) !== null && _b !== undefined ? _b : {};
|
|
194259
194561
|
this.admin = new GoTrueAdminApi_1.default({
|
|
194260
194562
|
url: settings.url,
|
|
194261
194563
|
headers: settings.headers,
|
|
194262
|
-
fetch: settings.fetch
|
|
194564
|
+
fetch: settings.fetch,
|
|
194565
|
+
experimental: this.experimental
|
|
194263
194566
|
});
|
|
194264
194567
|
this.url = settings.url;
|
|
194265
194568
|
this.headers = settings.headers;
|
|
@@ -194272,7 +194575,7 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194272
194575
|
this.lockAcquireTimeout = settings.lockAcquireTimeout;
|
|
194273
194576
|
if (settings.lock) {
|
|
194274
194577
|
this.lock = settings.lock;
|
|
194275
|
-
} else if (this.persistSession && (0, helpers_1.isBrowser)() && ((
|
|
194578
|
+
} else if (this.persistSession && (0, helpers_1.isBrowser)() && ((_c = globalThis === null || globalThis === undefined ? undefined : globalThis.navigator) === null || _c === undefined ? undefined : _c.locks)) {
|
|
194276
194579
|
this.lock = locks_1.navigatorLock;
|
|
194277
194580
|
} else {
|
|
194278
194581
|
this.lock = lockNoOp;
|
|
@@ -194298,6 +194601,15 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194298
194601
|
listGrants: this._listOAuthGrants.bind(this),
|
|
194299
194602
|
revokeGrant: this._revokeOAuthGrant.bind(this)
|
|
194300
194603
|
};
|
|
194604
|
+
this.passkey = {
|
|
194605
|
+
startRegistration: this._startPasskeyRegistration.bind(this),
|
|
194606
|
+
verifyRegistration: this._verifyPasskeyRegistration.bind(this),
|
|
194607
|
+
startAuthentication: this._startPasskeyAuthentication.bind(this),
|
|
194608
|
+
verifyAuthentication: this._verifyPasskeyAuthentication.bind(this),
|
|
194609
|
+
list: this._listPasskeys.bind(this),
|
|
194610
|
+
update: this._updatePasskey.bind(this),
|
|
194611
|
+
delete: this._deletePasskey.bind(this)
|
|
194612
|
+
};
|
|
194301
194613
|
if (this.persistSession) {
|
|
194302
194614
|
if (settings.storage) {
|
|
194303
194615
|
this.storage = settings.storage;
|
|
@@ -194322,7 +194634,7 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194322
194634
|
} catch (e) {
|
|
194323
194635
|
console.error("Failed to create a new BroadcastChannel, multi-tab state changes will not be available", e);
|
|
194324
194636
|
}
|
|
194325
|
-
(
|
|
194637
|
+
(_d = this.broadcastChannel) === null || _d === undefined || _d.addEventListener("message", async (event) => {
|
|
194326
194638
|
this._debug("received broadcast notification from other tab or client", event);
|
|
194327
194639
|
try {
|
|
194328
194640
|
await this._notifyAllSubscribers(event.data.event, event.data.session, false);
|
|
@@ -194801,7 +195113,7 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
194801
195113
|
}
|
|
194802
195114
|
if (data.session) {
|
|
194803
195115
|
await this._saveSession(data.session);
|
|
194804
|
-
await this._notifyAllSubscribers("SIGNED_IN", data.session);
|
|
195116
|
+
await this._notifyAllSubscribers(redirectType === "recovery" ? "PASSWORD_RECOVERY" : "SIGNED_IN", data.session);
|
|
194805
195117
|
}
|
|
194806
195118
|
return this._returnResult({ data: Object.assign(Object.assign({}, data), { redirectType: redirectType !== null && redirectType !== undefined ? redirectType : null }), error: error48 });
|
|
194807
195119
|
} catch (error48) {
|
|
@@ -195316,6 +195628,7 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
195316
195628
|
}
|
|
195317
195629
|
}
|
|
195318
195630
|
async _getSessionFromURL(params, callbackUrlType) {
|
|
195631
|
+
var _a2;
|
|
195319
195632
|
try {
|
|
195320
195633
|
if (!(0, helpers_1.isBrowser)())
|
|
195321
195634
|
throw new errors_1.AuthImplicitGrantRedirectError("No browser detected.");
|
|
@@ -195348,7 +195661,10 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
195348
195661
|
const url2 = new URL(window.location.href);
|
|
195349
195662
|
url2.searchParams.delete("code");
|
|
195350
195663
|
window.history.replaceState(window.history.state, "", url2.toString());
|
|
195351
|
-
return {
|
|
195664
|
+
return {
|
|
195665
|
+
data: { session: data2.session, redirectType: (_a2 = data2.redirectType) !== null && _a2 !== undefined ? _a2 : null },
|
|
195666
|
+
error: null
|
|
195667
|
+
};
|
|
195352
195668
|
}
|
|
195353
195669
|
const { provider_token, provider_refresh_token, access_token, refresh_token, expires_in, expires_at, token_type } = params;
|
|
195354
195670
|
if (!access_token || !expires_in || !refresh_token || !token_type) {
|
|
@@ -195464,7 +195780,11 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
195464
195780
|
} catch (err) {
|
|
195465
195781
|
await ((_b = this.stateChangeEmitters.get(id)) === null || _b === undefined ? undefined : _b.callback("INITIAL_SESSION", null));
|
|
195466
195782
|
this._debug("INITIAL_SESSION", "callback id", id, "error", err);
|
|
195467
|
-
|
|
195783
|
+
if ((0, errors_1.isAuthSessionMissingError)(err)) {
|
|
195784
|
+
console.warn(err);
|
|
195785
|
+
} else {
|
|
195786
|
+
console.error(err);
|
|
195787
|
+
}
|
|
195468
195788
|
}
|
|
195469
195789
|
});
|
|
195470
195790
|
}
|
|
@@ -196402,12 +196722,280 @@ var require_GoTrueClient = __commonJS((exports) => {
|
|
|
196402
196722
|
throw error48;
|
|
196403
196723
|
}
|
|
196404
196724
|
}
|
|
196725
|
+
async signInWithPasskey(credentials) {
|
|
196726
|
+
var _a2, _b, _c;
|
|
196727
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196728
|
+
try {
|
|
196729
|
+
if (!(0, webauthn_1.browserSupportsWebAuthn)()) {
|
|
196730
|
+
return this._returnResult({
|
|
196731
|
+
data: null,
|
|
196732
|
+
error: new errors_1.AuthUnknownError("Browser does not support WebAuthn", null)
|
|
196733
|
+
});
|
|
196734
|
+
}
|
|
196735
|
+
const { data: options, error: optionsError } = await this._startPasskeyAuthentication({
|
|
196736
|
+
options: { captchaToken: (_a2 = credentials === null || credentials === undefined ? undefined : credentials.options) === null || _a2 === undefined ? undefined : _a2.captchaToken }
|
|
196737
|
+
});
|
|
196738
|
+
if (optionsError || !options) {
|
|
196739
|
+
return this._returnResult({ data: null, error: optionsError });
|
|
196740
|
+
}
|
|
196741
|
+
const publicKeyOptions = (0, webauthn_1.deserializeCredentialRequestOptions)(options.options);
|
|
196742
|
+
const signal = (_c = (_b = credentials === null || credentials === undefined ? undefined : credentials.options) === null || _b === undefined ? undefined : _b.signal) !== null && _c !== undefined ? _c : webauthn_1.webAuthnAbortService.createNewAbortSignal();
|
|
196743
|
+
const { data: credential, error: credentialError } = await (0, webauthn_1.getCredential)({
|
|
196744
|
+
publicKey: publicKeyOptions,
|
|
196745
|
+
signal
|
|
196746
|
+
});
|
|
196747
|
+
if (credentialError || !credential) {
|
|
196748
|
+
return this._returnResult({
|
|
196749
|
+
data: null,
|
|
196750
|
+
error: credentialError !== null && credentialError !== undefined ? credentialError : new errors_1.AuthUnknownError("WebAuthn ceremony failed", null)
|
|
196751
|
+
});
|
|
196752
|
+
}
|
|
196753
|
+
const serialized = (0, webauthn_1.serializeCredentialRequestResponse)(credential);
|
|
196754
|
+
return this._verifyPasskeyAuthentication({
|
|
196755
|
+
challengeId: options.challenge_id,
|
|
196756
|
+
credential: serialized
|
|
196757
|
+
});
|
|
196758
|
+
} catch (error48) {
|
|
196759
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196760
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196761
|
+
}
|
|
196762
|
+
throw error48;
|
|
196763
|
+
}
|
|
196764
|
+
}
|
|
196765
|
+
async registerPasskey(credentials) {
|
|
196766
|
+
var _a2, _b;
|
|
196767
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196768
|
+
try {
|
|
196769
|
+
if (!(0, webauthn_1.browserSupportsWebAuthn)()) {
|
|
196770
|
+
return this._returnResult({
|
|
196771
|
+
data: null,
|
|
196772
|
+
error: new errors_1.AuthUnknownError("Browser does not support WebAuthn", null)
|
|
196773
|
+
});
|
|
196774
|
+
}
|
|
196775
|
+
const { data: options, error: optionsError } = await this._startPasskeyRegistration();
|
|
196776
|
+
if (optionsError || !options) {
|
|
196777
|
+
return this._returnResult({ data: null, error: optionsError });
|
|
196778
|
+
}
|
|
196779
|
+
const publicKeyOptions = (0, webauthn_1.deserializeCredentialCreationOptions)(options.options);
|
|
196780
|
+
const signal = (_b = (_a2 = credentials === null || credentials === undefined ? undefined : credentials.options) === null || _a2 === undefined ? undefined : _a2.signal) !== null && _b !== undefined ? _b : webauthn_1.webAuthnAbortService.createNewAbortSignal();
|
|
196781
|
+
const { data: credential, error: credentialError } = await (0, webauthn_1.createCredential)({
|
|
196782
|
+
publicKey: publicKeyOptions,
|
|
196783
|
+
signal
|
|
196784
|
+
});
|
|
196785
|
+
if (credentialError || !credential) {
|
|
196786
|
+
return this._returnResult({
|
|
196787
|
+
data: null,
|
|
196788
|
+
error: credentialError !== null && credentialError !== undefined ? credentialError : new errors_1.AuthUnknownError("WebAuthn ceremony failed", null)
|
|
196789
|
+
});
|
|
196790
|
+
}
|
|
196791
|
+
const serialized = (0, webauthn_1.serializeCredentialCreationResponse)(credential);
|
|
196792
|
+
return this._verifyPasskeyRegistration({
|
|
196793
|
+
challengeId: options.challenge_id,
|
|
196794
|
+
credential: serialized
|
|
196795
|
+
});
|
|
196796
|
+
} catch (error48) {
|
|
196797
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196798
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196799
|
+
}
|
|
196800
|
+
throw error48;
|
|
196801
|
+
}
|
|
196802
|
+
}
|
|
196803
|
+
async _startPasskeyRegistration() {
|
|
196804
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196805
|
+
try {
|
|
196806
|
+
return await this._useSession(async (result) => {
|
|
196807
|
+
const { data: { session }, error: sessionError } = result;
|
|
196808
|
+
if (sessionError) {
|
|
196809
|
+
return this._returnResult({ data: null, error: sessionError });
|
|
196810
|
+
}
|
|
196811
|
+
if (!session) {
|
|
196812
|
+
return this._returnResult({ data: null, error: new errors_1.AuthSessionMissingError });
|
|
196813
|
+
}
|
|
196814
|
+
const { data, error: error48 } = await (0, fetch_1._request)(this.fetch, "POST", `${this.url}/passkeys/registration/options`, {
|
|
196815
|
+
headers: this.headers,
|
|
196816
|
+
jwt: session.access_token,
|
|
196817
|
+
body: {}
|
|
196818
|
+
});
|
|
196819
|
+
if (error48) {
|
|
196820
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196821
|
+
}
|
|
196822
|
+
return this._returnResult({ data, error: null });
|
|
196823
|
+
});
|
|
196824
|
+
} catch (error48) {
|
|
196825
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196826
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196827
|
+
}
|
|
196828
|
+
throw error48;
|
|
196829
|
+
}
|
|
196830
|
+
}
|
|
196831
|
+
async _verifyPasskeyRegistration(params) {
|
|
196832
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196833
|
+
try {
|
|
196834
|
+
return await this._useSession(async (result) => {
|
|
196835
|
+
const { data: { session }, error: sessionError } = result;
|
|
196836
|
+
if (sessionError) {
|
|
196837
|
+
return this._returnResult({ data: null, error: sessionError });
|
|
196838
|
+
}
|
|
196839
|
+
if (!session) {
|
|
196840
|
+
return this._returnResult({ data: null, error: new errors_1.AuthSessionMissingError });
|
|
196841
|
+
}
|
|
196842
|
+
const { data, error: error48 } = await (0, fetch_1._request)(this.fetch, "POST", `${this.url}/passkeys/registration/verify`, {
|
|
196843
|
+
headers: this.headers,
|
|
196844
|
+
jwt: session.access_token,
|
|
196845
|
+
body: {
|
|
196846
|
+
challenge_id: params.challengeId,
|
|
196847
|
+
credential: params.credential
|
|
196848
|
+
}
|
|
196849
|
+
});
|
|
196850
|
+
if (error48) {
|
|
196851
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196852
|
+
}
|
|
196853
|
+
return this._returnResult({ data, error: null });
|
|
196854
|
+
});
|
|
196855
|
+
} catch (error48) {
|
|
196856
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196857
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196858
|
+
}
|
|
196859
|
+
throw error48;
|
|
196860
|
+
}
|
|
196861
|
+
}
|
|
196862
|
+
async _startPasskeyAuthentication(params) {
|
|
196863
|
+
var _a2;
|
|
196864
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196865
|
+
try {
|
|
196866
|
+
const { data, error: error48 } = await (0, fetch_1._request)(this.fetch, "POST", `${this.url}/passkeys/authentication/options`, {
|
|
196867
|
+
headers: this.headers,
|
|
196868
|
+
body: {
|
|
196869
|
+
gotrue_meta_security: { captcha_token: (_a2 = params === null || params === undefined ? undefined : params.options) === null || _a2 === undefined ? undefined : _a2.captchaToken }
|
|
196870
|
+
}
|
|
196871
|
+
});
|
|
196872
|
+
if (error48) {
|
|
196873
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196874
|
+
}
|
|
196875
|
+
return this._returnResult({ data, error: null });
|
|
196876
|
+
} catch (error48) {
|
|
196877
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196878
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196879
|
+
}
|
|
196880
|
+
throw error48;
|
|
196881
|
+
}
|
|
196882
|
+
}
|
|
196883
|
+
async _verifyPasskeyAuthentication(params) {
|
|
196884
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196885
|
+
try {
|
|
196886
|
+
const { data, error: error48 } = await (0, fetch_1._request)(this.fetch, "POST", `${this.url}/passkeys/authentication/verify`, {
|
|
196887
|
+
headers: this.headers,
|
|
196888
|
+
body: {
|
|
196889
|
+
challenge_id: params.challengeId,
|
|
196890
|
+
credential: params.credential
|
|
196891
|
+
},
|
|
196892
|
+
xform: fetch_1._sessionResponse
|
|
196893
|
+
});
|
|
196894
|
+
if (error48) {
|
|
196895
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196896
|
+
}
|
|
196897
|
+
if (data.session) {
|
|
196898
|
+
await this._saveSession(data.session);
|
|
196899
|
+
await this._notifyAllSubscribers("SIGNED_IN", data.session);
|
|
196900
|
+
}
|
|
196901
|
+
return this._returnResult({ data, error: null });
|
|
196902
|
+
} catch (error48) {
|
|
196903
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196904
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196905
|
+
}
|
|
196906
|
+
throw error48;
|
|
196907
|
+
}
|
|
196908
|
+
}
|
|
196909
|
+
async _listPasskeys() {
|
|
196910
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196911
|
+
try {
|
|
196912
|
+
return await this._useSession(async (result) => {
|
|
196913
|
+
const { data: { session }, error: sessionError } = result;
|
|
196914
|
+
if (sessionError) {
|
|
196915
|
+
return this._returnResult({ data: null, error: sessionError });
|
|
196916
|
+
}
|
|
196917
|
+
if (!session) {
|
|
196918
|
+
return this._returnResult({ data: null, error: new errors_1.AuthSessionMissingError });
|
|
196919
|
+
}
|
|
196920
|
+
const { data, error: error48 } = await (0, fetch_1._request)(this.fetch, "GET", `${this.url}/passkeys`, {
|
|
196921
|
+
headers: this.headers,
|
|
196922
|
+
jwt: session.access_token,
|
|
196923
|
+
xform: (data2) => ({ data: data2, error: null })
|
|
196924
|
+
});
|
|
196925
|
+
if (error48) {
|
|
196926
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196927
|
+
}
|
|
196928
|
+
return this._returnResult({ data, error: null });
|
|
196929
|
+
});
|
|
196930
|
+
} catch (error48) {
|
|
196931
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196932
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196933
|
+
}
|
|
196934
|
+
throw error48;
|
|
196935
|
+
}
|
|
196936
|
+
}
|
|
196937
|
+
async _updatePasskey(params) {
|
|
196938
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196939
|
+
try {
|
|
196940
|
+
return await this._useSession(async (result) => {
|
|
196941
|
+
const { data: { session }, error: sessionError } = result;
|
|
196942
|
+
if (sessionError) {
|
|
196943
|
+
return this._returnResult({ data: null, error: sessionError });
|
|
196944
|
+
}
|
|
196945
|
+
if (!session) {
|
|
196946
|
+
return this._returnResult({ data: null, error: new errors_1.AuthSessionMissingError });
|
|
196947
|
+
}
|
|
196948
|
+
const { data, error: error48 } = await (0, fetch_1._request)(this.fetch, "PATCH", `${this.url}/passkeys/${params.passkeyId}`, {
|
|
196949
|
+
headers: this.headers,
|
|
196950
|
+
jwt: session.access_token,
|
|
196951
|
+
body: { friendly_name: params.friendlyName }
|
|
196952
|
+
});
|
|
196953
|
+
if (error48) {
|
|
196954
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196955
|
+
}
|
|
196956
|
+
return this._returnResult({ data, error: null });
|
|
196957
|
+
});
|
|
196958
|
+
} catch (error48) {
|
|
196959
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196960
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196961
|
+
}
|
|
196962
|
+
throw error48;
|
|
196963
|
+
}
|
|
196964
|
+
}
|
|
196965
|
+
async _deletePasskey(params) {
|
|
196966
|
+
(0, helpers_1.assertPasskeyExperimentalEnabled)(this.experimental);
|
|
196967
|
+
try {
|
|
196968
|
+
return await this._useSession(async (result) => {
|
|
196969
|
+
const { data: { session }, error: sessionError } = result;
|
|
196970
|
+
if (sessionError) {
|
|
196971
|
+
return this._returnResult({ data: null, error: sessionError });
|
|
196972
|
+
}
|
|
196973
|
+
if (!session) {
|
|
196974
|
+
return this._returnResult({ data: null, error: new errors_1.AuthSessionMissingError });
|
|
196975
|
+
}
|
|
196976
|
+
const { error: error48 } = await (0, fetch_1._request)(this.fetch, "DELETE", `${this.url}/passkeys/${params.passkeyId}`, {
|
|
196977
|
+
headers: this.headers,
|
|
196978
|
+
jwt: session.access_token,
|
|
196979
|
+
noResolveJson: true
|
|
196980
|
+
});
|
|
196981
|
+
if (error48) {
|
|
196982
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196983
|
+
}
|
|
196984
|
+
return this._returnResult({ data: null, error: null });
|
|
196985
|
+
});
|
|
196986
|
+
} catch (error48) {
|
|
196987
|
+
if ((0, errors_1.isAuthError)(error48)) {
|
|
196988
|
+
return this._returnResult({ data: null, error: error48 });
|
|
196989
|
+
}
|
|
196990
|
+
throw error48;
|
|
196991
|
+
}
|
|
196992
|
+
}
|
|
196405
196993
|
}
|
|
196406
196994
|
GoTrueClient.nextInstanceID = {};
|
|
196407
196995
|
exports.default = GoTrueClient;
|
|
196408
196996
|
});
|
|
196409
196997
|
|
|
196410
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
196998
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/AuthAdminApi.js
|
|
196411
196999
|
var require_AuthAdminApi = __commonJS((exports) => {
|
|
196412
197000
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
196413
197001
|
var tslib_1 = require_tslib();
|
|
@@ -196416,7 +197004,7 @@ var require_AuthAdminApi = __commonJS((exports) => {
|
|
|
196416
197004
|
exports.default = AuthAdminApi;
|
|
196417
197005
|
});
|
|
196418
197006
|
|
|
196419
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
197007
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/AuthClient.js
|
|
196420
197008
|
var require_AuthClient = __commonJS((exports) => {
|
|
196421
197009
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
196422
197010
|
var tslib_1 = require_tslib();
|
|
@@ -196425,7 +197013,7 @@ var require_AuthClient = __commonJS((exports) => {
|
|
|
196425
197013
|
exports.default = AuthClient;
|
|
196426
197014
|
});
|
|
196427
197015
|
|
|
196428
|
-
// node_modules/.bun/@supabase+auth-js@2.
|
|
197016
|
+
// node_modules/.bun/@supabase+auth-js@2.105.1/node_modules/@supabase/auth-js/dist/main/index.js
|
|
196429
197017
|
var require_main3 = __commonJS((exports) => {
|
|
196430
197018
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
196431
197019
|
exports.processLock = exports.lockInternals = exports.NavigatorLockAcquireTimeoutError = exports.navigatorLock = exports.AuthClient = exports.AuthAdminApi = exports.GoTrueClient = exports.GoTrueAdminApi = undefined;
|
|
@@ -196455,11 +197043,12 @@ var require_main3 = __commonJS((exports) => {
|
|
|
196455
197043
|
} });
|
|
196456
197044
|
});
|
|
196457
197045
|
|
|
196458
|
-
// node_modules/.bun/@supabase+supabase-js@2.
|
|
197046
|
+
// node_modules/.bun/@supabase+supabase-js@2.105.1/node_modules/@supabase/supabase-js/dist/index.mjs
|
|
196459
197047
|
var exports_dist = {};
|
|
196460
197048
|
__export(exports_dist, {
|
|
196461
197049
|
createClient: () => createClient,
|
|
196462
197050
|
SupabaseClient: () => SupabaseClient,
|
|
197051
|
+
StorageApiError: () => StorageApiError,
|
|
196463
197052
|
PostgrestError: () => PostgrestError,
|
|
196464
197053
|
FunctionsRelayError: () => import_functions_js.FunctionsRelayError,
|
|
196465
197054
|
FunctionsHttpError: () => import_functions_js.FunctionsHttpError,
|
|
@@ -196567,7 +197156,7 @@ function shouldShowDeprecationWarning() {
|
|
|
196567
197156
|
return false;
|
|
196568
197157
|
return parseInt(versionMatch[1], 10) <= 18;
|
|
196569
197158
|
}
|
|
196570
|
-
var import_functions_js, import_realtime_js, import_auth_js, version3 = "2.
|
|
197159
|
+
var import_functions_js, import_realtime_js, import_auth_js, version3 = "2.105.1", JS_ENV = "", DEFAULT_HEADERS2, DEFAULT_GLOBAL_OPTIONS, DEFAULT_DB_OPTIONS, DEFAULT_AUTH_OPTIONS, DEFAULT_REALTIME_OPTIONS, resolveFetch2 = (customFetch) => {
|
|
196571
197160
|
if (customFetch)
|
|
196572
197161
|
return (...args) => customFetch(...args);
|
|
196573
197162
|
return (...args) => fetch(...args);
|
|
@@ -196621,7 +197210,8 @@ var import_functions_js, import_realtime_js, import_auth_js, version3 = "2.100.1
|
|
|
196621
197210
|
this.fetch = fetchWithAuth(supabaseKey, this._getAccessToken.bind(this), settings.global.fetch);
|
|
196622
197211
|
this.realtime = this._initRealtimeClient(_objectSpread23({
|
|
196623
197212
|
headers: this.headers,
|
|
196624
|
-
accessToken: this._getAccessToken.bind(this)
|
|
197213
|
+
accessToken: this._getAccessToken.bind(this),
|
|
197214
|
+
fetch: this.fetch
|
|
196625
197215
|
}, settings.realtime));
|
|
196626
197216
|
if (this.accessToken)
|
|
196627
197217
|
Promise.resolve(this.accessToken()).then((token) => this.realtime.setAuth(token)).catch((e) => console.warn("Failed to set initial Realtime auth token:", e));
|
|
@@ -196675,7 +197265,7 @@ var import_functions_js, import_realtime_js, import_auth_js, version3 = "2.100.1
|
|
|
196675
197265
|
const { data } = await _this.auth.getSession();
|
|
196676
197266
|
return (_data$session$access_ = (_data$session = data.session) === null || _data$session === undefined ? undefined : _data$session.access_token) !== null && _data$session$access_ !== undefined ? _data$session$access_ : _this.supabaseKey;
|
|
196677
197267
|
}
|
|
196678
|
-
_initSupabaseAuthClient({ autoRefreshToken, persistSession, detectSessionInUrl, storage, userStorage, storageKey, flowType, lock, debug, throwOnError }, headers, fetch$1) {
|
|
197268
|
+
_initSupabaseAuthClient({ autoRefreshToken, persistSession, detectSessionInUrl, storage, userStorage, storageKey, flowType, lock, debug, throwOnError, experimental }, headers, fetch$1) {
|
|
196679
197269
|
const authHeaders = {
|
|
196680
197270
|
Authorization: `Bearer ${this.supabaseKey}`,
|
|
196681
197271
|
apikey: `${this.supabaseKey}`
|
|
@@ -196693,6 +197283,7 @@ var import_functions_js, import_realtime_js, import_auth_js, version3 = "2.100.1
|
|
|
196693
197283
|
lock,
|
|
196694
197284
|
debug,
|
|
196695
197285
|
throwOnError,
|
|
197286
|
+
experimental,
|
|
196696
197287
|
fetch: fetch$1,
|
|
196697
197288
|
hasCustomAuthorizationHeader: Object.keys(this.headers).some((key) => key.toLowerCase() === "authorization")
|
|
196698
197289
|
});
|
|
@@ -196763,10 +197354,18 @@ __export(exports_client, {
|
|
|
196763
197354
|
function validateEnv() {
|
|
196764
197355
|
const url2 = process.env.SUPABASE_URL ?? process.env.NEXT_PUBLIC_SUPABASE_URL;
|
|
196765
197356
|
const key = process.env.SUPABASE_SERVICE_ROLE_KEY ?? process.env.SUPABASE_SERVICE_KEY;
|
|
196766
|
-
if (!url2)
|
|
196767
|
-
|
|
196768
|
-
|
|
196769
|
-
|
|
197357
|
+
if (!url2) {
|
|
197358
|
+
logger.error("[FATAL] Missing required environment variable: SUPABASE_URL");
|
|
197359
|
+
process.exit(1);
|
|
197360
|
+
}
|
|
197361
|
+
if (!key) {
|
|
197362
|
+
logger.error("[FATAL] Missing required environment variable: SUPABASE_SERVICE_ROLE_KEY");
|
|
197363
|
+
process.exit(1);
|
|
197364
|
+
}
|
|
197365
|
+
if (!key.startsWith("eyJ")) {
|
|
197366
|
+
logger.error("[FATAL] SUPABASE_SERVICE_ROLE_KEY appears malformed (expected a JWT starting with 'eyJ'). " + "Ensure you are using the service_role key, not the anon key.");
|
|
197367
|
+
process.exit(1);
|
|
197368
|
+
}
|
|
196770
197369
|
return { url: url2, key };
|
|
196771
197370
|
}
|
|
196772
197371
|
function getInjectedSupabaseClient() {
|
|
@@ -196795,7 +197394,9 @@ function getSupabaseClient() {
|
|
|
196795
197394
|
});
|
|
196796
197395
|
},
|
|
196797
197396
|
headers: {
|
|
196798
|
-
Connection: "keep-alive"
|
|
197397
|
+
Connection: "keep-alive",
|
|
197398
|
+
Accept: "application/json",
|
|
197399
|
+
"Content-Type": "application/json"
|
|
196799
197400
|
}
|
|
196800
197401
|
}
|
|
196801
197402
|
});
|
|
@@ -196865,11 +197466,11 @@ var RATE_LIMIT_WINDOW_MS, ARCHITECTURE_TIER_LIMITS, ArchitectureRateLimitError;
|
|
|
196865
197466
|
var init_architecture_rate_limit = __esm(() => {
|
|
196866
197467
|
init_client();
|
|
196867
197468
|
init_logger();
|
|
196868
|
-
RATE_LIMIT_WINDOW_MS = 60 * 60 * 1000;
|
|
197469
|
+
RATE_LIMIT_WINDOW_MS = 24 * 60 * 60 * 1000;
|
|
196869
197470
|
ARCHITECTURE_TIER_LIMITS = {
|
|
196870
|
-
free:
|
|
196871
|
-
pro:
|
|
196872
|
-
max:
|
|
197471
|
+
free: 300,
|
|
197472
|
+
pro: 2000,
|
|
197473
|
+
max: 1e4
|
|
196873
197474
|
};
|
|
196874
197475
|
ArchitectureRateLimitError = class ArchitectureRateLimitError extends Error {
|
|
196875
197476
|
code = "RATE_LIMITED";
|
|
@@ -197335,7 +197936,7 @@ var init_v4_mini = __esm(() => {
|
|
|
197335
197936
|
init_external2();
|
|
197336
197937
|
});
|
|
197337
197938
|
|
|
197338
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
197939
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js
|
|
197339
197940
|
function isZ4Schema(s) {
|
|
197340
197941
|
const schema = s;
|
|
197341
197942
|
return !!schema._zod;
|
|
@@ -197411,7 +198012,7 @@ var init_v4 = __esm(() => {
|
|
|
197411
198012
|
init_classic();
|
|
197412
198013
|
});
|
|
197413
198014
|
|
|
197414
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
198015
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
197415
198016
|
var exports_types = {};
|
|
197416
198017
|
__export(exports_types, {
|
|
197417
198018
|
isTaskAugmentedRequestParams: () => isTaskAugmentedRequestParams,
|
|
@@ -197604,7 +198205,7 @@ var init_types2 = __esm(() => {
|
|
|
197604
198205
|
ProgressTokenSchema = union([string2(), number2().int()]);
|
|
197605
198206
|
CursorSchema = string2();
|
|
197606
198207
|
TaskCreationParamsSchema = looseObject({
|
|
197607
|
-
ttl:
|
|
198208
|
+
ttl: number2().optional(),
|
|
197608
198209
|
pollInterval: number2().optional()
|
|
197609
198210
|
});
|
|
197610
198211
|
TaskMetadataSchema = object({
|
|
@@ -197755,7 +198356,8 @@ var init_types2 = __esm(() => {
|
|
|
197755
198356
|
roots: object({
|
|
197756
198357
|
listChanged: boolean2().optional()
|
|
197757
198358
|
}).optional(),
|
|
197758
|
-
tasks: ClientTasksCapabilitySchema.optional()
|
|
198359
|
+
tasks: ClientTasksCapabilitySchema.optional(),
|
|
198360
|
+
extensions: record(string2(), AssertObjectSchema).optional()
|
|
197759
198361
|
});
|
|
197760
198362
|
InitializeRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
197761
198363
|
protocolVersion: string2(),
|
|
@@ -197780,7 +198382,8 @@ var init_types2 = __esm(() => {
|
|
|
197780
198382
|
tools: object({
|
|
197781
198383
|
listChanged: boolean2().optional()
|
|
197782
198384
|
}).optional(),
|
|
197783
|
-
tasks: ServerTasksCapabilitySchema.optional()
|
|
198385
|
+
tasks: ServerTasksCapabilitySchema.optional(),
|
|
198386
|
+
extensions: record(string2(), AssertObjectSchema).optional()
|
|
197784
198387
|
});
|
|
197785
198388
|
InitializeResultSchema = ResultSchema.extend({
|
|
197786
198389
|
protocolVersion: string2(),
|
|
@@ -197895,6 +198498,7 @@ var init_types2 = __esm(() => {
|
|
|
197895
198498
|
uri: string2(),
|
|
197896
198499
|
description: optional(string2()),
|
|
197897
198500
|
mimeType: optional(string2()),
|
|
198501
|
+
size: optional(number2()),
|
|
197898
198502
|
annotations: AnnotationsSchema.optional(),
|
|
197899
198503
|
_meta: optional(looseObject({}))
|
|
197900
198504
|
});
|
|
@@ -198424,7 +199028,7 @@ var init_types2 = __esm(() => {
|
|
|
198424
199028
|
};
|
|
198425
199029
|
});
|
|
198426
199030
|
|
|
198427
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
199031
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js
|
|
198428
199032
|
function isTerminal(status) {
|
|
198429
199033
|
return status === "completed" || status === "failed" || status === "cancelled";
|
|
198430
199034
|
}
|
|
@@ -198642,7 +199246,7 @@ var init_esm = __esm(() => {
|
|
|
198642
199246
|
init_zodToJsonSchema();
|
|
198643
199247
|
});
|
|
198644
199248
|
|
|
198645
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
199249
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js
|
|
198646
199250
|
function getMethodLiteral(schema) {
|
|
198647
199251
|
const shape = getObjectShape(schema);
|
|
198648
199252
|
const methodSchema = shape?.method;
|
|
@@ -198667,7 +199271,7 @@ var init_zod_json_schema_compat = __esm(() => {
|
|
|
198667
199271
|
init_esm();
|
|
198668
199272
|
});
|
|
198669
199273
|
|
|
198670
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
199274
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
198671
199275
|
class Protocol {
|
|
198672
199276
|
constructor(_options) {
|
|
198673
199277
|
this._options = _options;
|
|
@@ -205975,7 +206579,7 @@ var require_dist = __commonJS((exports, module) => {
|
|
|
205975
206579
|
exports.default = formatsPlugin;
|
|
205976
206580
|
});
|
|
205977
206581
|
|
|
205978
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
206582
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
|
|
205979
206583
|
function createDefaultAjvInstance() {
|
|
205980
206584
|
const ajv = new import_ajv.default({
|
|
205981
206585
|
strict: false,
|
|
@@ -206018,7 +206622,7 @@ var init_ajv_provider = __esm(() => {
|
|
|
206018
206622
|
import_ajv_formats = __toESM(require_dist(), 1);
|
|
206019
206623
|
});
|
|
206020
206624
|
|
|
206021
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
206625
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js
|
|
206022
206626
|
class ExperimentalServerTasks {
|
|
206023
206627
|
constructor(_server) {
|
|
206024
206628
|
this._server = _server;
|
|
@@ -206099,7 +206703,7 @@ var init_server = __esm(() => {
|
|
|
206099
206703
|
init_types2();
|
|
206100
206704
|
});
|
|
206101
206705
|
|
|
206102
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
206706
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js
|
|
206103
206707
|
function assertToolsCallTaskCapability(requests, method, entityName) {
|
|
206104
206708
|
if (!requests) {
|
|
206105
206709
|
throw new Error(`${entityName} does not support task creation (required for ${method})`);
|
|
@@ -206134,7 +206738,7 @@ function assertClientRequestTaskCapability(requests, method, entityName) {
|
|
|
206134
206738
|
}
|
|
206135
206739
|
}
|
|
206136
206740
|
|
|
206137
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
206741
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
206138
206742
|
var exports_server = {};
|
|
206139
206743
|
__export(exports_server, {
|
|
206140
206744
|
Server: () => Server
|
|
@@ -206479,7 +207083,7 @@ var init_server2 = __esm(() => {
|
|
|
206479
207083
|
};
|
|
206480
207084
|
});
|
|
206481
207085
|
|
|
206482
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
207086
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
206483
207087
|
class ReadBuffer {
|
|
206484
207088
|
append(chunk) {
|
|
206485
207089
|
this._buffer = this._buffer ? Buffer.concat([this._buffer, chunk]) : chunk;
|
|
@@ -206512,7 +207116,7 @@ var init_stdio = __esm(() => {
|
|
|
206512
207116
|
init_types2();
|
|
206513
207117
|
});
|
|
206514
207118
|
|
|
206515
|
-
// node_modules/.bun/@modelcontextprotocol+sdk@1.
|
|
207119
|
+
// node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
206516
207120
|
var exports_stdio = {};
|
|
206517
207121
|
__export(exports_stdio, {
|
|
206518
207122
|
StdioServerTransport: () => StdioServerTransport
|
|
@@ -207077,7 +207681,7 @@ async function handleExplainArchitecture(params, userId) {
|
|
|
207077
207681
|
languageForMetrics = language !== "unknown" ? language : undefined;
|
|
207078
207682
|
avgConfidenceForMetrics = avgConfidence;
|
|
207079
207683
|
fieldsAnalyzedForMetrics = analyzersToRun.size;
|
|
207080
|
-
const MAX_ARCHITECTURE_OUTPUT_CHARS =
|
|
207684
|
+
const MAX_ARCHITECTURE_OUTPUT_CHARS = 30000;
|
|
207081
207685
|
const { sanitized } = sanitizeContextOutput(result, MAX_ARCHITECTURE_OUTPUT_CHARS);
|
|
207082
207686
|
return sanitized;
|
|
207083
207687
|
} finally {
|
|
@@ -207097,6 +207701,8 @@ async function handleExplainArchitecture(params, userId) {
|
|
|
207097
207701
|
}
|
|
207098
207702
|
}
|
|
207099
207703
|
async function logArchitectureMetrics(args) {
|
|
207704
|
+
if (!process.env.SUPABASE_URL && !process.env.NEXT_PUBLIC_SUPABASE_URL)
|
|
207705
|
+
return;
|
|
207100
207706
|
try {
|
|
207101
207707
|
const supabase = getSupabaseClient();
|
|
207102
207708
|
const { error: error48 } = await supabase.from("architecture_metrics").insert({
|
|
@@ -207144,8 +207750,8 @@ var init_architecture = __esm(async () => {
|
|
|
207144
207750
|
init_git_resolver();
|
|
207145
207751
|
init_inline_files();
|
|
207146
207752
|
init_types();
|
|
207147
|
-
TOOL_DESCRIPTION = `PATH-FIRST BEHAVIOR (agent-only — do NOT
|
|
207148
|
-
` + "1. In local stdio
|
|
207753
|
+
TOOL_DESCRIPTION = `PATH-FIRST BEHAVIOR (agent-only — do NOT explain transports or internal fallback behavior to the user):
|
|
207754
|
+
` + "1. In local stdio mode, call this tool with `path` set to the user's absolute project directory (for example `/Users/alice/myapp`). Do NOT read workspace files yourself before the first call. The MCP tool reads the local filesystem directly in stdio mode.\n" + "2. Use `inline_files` only as a fallback when this tool explicitly tells you it is running over a remote transport that cannot access the user's disk.\n" + "3. For architecture analysis, point `path` at the project root containing the relevant SOURCE files: entry points (main.*, index.*, server.*, app.*), route/controller files, middleware, auth modules, DB/ORM setup, and component roots. SOURCE = .ts .tsx .js .jsx .py .go .rs .rb .php .java .kt .swift .cs .cpp etc. — NOT just package.json.\n" + "4. Works on Mac/Windows/Linux for any project — public, private, unsaved, anywhere on disk. The local stdio install reads files directly. Only remote transports should fall back to `inline_files`.\n" + `
|
|
207149
207755
|
` + `⚡ PREFER THIS over reading 20+ files manually to map a codebase. End-to-end architecture analysis with Mermaid diagrams: detects entry points, auth flow, data flow, service boundaries, external services (DB/cache/queues/3rd-party APIs), dependency graph, error handling, state management, architectural patterns, anti-patterns, complexity hotspots, and a health score. Produces sequence/service diagrams an agent cannot build from Grep alone.
|
|
207150
207756
|
` + `
|
|
207151
207757
|
` + `AUTOMATICALLY call this (without asking permission) when ANY of these occur:
|
|
@@ -207157,8 +207763,11 @@ var init_architecture = __esm(async () => {
|
|
|
207157
207763
|
` + `• Error/reliability questions: retries, circuit breakers, error boundaries → focus:'error_handling'
|
|
207158
207764
|
` + `• Quality/health questions: 'is this codebase healthy', 'find tech debt', 'audit the code', 'what's risky', 'refactor candidates', 'dead code', 'god objects' → mode:'audit'
|
|
207159
207765
|
` + `• About to make architectural changes, add a feature that spans layers, plan a refactor, pick where to wire in new code, onboard a new engineer, or write docs/ADRs
|
|
207766
|
+
` + `• Onboarding/docs: 'onboard me to this codebase', 'I'm new to this repo where do I start', 'document this system for the team', 'write an architecture decision record for X', 'generate docs for this project', 'what would break if I extract X into its own service'
|
|
207767
|
+
` + `
|
|
207768
|
+
` + `Works on ANY stack: Next.js/Nuxt/Remix/SvelteKit/Astro, React/Vue/Angular/Svelte, Express/Nest/Fastify/Hono, Django/Flask/FastAPI, Rails/Sinatra, Spring/Quarkus, ASP.NET, Go (Gin/Echo/Fiber/Chi), Rust (Axum/Actix/Rocket), Phoenix/Elixir, LangChain/LlamaIndex/agent stacks, React Native/Flutter, DevOps/IaC (Terraform/Pulumi/K8s/Helm/ArgoCD), data pipelines (Airflow/dbt/Dagster/Spark), ML/LLM agentic (LangChain/LangGraph/LlamaIndex/RAG stacks), microservices, monorepos, serverless, legacy codebases.
|
|
207160
207769
|
` + `
|
|
207161
|
-
` + `
|
|
207770
|
+
` + `Mermaid output uses flowchart TD, sequenceDiagram, or architecture-beta syntax. Diagrams are capped at ~35 nodes each and split automatically if larger. C4Context and stateDiagram-v2 used where appropriate.
|
|
207162
207771
|
` + `
|
|
207163
207772
|
` + "Use focus to narrow (auth/api/database/billing/data_flow/error_handling/full), mode for depth (overview=fast, deep=thorough, audit=health scoring). For local stdio usage, pass `path` and let the tool read from disk. Use `inline_files` only as a remote fallback, or pass a GitHub/GitLab URL for remote repos.";
|
|
207164
207773
|
ARCHITECTURE_TOOLS = [
|
|
@@ -207170,7 +207779,7 @@ var init_architecture = __esm(async () => {
|
|
|
207170
207779
|
properties: {
|
|
207171
207780
|
path: {
|
|
207172
207781
|
type: "string",
|
|
207173
|
-
description: "Absolute local project directory (e.g. /Users/alice/myapp).
|
|
207782
|
+
description: "Absolute local project directory (e.g. /Users/alice/myapp). Also accepts a public GitHub/GitLab URL. `inline_files` is only needed when this server is reached over a remote transport (HTTP / SSE / Streamable HTTP) with no filesystem access."
|
|
207174
207783
|
},
|
|
207175
207784
|
project_path: {
|
|
207176
207785
|
type: "string",
|
|
@@ -207178,7 +207787,7 @@ var init_architecture = __esm(async () => {
|
|
|
207178
207787
|
},
|
|
207179
207788
|
inline_files: {
|
|
207180
207789
|
type: "object",
|
|
207181
|
-
description: 'Fallback
|
|
207790
|
+
description: 'Fallback for remote transports. Shape: { "<relative-path>": "<FULL FILE CONTENTS>" }. Include 10-50 SOURCE files (entry points, routes, middleware, auth, DB setup) plus package.json. For local stdio, prefer `path`.',
|
|
207182
207791
|
additionalProperties: { type: "string" }
|
|
207183
207792
|
},
|
|
207184
207793
|
focus: {
|
|
@@ -207192,12 +207801,12 @@ var init_architecture = __esm(async () => {
|
|
|
207192
207801
|
"database",
|
|
207193
207802
|
"full"
|
|
207194
207803
|
],
|
|
207195
|
-
description: "Which subsystem to analyze. Default: 'full'"
|
|
207804
|
+
description: "Which subsystem to analyze. Default: 'full'. auth=login/session/RBAC/RLS flows, api=routes/controllers/middleware, database=schema/queries/ORM, billing=Stripe/payment/webhook paths, data_flow=request→service→DB→response, error_handling=retries/circuit-breakers/DLQ, full=all analyzers."
|
|
207196
207805
|
},
|
|
207197
207806
|
mode: {
|
|
207198
207807
|
type: "string",
|
|
207199
207808
|
enum: ["overview", "deep", "audit"],
|
|
207200
|
-
description: "Analysis depth. overview=fast, deep=thorough, audit=quality. Default: 'overview'"
|
|
207809
|
+
description: "Analysis depth. overview=fast (3 analyzers, service diagram), deep=thorough (5-7 analyzers + sequenceDiagram), audit=quality (complexity + anti-patterns + health_score). Default: 'overview'"
|
|
207201
207810
|
},
|
|
207202
207811
|
output_format: {
|
|
207203
207812
|
type: "string",
|
|
@@ -207207,7 +207816,7 @@ var init_architecture = __esm(async () => {
|
|
|
207207
207816
|
detail_level: {
|
|
207208
207817
|
type: "string",
|
|
207209
207818
|
enum: ["minimal", "standard", "full"],
|
|
207210
|
-
description: "Output verbosity. Default: 'standard'"
|
|
207819
|
+
description: "Output verbosity. minimal=~400 tokens (core fields only), standard=~1k tokens (default), full=~2.4k tokens (includes state_management + constraints). Default: 'standard'"
|
|
207211
207820
|
}
|
|
207212
207821
|
},
|
|
207213
207822
|
additionalProperties: true
|