@rivetkit/supabase 2.3.15-rc.3 → 2.3.15
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/mod.js +45 -45
- package/dist/mod.mjs +45 -45
- package/package.json +3 -3
package/dist/mod.js
CHANGED
|
@@ -519,7 +519,7 @@ function unsupportedFeature(feature) {
|
|
|
519
519
|
);
|
|
520
520
|
}
|
|
521
521
|
|
|
522
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
522
|
+
// ../rivetkit/dist/tsup/chunk-7WWPQPSK.js
|
|
523
523
|
var import_pino = require("pino");
|
|
524
524
|
|
|
525
525
|
// ../../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/classic/external.js
|
|
@@ -13192,7 +13192,7 @@ var classic_default = external_exports;
|
|
|
13192
13192
|
// ../../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/index.js
|
|
13193
13193
|
var v4_default = classic_default;
|
|
13194
13194
|
|
|
13195
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
13195
|
+
// ../rivetkit/dist/tsup/chunk-7WWPQPSK.js
|
|
13196
13196
|
var cbor = __toESM(require("cbor-x"), 1);
|
|
13197
13197
|
var import_invariant = __toESM(require_invariant(), 1);
|
|
13198
13198
|
var getRivetEngine = () => getEnvUniversal("RIVET_ENGINE");
|
|
@@ -13366,7 +13366,7 @@ function noopNext() {
|
|
|
13366
13366
|
}
|
|
13367
13367
|
var package_default = {
|
|
13368
13368
|
name: "rivetkit",
|
|
13369
|
-
version: "2.3.15
|
|
13369
|
+
version: "2.3.15",
|
|
13370
13370
|
description: "Lightweight libraries for building stateful actors on edge platforms",
|
|
13371
13371
|
license: "Apache-2.0",
|
|
13372
13372
|
keywords: [
|
|
@@ -14670,7 +14670,7 @@ function Config({ initialBufferLength = 1024, maxBufferLength = 1024 * 1024 * 32
|
|
|
14670
14670
|
};
|
|
14671
14671
|
}
|
|
14672
14672
|
|
|
14673
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
14673
|
+
// ../rivetkit/dist/tsup/chunk-X2AXJFLI.js
|
|
14674
14674
|
var config2 = /* @__PURE__ */ Config({});
|
|
14675
14675
|
function readWorkflowCbor(bc) {
|
|
14676
14676
|
return readData(bc);
|
|
@@ -15549,6 +15549,44 @@ function removePrefixFromKey(prefixedKey) {
|
|
|
15549
15549
|
return prefixedKey.slice(KEYS.KV.length);
|
|
15550
15550
|
}
|
|
15551
15551
|
|
|
15552
|
+
// ../rivetkit/dist/tsup/chunk-UIREWKKH.js
|
|
15553
|
+
function logger() {
|
|
15554
|
+
return getLogger("actor-client");
|
|
15555
|
+
}
|
|
15556
|
+
var webSocketPromise = null;
|
|
15557
|
+
async function importWebSocket() {
|
|
15558
|
+
if (webSocketPromise !== null) {
|
|
15559
|
+
return webSocketPromise;
|
|
15560
|
+
}
|
|
15561
|
+
webSocketPromise = (async () => {
|
|
15562
|
+
let _WebSocket;
|
|
15563
|
+
if (typeof WebSocket !== "undefined") {
|
|
15564
|
+
_WebSocket = WebSocket;
|
|
15565
|
+
} else {
|
|
15566
|
+
try {
|
|
15567
|
+
const moduleName = "ws";
|
|
15568
|
+
const ws = await import(
|
|
15569
|
+
/* webpackIgnore: true */
|
|
15570
|
+
moduleName
|
|
15571
|
+
);
|
|
15572
|
+
_WebSocket = ws.default;
|
|
15573
|
+
logger().debug("using websocket from npm");
|
|
15574
|
+
} catch {
|
|
15575
|
+
_WebSocket = class MockWebSocket {
|
|
15576
|
+
constructor() {
|
|
15577
|
+
throw new Error(
|
|
15578
|
+
'WebSocket support requires installing the "ws" peer dependency.'
|
|
15579
|
+
);
|
|
15580
|
+
}
|
|
15581
|
+
};
|
|
15582
|
+
logger().debug("using mock websocket");
|
|
15583
|
+
}
|
|
15584
|
+
}
|
|
15585
|
+
return _WebSocket;
|
|
15586
|
+
})();
|
|
15587
|
+
return webSocketPromise;
|
|
15588
|
+
}
|
|
15589
|
+
|
|
15552
15590
|
// ../rivetkit/dist/tsup/chunk-JTHHCZCZ.js
|
|
15553
15591
|
var MIGRATION_TRANSACTION_TIMEOUT_MS = 5 * 6e4;
|
|
15554
15592
|
function isManualTransactionControl(query) {
|
|
@@ -15632,45 +15670,7 @@ var AsyncMutex = class {
|
|
|
15632
15670
|
}
|
|
15633
15671
|
};
|
|
15634
15672
|
|
|
15635
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
15636
|
-
function logger() {
|
|
15637
|
-
return getLogger("actor-client");
|
|
15638
|
-
}
|
|
15639
|
-
var webSocketPromise = null;
|
|
15640
|
-
async function importWebSocket() {
|
|
15641
|
-
if (webSocketPromise !== null) {
|
|
15642
|
-
return webSocketPromise;
|
|
15643
|
-
}
|
|
15644
|
-
webSocketPromise = (async () => {
|
|
15645
|
-
let _WebSocket;
|
|
15646
|
-
if (typeof WebSocket !== "undefined") {
|
|
15647
|
-
_WebSocket = WebSocket;
|
|
15648
|
-
} else {
|
|
15649
|
-
try {
|
|
15650
|
-
const moduleName = "ws";
|
|
15651
|
-
const ws = await import(
|
|
15652
|
-
/* webpackIgnore: true */
|
|
15653
|
-
moduleName
|
|
15654
|
-
);
|
|
15655
|
-
_WebSocket = ws.default;
|
|
15656
|
-
logger().debug("using websocket from npm");
|
|
15657
|
-
} catch {
|
|
15658
|
-
_WebSocket = class MockWebSocket {
|
|
15659
|
-
constructor() {
|
|
15660
|
-
throw new Error(
|
|
15661
|
-
'WebSocket support requires installing the "ws" peer dependency.'
|
|
15662
|
-
);
|
|
15663
|
-
}
|
|
15664
|
-
};
|
|
15665
|
-
logger().debug("using mock websocket");
|
|
15666
|
-
}
|
|
15667
|
-
}
|
|
15668
|
-
return _WebSocket;
|
|
15669
|
-
})();
|
|
15670
|
-
return webSocketPromise;
|
|
15671
|
-
}
|
|
15672
|
-
|
|
15673
|
-
// ../rivetkit/dist/tsup/chunk-BYFMEJVI.js
|
|
15673
|
+
// ../rivetkit/dist/tsup/chunk-2TWGN5HF.js
|
|
15674
15674
|
var import_invariant2 = __toESM(require_invariant(), 1);
|
|
15675
15675
|
|
|
15676
15676
|
// ../../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
|
|
@@ -15848,7 +15848,7 @@ function createVersionedDataHandler(config3) {
|
|
|
15848
15848
|
return new VersionedDataHandler(config3);
|
|
15849
15849
|
}
|
|
15850
15850
|
|
|
15851
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
15851
|
+
// ../rivetkit/dist/tsup/chunk-2TWGN5HF.js
|
|
15852
15852
|
var import_invariant3 = __toESM(require_invariant(), 1);
|
|
15853
15853
|
var import_invariant4 = __toESM(require_invariant(), 1);
|
|
15854
15854
|
var PATH_CONNECT = "/connect";
|
|
@@ -21632,7 +21632,7 @@ function apiActorToOutput(actor2) {
|
|
|
21632
21632
|
};
|
|
21633
21633
|
}
|
|
21634
21634
|
|
|
21635
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
21635
|
+
// ../rivetkit/dist/tsup/chunk-TRBPWMS6.js
|
|
21636
21636
|
var nativeStateTransactionOpeners = /* @__PURE__ */ new WeakMap();
|
|
21637
21637
|
var nativeStateTransactionClientBinders = /* @__PURE__ */ new WeakMap();
|
|
21638
21638
|
function registerNativeStateTransactionOpener(provider, opener) {
|
package/dist/mod.mjs
CHANGED
|
@@ -481,7 +481,7 @@ function unsupportedFeature(feature) {
|
|
|
481
481
|
);
|
|
482
482
|
}
|
|
483
483
|
|
|
484
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
484
|
+
// ../rivetkit/dist/tsup/chunk-7WWPQPSK.js
|
|
485
485
|
import {
|
|
486
486
|
pino,
|
|
487
487
|
stdTimeFunctions
|
|
@@ -13157,7 +13157,7 @@ var classic_default = external_exports;
|
|
|
13157
13157
|
// ../../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/index.js
|
|
13158
13158
|
var v4_default = classic_default;
|
|
13159
13159
|
|
|
13160
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
13160
|
+
// ../rivetkit/dist/tsup/chunk-7WWPQPSK.js
|
|
13161
13161
|
var import_invariant = __toESM(require_invariant(), 1);
|
|
13162
13162
|
import * as cbor from "cbor-x";
|
|
13163
13163
|
var getRivetEngine = () => getEnvUniversal("RIVET_ENGINE");
|
|
@@ -13331,7 +13331,7 @@ function noopNext() {
|
|
|
13331
13331
|
}
|
|
13332
13332
|
var package_default = {
|
|
13333
13333
|
name: "rivetkit",
|
|
13334
|
-
version: "2.3.15
|
|
13334
|
+
version: "2.3.15",
|
|
13335
13335
|
description: "Lightweight libraries for building stateful actors on edge platforms",
|
|
13336
13336
|
license: "Apache-2.0",
|
|
13337
13337
|
keywords: [
|
|
@@ -14635,7 +14635,7 @@ function Config({ initialBufferLength = 1024, maxBufferLength = 1024 * 1024 * 32
|
|
|
14635
14635
|
};
|
|
14636
14636
|
}
|
|
14637
14637
|
|
|
14638
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
14638
|
+
// ../rivetkit/dist/tsup/chunk-X2AXJFLI.js
|
|
14639
14639
|
var config2 = /* @__PURE__ */ Config({});
|
|
14640
14640
|
function readWorkflowCbor(bc) {
|
|
14641
14641
|
return readData(bc);
|
|
@@ -15514,6 +15514,44 @@ function removePrefixFromKey(prefixedKey) {
|
|
|
15514
15514
|
return prefixedKey.slice(KEYS.KV.length);
|
|
15515
15515
|
}
|
|
15516
15516
|
|
|
15517
|
+
// ../rivetkit/dist/tsup/chunk-UIREWKKH.js
|
|
15518
|
+
function logger() {
|
|
15519
|
+
return getLogger("actor-client");
|
|
15520
|
+
}
|
|
15521
|
+
var webSocketPromise = null;
|
|
15522
|
+
async function importWebSocket() {
|
|
15523
|
+
if (webSocketPromise !== null) {
|
|
15524
|
+
return webSocketPromise;
|
|
15525
|
+
}
|
|
15526
|
+
webSocketPromise = (async () => {
|
|
15527
|
+
let _WebSocket;
|
|
15528
|
+
if (typeof WebSocket !== "undefined") {
|
|
15529
|
+
_WebSocket = WebSocket;
|
|
15530
|
+
} else {
|
|
15531
|
+
try {
|
|
15532
|
+
const moduleName = "ws";
|
|
15533
|
+
const ws = await import(
|
|
15534
|
+
/* webpackIgnore: true */
|
|
15535
|
+
moduleName
|
|
15536
|
+
);
|
|
15537
|
+
_WebSocket = ws.default;
|
|
15538
|
+
logger().debug("using websocket from npm");
|
|
15539
|
+
} catch {
|
|
15540
|
+
_WebSocket = class MockWebSocket {
|
|
15541
|
+
constructor() {
|
|
15542
|
+
throw new Error(
|
|
15543
|
+
'WebSocket support requires installing the "ws" peer dependency.'
|
|
15544
|
+
);
|
|
15545
|
+
}
|
|
15546
|
+
};
|
|
15547
|
+
logger().debug("using mock websocket");
|
|
15548
|
+
}
|
|
15549
|
+
}
|
|
15550
|
+
return _WebSocket;
|
|
15551
|
+
})();
|
|
15552
|
+
return webSocketPromise;
|
|
15553
|
+
}
|
|
15554
|
+
|
|
15517
15555
|
// ../rivetkit/dist/tsup/chunk-JTHHCZCZ.js
|
|
15518
15556
|
var MIGRATION_TRANSACTION_TIMEOUT_MS = 5 * 6e4;
|
|
15519
15557
|
function isManualTransactionControl(query) {
|
|
@@ -15597,45 +15635,7 @@ var AsyncMutex = class {
|
|
|
15597
15635
|
}
|
|
15598
15636
|
};
|
|
15599
15637
|
|
|
15600
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
15601
|
-
function logger() {
|
|
15602
|
-
return getLogger("actor-client");
|
|
15603
|
-
}
|
|
15604
|
-
var webSocketPromise = null;
|
|
15605
|
-
async function importWebSocket() {
|
|
15606
|
-
if (webSocketPromise !== null) {
|
|
15607
|
-
return webSocketPromise;
|
|
15608
|
-
}
|
|
15609
|
-
webSocketPromise = (async () => {
|
|
15610
|
-
let _WebSocket;
|
|
15611
|
-
if (typeof WebSocket !== "undefined") {
|
|
15612
|
-
_WebSocket = WebSocket;
|
|
15613
|
-
} else {
|
|
15614
|
-
try {
|
|
15615
|
-
const moduleName = "ws";
|
|
15616
|
-
const ws = await import(
|
|
15617
|
-
/* webpackIgnore: true */
|
|
15618
|
-
moduleName
|
|
15619
|
-
);
|
|
15620
|
-
_WebSocket = ws.default;
|
|
15621
|
-
logger().debug("using websocket from npm");
|
|
15622
|
-
} catch {
|
|
15623
|
-
_WebSocket = class MockWebSocket {
|
|
15624
|
-
constructor() {
|
|
15625
|
-
throw new Error(
|
|
15626
|
-
'WebSocket support requires installing the "ws" peer dependency.'
|
|
15627
|
-
);
|
|
15628
|
-
}
|
|
15629
|
-
};
|
|
15630
|
-
logger().debug("using mock websocket");
|
|
15631
|
-
}
|
|
15632
|
-
}
|
|
15633
|
-
return _WebSocket;
|
|
15634
|
-
})();
|
|
15635
|
-
return webSocketPromise;
|
|
15636
|
-
}
|
|
15637
|
-
|
|
15638
|
-
// ../rivetkit/dist/tsup/chunk-BYFMEJVI.js
|
|
15638
|
+
// ../rivetkit/dist/tsup/chunk-2TWGN5HF.js
|
|
15639
15639
|
var import_invariant2 = __toESM(require_invariant(), 1);
|
|
15640
15640
|
|
|
15641
15641
|
// ../../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
|
|
@@ -15813,7 +15813,7 @@ function createVersionedDataHandler(config3) {
|
|
|
15813
15813
|
return new VersionedDataHandler(config3);
|
|
15814
15814
|
}
|
|
15815
15815
|
|
|
15816
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
15816
|
+
// ../rivetkit/dist/tsup/chunk-2TWGN5HF.js
|
|
15817
15817
|
var import_invariant3 = __toESM(require_invariant(), 1);
|
|
15818
15818
|
var import_invariant4 = __toESM(require_invariant(), 1);
|
|
15819
15819
|
var PATH_CONNECT = "/connect";
|
|
@@ -21597,7 +21597,7 @@ function apiActorToOutput(actor2) {
|
|
|
21597
21597
|
};
|
|
21598
21598
|
}
|
|
21599
21599
|
|
|
21600
|
-
// ../rivetkit/dist/tsup/chunk-
|
|
21600
|
+
// ../rivetkit/dist/tsup/chunk-TRBPWMS6.js
|
|
21601
21601
|
var nativeStateTransactionOpeners = /* @__PURE__ */ new WeakMap();
|
|
21602
21602
|
var nativeStateTransactionClientBinders = /* @__PURE__ */ new WeakMap();
|
|
21603
21603
|
function registerNativeStateTransactionOpener(provider, opener) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rivetkit/supabase",
|
|
3
|
-
"version": "2.3.15
|
|
3
|
+
"version": "2.3.15",
|
|
4
4
|
"description": "Supabase Edge Functions integration for RivetKit actors",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"check-edge-closure": "node ../../../scripts/ci/check-edge-native-closure.mjs"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@rivetkit/rivetkit-wasm": "2.3.15
|
|
42
|
+
"@rivetkit/rivetkit-wasm": "2.3.15",
|
|
43
43
|
"cbor-x": "^1.6.0",
|
|
44
44
|
"pino": "^9.5.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@size-limit/file": "^11.1.6",
|
|
48
48
|
"@types/node": "^22.0.0",
|
|
49
|
-
"rivetkit": "2.3.15
|
|
49
|
+
"rivetkit": "2.3.15",
|
|
50
50
|
"size-limit": "^11.1.6",
|
|
51
51
|
"tsup": "^8.4.0",
|
|
52
52
|
"typescript": "^5.5.2"
|