@bitfab/sdk 0.36.0 → 0.36.1
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/{chunk-4YTIVUYX.js → chunk-6ZBZBR5K.js} +2 -2
- package/dist/chunk-6ZBZBR5K.js.map +1 -0
- package/dist/{chunk-JECWMVJG.js → chunk-HD4DRDRE.js} +21 -9
- package/dist/chunk-HD4DRDRE.js.map +1 -0
- package/dist/index.cjs +19 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -5
- package/dist/index.d.ts +17 -5
- package/dist/index.js +2 -2
- package/dist/node.cjs +19 -7
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +2 -2
- package/dist/{replay-CVMULH7T.js → replay-ZR4KIZIB.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-4YTIVUYX.js.map +0 -1
- package/dist/chunk-JECWMVJG.js.map +0 -1
- /package/dist/{replay-CVMULH7T.js.map → replay-ZR4KIZIB.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -266,9 +266,11 @@ interface ReplayContext {
|
|
|
266
266
|
* obtains `databaseUrl` for this item. Reported on the trace completion inside
|
|
267
267
|
* `db_snapshot_usage` so the server can distinguish "branch was
|
|
268
268
|
* provisioned and exposed" from "branch URL was actually consumed".
|
|
269
|
-
*
|
|
270
|
-
* other means (e.g. a process-isolated runner writing an env
|
|
271
|
-
* must
|
|
269
|
+
* Only an explicit `databaseUrl` read may set it. A path that hands the URL
|
|
270
|
+
* over by other means (e.g. a process-isolated runner writing an env
|
|
271
|
+
* overlay) must leave it alone: setting it there would make every such
|
|
272
|
+
* replay report `accessed` for free, and the flag would stop separating
|
|
273
|
+
* "branch was used" from "branch was offered".
|
|
272
274
|
*/
|
|
273
275
|
dbSnapshotAccessed?: boolean;
|
|
274
276
|
}
|
|
@@ -1393,10 +1395,20 @@ interface ReplayResult<T> {
|
|
|
1393
1395
|
* exposed directly here so customer code never sees the word.
|
|
1394
1396
|
*/
|
|
1395
1397
|
|
|
1396
|
-
declare class ReplayBranch {
|
|
1398
|
+
declare class ReplayBranch implements Omit<DbBranchLease, "databaseUrl"> {
|
|
1397
1399
|
#private;
|
|
1400
|
+
/** The provider's own id for this branch, e.g. for correlating with its console. */
|
|
1401
|
+
readonly neonBranchId: string;
|
|
1402
|
+
/** Env var name the customer's app reads, e.g. `DATABASE_URL`. */
|
|
1403
|
+
readonly envKey: string;
|
|
1398
1404
|
/** When this branch's URL stops being valid. ISO-8601. */
|
|
1399
1405
|
readonly expiresAt: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* The instant this branch is pinned to: the source trace's wall clock, read
|
|
1408
|
+
* just before the traced function ran. Compare it against the trace you meant
|
|
1409
|
+
* to replay to confirm the branch is the right point in history.
|
|
1410
|
+
*/
|
|
1411
|
+
readonly snapshotTimestamp?: string;
|
|
1400
1412
|
/** Deep link to the branch in the provider console, if available. */
|
|
1401
1413
|
readonly providerConsoleUrl?: string;
|
|
1402
1414
|
/**
|
|
@@ -2336,7 +2348,7 @@ declare class BitfabFunction {
|
|
|
2336
2348
|
/**
|
|
2337
2349
|
* SDK version from package.json (injected at build time)
|
|
2338
2350
|
*/
|
|
2339
|
-
declare const __version__ = "0.36.
|
|
2351
|
+
declare const __version__ = "0.36.1";
|
|
2340
2352
|
|
|
2341
2353
|
/**
|
|
2342
2354
|
* Constants for the Bitfab SDK.
|
package/dist/index.d.ts
CHANGED
|
@@ -266,9 +266,11 @@ interface ReplayContext {
|
|
|
266
266
|
* obtains `databaseUrl` for this item. Reported on the trace completion inside
|
|
267
267
|
* `db_snapshot_usage` so the server can distinguish "branch was
|
|
268
268
|
* provisioned and exposed" from "branch URL was actually consumed".
|
|
269
|
-
*
|
|
270
|
-
* other means (e.g. a process-isolated runner writing an env
|
|
271
|
-
* must
|
|
269
|
+
* Only an explicit `databaseUrl` read may set it. A path that hands the URL
|
|
270
|
+
* over by other means (e.g. a process-isolated runner writing an env
|
|
271
|
+
* overlay) must leave it alone: setting it there would make every such
|
|
272
|
+
* replay report `accessed` for free, and the flag would stop separating
|
|
273
|
+
* "branch was used" from "branch was offered".
|
|
272
274
|
*/
|
|
273
275
|
dbSnapshotAccessed?: boolean;
|
|
274
276
|
}
|
|
@@ -1393,10 +1395,20 @@ interface ReplayResult<T> {
|
|
|
1393
1395
|
* exposed directly here so customer code never sees the word.
|
|
1394
1396
|
*/
|
|
1395
1397
|
|
|
1396
|
-
declare class ReplayBranch {
|
|
1398
|
+
declare class ReplayBranch implements Omit<DbBranchLease, "databaseUrl"> {
|
|
1397
1399
|
#private;
|
|
1400
|
+
/** The provider's own id for this branch, e.g. for correlating with its console. */
|
|
1401
|
+
readonly neonBranchId: string;
|
|
1402
|
+
/** Env var name the customer's app reads, e.g. `DATABASE_URL`. */
|
|
1403
|
+
readonly envKey: string;
|
|
1398
1404
|
/** When this branch's URL stops being valid. ISO-8601. */
|
|
1399
1405
|
readonly expiresAt: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* The instant this branch is pinned to: the source trace's wall clock, read
|
|
1408
|
+
* just before the traced function ran. Compare it against the trace you meant
|
|
1409
|
+
* to replay to confirm the branch is the right point in history.
|
|
1410
|
+
*/
|
|
1411
|
+
readonly snapshotTimestamp?: string;
|
|
1400
1412
|
/** Deep link to the branch in the provider console, if available. */
|
|
1401
1413
|
readonly providerConsoleUrl?: string;
|
|
1402
1414
|
/**
|
|
@@ -2336,7 +2348,7 @@ declare class BitfabFunction {
|
|
|
2336
2348
|
/**
|
|
2337
2349
|
* SDK version from package.json (injected at build time)
|
|
2338
2350
|
*/
|
|
2339
|
-
declare const __version__ = "0.36.
|
|
2351
|
+
declare const __version__ = "0.36.1";
|
|
2340
2352
|
|
|
2341
2353
|
/**
|
|
2342
2354
|
* Constants for the Bitfab SDK.
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
getCurrentReplayBranch,
|
|
12
12
|
getCurrentSpan,
|
|
13
13
|
getCurrentTrace
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-HD4DRDRE.js";
|
|
15
15
|
import {
|
|
16
16
|
BITFAB_PROGRESS_PREFIX,
|
|
17
17
|
BitfabError,
|
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
__version__,
|
|
21
21
|
flushTraces,
|
|
22
22
|
reportReplayProgress
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-6ZBZBR5K.js";
|
|
24
24
|
export {
|
|
25
25
|
BITFAB_PROGRESS_PREFIX,
|
|
26
26
|
Bitfab,
|
package/dist/node.cjs
CHANGED
|
@@ -88,7 +88,7 @@ var __version__;
|
|
|
88
88
|
var init_version_generated = __esm({
|
|
89
89
|
"src/version.generated.ts"() {
|
|
90
90
|
"use strict";
|
|
91
|
-
__version__ = "0.36.
|
|
91
|
+
__version__ = "0.36.1";
|
|
92
92
|
}
|
|
93
93
|
});
|
|
94
94
|
|
|
@@ -4195,12 +4195,20 @@ var ReplayBranch = class {
|
|
|
4195
4195
|
// context can ride along into a log line or a serialized payload.
|
|
4196
4196
|
__privateAdd(this, _url);
|
|
4197
4197
|
__privateAdd(this, _context);
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4198
|
+
const { databaseUrl, ...exposed } = lease;
|
|
4199
|
+
for (const [key, value] of Object.entries(exposed)) {
|
|
4200
|
+
Object.defineProperty(this, key, {
|
|
4201
|
+
value,
|
|
4202
|
+
enumerable: true,
|
|
4203
|
+
configurable: true
|
|
4204
|
+
});
|
|
4205
|
+
}
|
|
4206
|
+
Object.defineProperty(this, "traceId", {
|
|
4207
|
+
value: traceId,
|
|
4208
|
+
enumerable: true,
|
|
4209
|
+
configurable: true
|
|
4210
|
+
});
|
|
4211
|
+
__privateSet(this, _url, databaseUrl);
|
|
4204
4212
|
__privateSet(this, _context, context);
|
|
4205
4213
|
}
|
|
4206
4214
|
/**
|
|
@@ -5540,6 +5548,7 @@ var Bitfab = class {
|
|
|
5540
5548
|
dbSnapshotUsage: {
|
|
5541
5549
|
neonBranchId: replayCtx.dbBranchLease.neonBranchId,
|
|
5542
5550
|
snapshotTimestamp: replayCtx.dbBranchLease.snapshotTimestamp,
|
|
5551
|
+
region: replayCtx.dbBranchLease.region,
|
|
5543
5552
|
originalTraceId: replayCtx.sourceBitfabTraceId,
|
|
5544
5553
|
accessed: replayCtx.dbSnapshotAccessed === true
|
|
5545
5554
|
}
|
|
@@ -5815,6 +5824,9 @@ var Bitfab = class {
|
|
|
5815
5824
|
...params.dbSnapshotUsage.snapshotTimestamp && {
|
|
5816
5825
|
snapshot_timestamp: params.dbSnapshotUsage.snapshotTimestamp
|
|
5817
5826
|
},
|
|
5827
|
+
...params.dbSnapshotUsage.region && {
|
|
5828
|
+
region: params.dbSnapshotUsage.region
|
|
5829
|
+
},
|
|
5818
5830
|
...params.dbSnapshotUsage.originalTraceId && {
|
|
5819
5831
|
original_trace_id: params.dbSnapshotUsage.originalTraceId,
|
|
5820
5832
|
// Deprecated wire alias, kept so this SDK still reports usage
|