@palbase/backend 5.1.0 → 5.2.0
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/db/index.d.cts +2 -2
- package/dist/db/index.d.ts +2 -2
- package/dist/{endpoint-BEHjfvFH.d.cts → endpoint-B3uVK6OL.d.cts} +56 -1
- package/dist/{endpoint-BEHjfvFH.d.ts → endpoint-B3uVK6OL.d.ts} +56 -1
- package/dist/{index-mr3Co63T.d.cts → index-BAEWl60b.d.cts} +1 -1
- package/dist/{index-BTVdhfsb.d.ts → index-D9uLjEhB.d.ts} +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js.map +1 -1
- package/dist/test/index.cjs +6 -1
- package/dist/test/index.cjs.map +1 -1
- package/dist/test/index.d.cts +1 -1
- package/dist/test/index.d.ts +1 -1
- package/dist/test/index.js +6 -1
- package/dist/test/index.js.map +1 -1
- package/package.json +1 -1
package/dist/db/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as ColumnBuilder, a as ColumnDef, b as ColumnMap, c as ColumnType, d as EXTENSION_DEPENDENCIES, e as EnvServiceDatabase, E as EnvTypedDatabase, I as InsertShape, O as OnDeleteAction, P as PALBASE_EXTENSIONS, i as PalbaseExtension, j as PolicyBuilder, k as PolicyCommand, l as PolicyDef, m as PolicyMode, R as RowShape, S as SchemaDef, n as SchemaInput, T as TableDef, o as TableInput, p as TypedDB, q as TypedTable, r as TypedTx, s as boolean, t as defineSchema, u as enumType, v as integer, w as isPalbaseExtension, x as jsonb, y as makeTypedDB, z as policy, A as text, B as timestamp, D as uuid } from '../index-
|
|
1
|
+
export { C as ColumnBuilder, a as ColumnDef, b as ColumnMap, c as ColumnType, d as EXTENSION_DEPENDENCIES, e as EnvServiceDatabase, E as EnvTypedDatabase, I as InsertShape, O as OnDeleteAction, P as PALBASE_EXTENSIONS, i as PalbaseExtension, j as PolicyBuilder, k as PolicyCommand, l as PolicyDef, m as PolicyMode, R as RowShape, S as SchemaDef, n as SchemaInput, T as TableDef, o as TableInput, p as TypedDB, q as TypedTable, r as TypedTx, s as boolean, t as defineSchema, u as enumType, v as integer, w as isPalbaseExtension, x as jsonb, y as makeTypedDB, z as policy, A as text, B as timestamp, D as uuid } from '../index-BAEWl60b.cjs';
|
|
2
2
|
import './env.cjs';
|
|
3
|
-
import '../endpoint-
|
|
3
|
+
import '../endpoint-B3uVK6OL.cjs';
|
|
4
4
|
import 'zod';
|
package/dist/db/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as ColumnBuilder, a as ColumnDef, b as ColumnMap, c as ColumnType, d as EXTENSION_DEPENDENCIES, e as EnvServiceDatabase, E as EnvTypedDatabase, I as InsertShape, O as OnDeleteAction, P as PALBASE_EXTENSIONS, i as PalbaseExtension, j as PolicyBuilder, k as PolicyCommand, l as PolicyDef, m as PolicyMode, R as RowShape, S as SchemaDef, n as SchemaInput, T as TableDef, o as TableInput, p as TypedDB, q as TypedTable, r as TypedTx, s as boolean, t as defineSchema, u as enumType, v as integer, w as isPalbaseExtension, x as jsonb, y as makeTypedDB, z as policy, A as text, B as timestamp, D as uuid } from '../index-
|
|
1
|
+
export { C as ColumnBuilder, a as ColumnDef, b as ColumnMap, c as ColumnType, d as EXTENSION_DEPENDENCIES, e as EnvServiceDatabase, E as EnvTypedDatabase, I as InsertShape, O as OnDeleteAction, P as PALBASE_EXTENSIONS, i as PalbaseExtension, j as PolicyBuilder, k as PolicyCommand, l as PolicyDef, m as PolicyMode, R as RowShape, S as SchemaDef, n as SchemaInput, T as TableDef, o as TableInput, p as TypedDB, q as TypedTable, r as TypedTx, s as boolean, t as defineSchema, u as enumType, v as integer, w as isPalbaseExtension, x as jsonb, y as makeTypedDB, z as policy, A as text, B as timestamp, D as uuid } from '../index-D9uLjEhB.js';
|
|
2
2
|
import './env.js';
|
|
3
|
-
import '../endpoint-
|
|
3
|
+
import '../endpoint-B3uVK6OL.js';
|
|
4
4
|
import 'zod';
|
|
@@ -245,6 +245,45 @@ interface PalbaseFlag {
|
|
|
245
245
|
enabled: boolean;
|
|
246
246
|
variant?: PalbaseFlagVariant;
|
|
247
247
|
}
|
|
248
|
+
/**
|
|
249
|
+
* Any JSON value a feature flag (or per-user override) can hold once resolved.
|
|
250
|
+
* Mirrors the wire shape the user-flags module stores and returns.
|
|
251
|
+
*/
|
|
252
|
+
type PalbaseFlagValue = boolean | number | string | null | PalbaseFlagValue[] | {
|
|
253
|
+
[key: string]: PalbaseFlagValue;
|
|
254
|
+
};
|
|
255
|
+
/** Where a resolved flag value came from. */
|
|
256
|
+
type PalbaseFlagSource = "system" | "user";
|
|
257
|
+
/** Result of {@link PalbaseFlagsClient.setOverrideForUser}. */
|
|
258
|
+
interface PalbaseSetOverrideResult {
|
|
259
|
+
key: string;
|
|
260
|
+
value: PalbaseFlagValue;
|
|
261
|
+
source: PalbaseFlagSource;
|
|
262
|
+
}
|
|
263
|
+
/** Result of {@link PalbaseFlagsClient.setOverridesForUser}. */
|
|
264
|
+
interface PalbaseSetOverridesResult {
|
|
265
|
+
values: Record<string, PalbaseFlagValue>;
|
|
266
|
+
}
|
|
267
|
+
/** Result of {@link PalbaseFlagsClient.clearOverrideForUser} — `value` is the
|
|
268
|
+
* system default the user falls back to. */
|
|
269
|
+
interface PalbaseClearOverrideResult {
|
|
270
|
+
key: string;
|
|
271
|
+
value: PalbaseFlagValue;
|
|
272
|
+
source: PalbaseFlagSource;
|
|
273
|
+
}
|
|
274
|
+
/** Result of {@link PalbaseFlagsClient.clearAllOverridesForUser}. */
|
|
275
|
+
interface PalbaseClearAllOverridesResult {
|
|
276
|
+
deleted: number;
|
|
277
|
+
}
|
|
278
|
+
/** One cross-user operation for {@link PalbaseFlagsClient.batchSetOverrides}. */
|
|
279
|
+
interface PalbaseBatchOverrideOperation {
|
|
280
|
+
userId: string;
|
|
281
|
+
values: Record<string, PalbaseFlagValue>;
|
|
282
|
+
}
|
|
283
|
+
/** Result of {@link PalbaseFlagsClient.batchSetOverrides}. */
|
|
284
|
+
interface PalbaseBatchSetOverridesResult {
|
|
285
|
+
applied: number;
|
|
286
|
+
}
|
|
248
287
|
/** File object returned by storage operations. */
|
|
249
288
|
interface PalbaseFileObject {
|
|
250
289
|
name: string;
|
|
@@ -977,6 +1016,22 @@ interface PalbaseFlagsClient {
|
|
|
977
1016
|
getVariant(flagName: string, context?: PalbaseFlagContext): Promise<PalbaseResult<PalbaseFlagVariant>>;
|
|
978
1017
|
/** Get all flags for the project. */
|
|
979
1018
|
getAll(context?: PalbaseFlagContext): Promise<PalbaseResult<PalbaseFlag[]>>;
|
|
1019
|
+
/**
|
|
1020
|
+
* Set (or replace) a single feature-flag override for one user. The override
|
|
1021
|
+
* shadows the project (system) default for that user until cleared.
|
|
1022
|
+
*
|
|
1023
|
+
* @example
|
|
1024
|
+
* await Flags.setOverrideForUser("user_123", "new_checkout", true);
|
|
1025
|
+
*/
|
|
1026
|
+
setOverrideForUser(userId: string, key: string, value: PalbaseFlagValue): Promise<PalbaseResult<PalbaseSetOverrideResult>>;
|
|
1027
|
+
/** Set multiple overrides for one user in a single call. */
|
|
1028
|
+
setOverridesForUser(userId: string, values: Record<string, PalbaseFlagValue>): Promise<PalbaseResult<PalbaseSetOverridesResult>>;
|
|
1029
|
+
/** Clear one override for a user, restoring the project (system) default. */
|
|
1030
|
+
clearOverrideForUser(userId: string, key: string): Promise<PalbaseResult<PalbaseClearOverrideResult>>;
|
|
1031
|
+
/** Clear all overrides for a user, restoring project (system) defaults. */
|
|
1032
|
+
clearAllOverridesForUser(userId: string): Promise<PalbaseResult<PalbaseClearAllOverridesResult>>;
|
|
1033
|
+
/** Apply override writes across many users in one request (max 1000 ops). */
|
|
1034
|
+
batchSetOverrides(operations: ReadonlyArray<PalbaseBatchOverrideOperation>): Promise<PalbaseResult<PalbaseBatchSetOverridesResult>>;
|
|
980
1035
|
}
|
|
981
1036
|
/**
|
|
982
1037
|
* Push sub-client surface (server-only: fan-out to users / topics).
|
|
@@ -1471,4 +1526,4 @@ type Middleware = (ctx: MiddlewareContext, next: () => Promise<void>) => Promise
|
|
|
1471
1526
|
*/
|
|
1472
1527
|
type AuthSpec = boolean | Partial<AuthConfig>;
|
|
1473
1528
|
|
|
1474
|
-
export { type
|
|
1529
|
+
export { type PalbaseCreateLinkParams as $, type AuthSpec as A, BadRequest as B, type CacheClient as C, type DBClient as D, type ErrorDef as E, type FileContext as F, type PalbaseBatchSetOverridesResult as G, HttpError as H, type PalbaseBindDeviceParams as I, type PalbaseBucketClient as J, type PalbaseClearAllOverridesResult as K, type Logger as L, type Middleware as M, NotFound as N, type PalbaseClearOverrideResult as O, type PBRequest as P, type QueueClient as Q, type RateLimitConfig as R, type PalbaseCmsClient as S, type PalbaseCmsFindOneOptions as T, type User as U, type PalbaseCmsFindOptions as V, type PalbaseCohortQueryInput as W, type PalbaseCohortResult as X, type PalbaseCollectionRef as Y, type PalbaseCountQueryInput as Z, type PalbaseCountResult as _, type PalbaseModuleClients as a, type PalbaseUser as a$, type PalbaseDeviceInfo as a0, type PalbaseDeviceTokenView as a1, type PalbaseDocumentRef as a2, type PalbaseDocumentSnapshot as a3, type PalbaseEmailClient as a4, type PalbaseEmailSendParams as a5, type PalbaseEmailSendResponse as a6, type PalbaseEventNamesResult as a7, type PalbaseEventsQueryInput as a8, type PalbaseEventsResult as a9, type PalbaseMultiChannelResponse as aA, type PalbaseOverviewResult as aB, type PalbasePreferences as aC, type PalbasePreferencesClient as aD, type PalbasePublicUrlResponse as aE, type PalbasePushClient as aF, type PalbasePushSendParams as aG, type PalbasePushSendResponse as aH, type PalbaseQrCodeOptions as aI, type PalbaseQuerySnapshot as aJ, type PalbaseRealtimeChannel as aK, type PalbaseRealtimeClient as aL, type PalbaseRealtimeMessage as aM, type PalbaseRegisterDeviceParams as aN, type PalbaseResult as aO, type PalbaseRetentionQueryInput as aP, type PalbaseRetentionResult as aQ, type PalbaseSession as aR, type PalbaseSetOverrideResult as aS, type PalbaseSetOverridesResult as aT, type PalbaseSignedUrlResponse as aU, type PalbaseSmsClient as aV, type PalbaseSmsSendParams as aW, type PalbaseSmsSendResponse as aX, type PalbaseTransformOptions as aY, type PalbaseUpdateLinkParams as aZ, type PalbaseUploadOptions as a_, type PalbaseFileObject as aa, type PalbaseFlag as ab, type PalbaseFlagContext as ac, type PalbaseFlagSource as ad, type PalbaseFlagValue as ae, type PalbaseFlagVariant as af, type PalbaseFunctionsClient as ag, type PalbaseFunnelQueryInput as ah, type PalbaseFunnelResult as ai, type PalbaseIdentifyTraits as aj, type PalbaseInboxClient as ak, type PalbaseInboxListOptions as al, type PalbaseInboxListResult as am, type PalbaseInboxMessage as an, type PalbaseInboxSendParams as ao, type PalbaseInboxSendResponse as ap, type PalbaseInitialLink as aq, type PalbaseInvokeOptions as ar, type PalbaseLink as as, type PalbaseLinkAnalytics as at, type PalbaseLinkDetails as au, type PalbaseLinksClient as av, type PalbaseListLinksOptions as aw, type PalbaseListLinksResult as ax, type PalbaseListOptions as ay, type PalbaseMatchParams as az, type PalbaseDocsClient as b, type PalbaseUserDetailResult as b0, type PalbaseUsersQueryInput as b1, type PalbaseUsersResult as b2, type PalbaseVerifyRequestSignatureParams as b3, type PalbaseWhereOperator as b4, TooManyRequests as b5, type TxClient as b6, Unauthorized as b7, defineMiddleware as b8, type PalbaseFlagsClient as c, type PalbaseNotificationsClient as d, type PalbaseStorageClient as e, type AuthConfig as f, type ClientInfo as g, Conflict as h, type DBOps as i, type ErrorMap as j, type ErrorThrowers as k, Forbidden as l, type HttpMethod as m, type MiddlewareContext as n, type MiddlewareHandler as o, PalError as p, type PalbaseAnalyticsClient as q, type PalbaseAnalyticsManagementNamespace as r, type PalbaseAnalyticsProperties as s, type PalbaseAnalyticsQueryNamespace as t, type PalbaseAttestAndroidParams as u, type PalbaseAttestAndroidResult as v, type PalbaseAttestiOSParams as w, type PalbaseAttestiOSResult as x, type PalbaseAuthClient as y, type PalbaseBatchOverrideOperation as z };
|
|
@@ -245,6 +245,45 @@ interface PalbaseFlag {
|
|
|
245
245
|
enabled: boolean;
|
|
246
246
|
variant?: PalbaseFlagVariant;
|
|
247
247
|
}
|
|
248
|
+
/**
|
|
249
|
+
* Any JSON value a feature flag (or per-user override) can hold once resolved.
|
|
250
|
+
* Mirrors the wire shape the user-flags module stores and returns.
|
|
251
|
+
*/
|
|
252
|
+
type PalbaseFlagValue = boolean | number | string | null | PalbaseFlagValue[] | {
|
|
253
|
+
[key: string]: PalbaseFlagValue;
|
|
254
|
+
};
|
|
255
|
+
/** Where a resolved flag value came from. */
|
|
256
|
+
type PalbaseFlagSource = "system" | "user";
|
|
257
|
+
/** Result of {@link PalbaseFlagsClient.setOverrideForUser}. */
|
|
258
|
+
interface PalbaseSetOverrideResult {
|
|
259
|
+
key: string;
|
|
260
|
+
value: PalbaseFlagValue;
|
|
261
|
+
source: PalbaseFlagSource;
|
|
262
|
+
}
|
|
263
|
+
/** Result of {@link PalbaseFlagsClient.setOverridesForUser}. */
|
|
264
|
+
interface PalbaseSetOverridesResult {
|
|
265
|
+
values: Record<string, PalbaseFlagValue>;
|
|
266
|
+
}
|
|
267
|
+
/** Result of {@link PalbaseFlagsClient.clearOverrideForUser} — `value` is the
|
|
268
|
+
* system default the user falls back to. */
|
|
269
|
+
interface PalbaseClearOverrideResult {
|
|
270
|
+
key: string;
|
|
271
|
+
value: PalbaseFlagValue;
|
|
272
|
+
source: PalbaseFlagSource;
|
|
273
|
+
}
|
|
274
|
+
/** Result of {@link PalbaseFlagsClient.clearAllOverridesForUser}. */
|
|
275
|
+
interface PalbaseClearAllOverridesResult {
|
|
276
|
+
deleted: number;
|
|
277
|
+
}
|
|
278
|
+
/** One cross-user operation for {@link PalbaseFlagsClient.batchSetOverrides}. */
|
|
279
|
+
interface PalbaseBatchOverrideOperation {
|
|
280
|
+
userId: string;
|
|
281
|
+
values: Record<string, PalbaseFlagValue>;
|
|
282
|
+
}
|
|
283
|
+
/** Result of {@link PalbaseFlagsClient.batchSetOverrides}. */
|
|
284
|
+
interface PalbaseBatchSetOverridesResult {
|
|
285
|
+
applied: number;
|
|
286
|
+
}
|
|
248
287
|
/** File object returned by storage operations. */
|
|
249
288
|
interface PalbaseFileObject {
|
|
250
289
|
name: string;
|
|
@@ -977,6 +1016,22 @@ interface PalbaseFlagsClient {
|
|
|
977
1016
|
getVariant(flagName: string, context?: PalbaseFlagContext): Promise<PalbaseResult<PalbaseFlagVariant>>;
|
|
978
1017
|
/** Get all flags for the project. */
|
|
979
1018
|
getAll(context?: PalbaseFlagContext): Promise<PalbaseResult<PalbaseFlag[]>>;
|
|
1019
|
+
/**
|
|
1020
|
+
* Set (or replace) a single feature-flag override for one user. The override
|
|
1021
|
+
* shadows the project (system) default for that user until cleared.
|
|
1022
|
+
*
|
|
1023
|
+
* @example
|
|
1024
|
+
* await Flags.setOverrideForUser("user_123", "new_checkout", true);
|
|
1025
|
+
*/
|
|
1026
|
+
setOverrideForUser(userId: string, key: string, value: PalbaseFlagValue): Promise<PalbaseResult<PalbaseSetOverrideResult>>;
|
|
1027
|
+
/** Set multiple overrides for one user in a single call. */
|
|
1028
|
+
setOverridesForUser(userId: string, values: Record<string, PalbaseFlagValue>): Promise<PalbaseResult<PalbaseSetOverridesResult>>;
|
|
1029
|
+
/** Clear one override for a user, restoring the project (system) default. */
|
|
1030
|
+
clearOverrideForUser(userId: string, key: string): Promise<PalbaseResult<PalbaseClearOverrideResult>>;
|
|
1031
|
+
/** Clear all overrides for a user, restoring project (system) defaults. */
|
|
1032
|
+
clearAllOverridesForUser(userId: string): Promise<PalbaseResult<PalbaseClearAllOverridesResult>>;
|
|
1033
|
+
/** Apply override writes across many users in one request (max 1000 ops). */
|
|
1034
|
+
batchSetOverrides(operations: ReadonlyArray<PalbaseBatchOverrideOperation>): Promise<PalbaseResult<PalbaseBatchSetOverridesResult>>;
|
|
980
1035
|
}
|
|
981
1036
|
/**
|
|
982
1037
|
* Push sub-client surface (server-only: fan-out to users / topics).
|
|
@@ -1471,4 +1526,4 @@ type Middleware = (ctx: MiddlewareContext, next: () => Promise<void>) => Promise
|
|
|
1471
1526
|
*/
|
|
1472
1527
|
type AuthSpec = boolean | Partial<AuthConfig>;
|
|
1473
1528
|
|
|
1474
|
-
export { type
|
|
1529
|
+
export { type PalbaseCreateLinkParams as $, type AuthSpec as A, BadRequest as B, type CacheClient as C, type DBClient as D, type ErrorDef as E, type FileContext as F, type PalbaseBatchSetOverridesResult as G, HttpError as H, type PalbaseBindDeviceParams as I, type PalbaseBucketClient as J, type PalbaseClearAllOverridesResult as K, type Logger as L, type Middleware as M, NotFound as N, type PalbaseClearOverrideResult as O, type PBRequest as P, type QueueClient as Q, type RateLimitConfig as R, type PalbaseCmsClient as S, type PalbaseCmsFindOneOptions as T, type User as U, type PalbaseCmsFindOptions as V, type PalbaseCohortQueryInput as W, type PalbaseCohortResult as X, type PalbaseCollectionRef as Y, type PalbaseCountQueryInput as Z, type PalbaseCountResult as _, type PalbaseModuleClients as a, type PalbaseUser as a$, type PalbaseDeviceInfo as a0, type PalbaseDeviceTokenView as a1, type PalbaseDocumentRef as a2, type PalbaseDocumentSnapshot as a3, type PalbaseEmailClient as a4, type PalbaseEmailSendParams as a5, type PalbaseEmailSendResponse as a6, type PalbaseEventNamesResult as a7, type PalbaseEventsQueryInput as a8, type PalbaseEventsResult as a9, type PalbaseMultiChannelResponse as aA, type PalbaseOverviewResult as aB, type PalbasePreferences as aC, type PalbasePreferencesClient as aD, type PalbasePublicUrlResponse as aE, type PalbasePushClient as aF, type PalbasePushSendParams as aG, type PalbasePushSendResponse as aH, type PalbaseQrCodeOptions as aI, type PalbaseQuerySnapshot as aJ, type PalbaseRealtimeChannel as aK, type PalbaseRealtimeClient as aL, type PalbaseRealtimeMessage as aM, type PalbaseRegisterDeviceParams as aN, type PalbaseResult as aO, type PalbaseRetentionQueryInput as aP, type PalbaseRetentionResult as aQ, type PalbaseSession as aR, type PalbaseSetOverrideResult as aS, type PalbaseSetOverridesResult as aT, type PalbaseSignedUrlResponse as aU, type PalbaseSmsClient as aV, type PalbaseSmsSendParams as aW, type PalbaseSmsSendResponse as aX, type PalbaseTransformOptions as aY, type PalbaseUpdateLinkParams as aZ, type PalbaseUploadOptions as a_, type PalbaseFileObject as aa, type PalbaseFlag as ab, type PalbaseFlagContext as ac, type PalbaseFlagSource as ad, type PalbaseFlagValue as ae, type PalbaseFlagVariant as af, type PalbaseFunctionsClient as ag, type PalbaseFunnelQueryInput as ah, type PalbaseFunnelResult as ai, type PalbaseIdentifyTraits as aj, type PalbaseInboxClient as ak, type PalbaseInboxListOptions as al, type PalbaseInboxListResult as am, type PalbaseInboxMessage as an, type PalbaseInboxSendParams as ao, type PalbaseInboxSendResponse as ap, type PalbaseInitialLink as aq, type PalbaseInvokeOptions as ar, type PalbaseLink as as, type PalbaseLinkAnalytics as at, type PalbaseLinkDetails as au, type PalbaseLinksClient as av, type PalbaseListLinksOptions as aw, type PalbaseListLinksResult as ax, type PalbaseListOptions as ay, type PalbaseMatchParams as az, type PalbaseDocsClient as b, type PalbaseUserDetailResult as b0, type PalbaseUsersQueryInput as b1, type PalbaseUsersResult as b2, type PalbaseVerifyRequestSignatureParams as b3, type PalbaseWhereOperator as b4, TooManyRequests as b5, type TxClient as b6, Unauthorized as b7, defineMiddleware as b8, type PalbaseFlagsClient as c, type PalbaseNotificationsClient as d, type PalbaseStorageClient as e, type AuthConfig as f, type ClientInfo as g, Conflict as h, type DBOps as i, type ErrorMap as j, type ErrorThrowers as k, Forbidden as l, type HttpMethod as m, type MiddlewareContext as n, type MiddlewareHandler as o, PalError as p, type PalbaseAnalyticsClient as q, type PalbaseAnalyticsManagementNamespace as r, type PalbaseAnalyticsProperties as s, type PalbaseAnalyticsQueryNamespace as t, type PalbaseAttestAndroidParams as u, type PalbaseAttestAndroidResult as v, type PalbaseAttestiOSParams as w, type PalbaseAttestiOSResult as x, type PalbaseAuthClient as y, type PalbaseBatchOverrideOperation as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tables, TableTypes } from './db/env.cjs';
|
|
2
|
-
import { D as DBClient } from './endpoint-
|
|
2
|
+
import { D as DBClient } from './endpoint-B3uVK6OL.cjs';
|
|
3
3
|
|
|
4
4
|
/** On delete action for foreign key references. */
|
|
5
5
|
type OnDeleteAction = 'cascade' | 'set null' | 'restrict' | 'no action';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tables, TableTypes } from './db/env.js';
|
|
2
|
-
import { D as DBClient } from './endpoint-
|
|
2
|
+
import { D as DBClient } from './endpoint-B3uVK6OL.js';
|
|
3
3
|
|
|
4
4
|
/** On delete action for foreign key references. */
|
|
5
5
|
type OnDeleteAction = 'cascade' | 'set null' | 'restrict' | 'no action';
|