@workglow/storage 0.2.9 → 0.2.11
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/dist/browser.js +3 -3
- package/dist/browser.js.map +6 -6
- package/dist/bun.js +3 -3
- package/dist/bun.js.map +6 -6
- package/dist/kv/SupabaseKvStorage.d.ts +2 -3
- package/dist/kv/SupabaseKvStorage.d.ts.map +1 -1
- package/dist/node.js +3 -3
- package/dist/node.js.map +6 -6
- package/dist/queue/SupabaseQueueStorage.d.ts +1 -6
- package/dist/queue/SupabaseQueueStorage.d.ts.map +1 -1
- package/dist/queue-limiter/SupabaseRateLimiterStorage.d.ts +2 -6
- package/dist/queue-limiter/SupabaseRateLimiterStorage.d.ts.map +1 -1
- package/dist/tabular/SupabaseTabularStorage.d.ts +2 -2
- package/dist/tabular/SupabaseTabularStorage.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/vector/README.md +4 -1
package/dist/browser.js
CHANGED
|
@@ -4517,16 +4517,16 @@ import { createServiceToken as createServiceToken18, makeFingerprint as makeFing
|
|
|
4517
4517
|
var SUPABASE_QUEUE_STORAGE = createServiceToken18("jobqueue.storage.supabase");
|
|
4518
4518
|
|
|
4519
4519
|
class SupabaseQueueStorage {
|
|
4520
|
-
client;
|
|
4521
4520
|
queueName;
|
|
4521
|
+
client;
|
|
4522
4522
|
prefixes;
|
|
4523
4523
|
prefixValues;
|
|
4524
4524
|
tableName;
|
|
4525
4525
|
realtimeChannel = null;
|
|
4526
4526
|
pollingManager = null;
|
|
4527
4527
|
constructor(client, queueName, options) {
|
|
4528
|
-
this.client = client;
|
|
4529
4528
|
this.queueName = queueName;
|
|
4529
|
+
this.client = client;
|
|
4530
4530
|
this.prefixes = options?.prefixes ?? [];
|
|
4531
4531
|
this.prefixValues = options?.prefixValues ?? {};
|
|
4532
4532
|
if (this.prefixes.length > 0) {
|
|
@@ -5568,4 +5568,4 @@ export {
|
|
|
5568
5568
|
BaseTabularStorage
|
|
5569
5569
|
};
|
|
5570
5570
|
|
|
5571
|
-
//# debugId=
|
|
5571
|
+
//# debugId=67550E2145370E0164756E2164756E21
|