@instantdb/admin
Advanced tools
Comparing version 0.15.0 to 0.15.1
@@ -1,2 +0,2 @@ | ||
import { tx, lookup, i, id, type TransactionChunk, type AuthToken, type Exactly, type User, type Query, type QueryResponse, type InstaQLResponse, type InstaQLParams, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type InstantObject, type InstantEntity, type IInstantDatabase, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type InstantSchemaDef, type InstantUnknownSchema } from "@instantdb/core"; | ||
import { tx, lookup, i, id, type TransactionChunk, type AuthToken, type Exactly, type User, type Query, type QueryResponse, type DoNotUseQueryResponse, type InstaQLQueryParams, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type InstantObject, type InstantEntity, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type DoNotUseInstantSchema, type DoNotUseUnknownSchema } from "@instantdb/core"; | ||
type DebugCheckResult = { | ||
@@ -17,3 +17,3 @@ /** The ID of the record. */ | ||
}; | ||
type InstantConfig<Schema extends InstantSchemaDef<any, any, any>> = { | ||
type DoNotUseConfig<Schema extends DoNotUseInstantSchema<any, any, any>> = { | ||
appId: string; | ||
@@ -24,3 +24,3 @@ adminToken: string; | ||
}; | ||
type InstantConfigFilled<Schema extends InstantSchemaDef<any, any, any>> = InstantConfig<Schema> & { | ||
type DoNotUseFilledConfig<Schema extends DoNotUseInstantSchema<any, any, any>> = DoNotUseConfig<Schema> & { | ||
apiURI: string; | ||
@@ -59,3 +59,7 @@ }; | ||
declare function init<Schema extends {} = {}>(config: Config): InstantAdmin<Schema, false>; | ||
declare function init_experimental<Schema extends InstantSchemaDef<any, any, any> = InstantUnknownSchema>(config: InstantConfig<Schema>): InstantAdminDatabase<Schema>; | ||
declare function init_experimental<Schema extends InstantGraph<any, any, any>, WithCardinalityInference extends boolean = true>(config: Config & { | ||
schema: Schema; | ||
cardinalityInference?: WithCardinalityInference; | ||
}): InstantAdmin<Schema, WithCardinalityInference>; | ||
declare function do_not_use_init_experimental<Schema extends DoNotUseInstantSchema<any, any, any> = DoNotUseUnknownSchema>(config: DoNotUseConfig<Schema>): DoNotUseInstantAdmin<Schema>; | ||
/** | ||
@@ -102,3 +106,3 @@ * | ||
*/ | ||
query: <Q extends Schema extends InstantGraph<any, any> ? InstaQLParams<Schema> : Exactly<Query, Q>>(query: Q) => Promise<QueryResponse<Q, Schema, WithCardinalityInference>>; | ||
query: <Q extends Schema extends InstantGraph<any, any> ? InstaQLQueryParams<Schema> : Exactly<Query, Q>>(query: Q) => Promise<QueryResponse<Q, Schema, WithCardinalityInference>>; | ||
/** | ||
@@ -357,4 +361,4 @@ * Use this to write data! You can create, update, delete, and link objects | ||
*/ | ||
declare class InstantAdminDatabase<Schema extends InstantSchemaDef<any, any, any>> { | ||
config: InstantConfigFilled<Schema>; | ||
declare class DoNotUseInstantAdmin<Schema extends DoNotUseInstantSchema<any, any, any>> { | ||
config: DoNotUseFilledConfig<Schema>; | ||
auth: Auth; | ||
@@ -364,3 +368,3 @@ storage: Storage; | ||
tx: import("@instantdb/core").TxChunk<Schema>; | ||
constructor(_config: InstantConfig<Schema>); | ||
constructor(_config: DoNotUseConfig<Schema>); | ||
/** | ||
@@ -375,3 +379,3 @@ * Sometimes you want to scope queries to a specific user. | ||
*/ | ||
asUser: (opts: ImpersonationOpts) => InstantAdminDatabase<Schema>; | ||
asUser: (opts: ImpersonationOpts) => DoNotUseInstantAdmin<Schema>; | ||
/** | ||
@@ -392,3 +396,3 @@ * Use this to query your data! | ||
*/ | ||
query: <Q extends InstaQLParams<Schema>>(query: Q) => Promise<InstaQLResponse<Schema, Q>>; | ||
query: <Q extends InstaQLQueryParams<Schema>>(query: Q) => Promise<DoNotUseQueryResponse<Q, Schema>>; | ||
/** | ||
@@ -439,6 +443,6 @@ * Use this to write data! You can create, update, delete, and link objects | ||
*/ | ||
debugQuery: <Q extends InstaQLParams<Schema>>(query: Q, opts?: { | ||
debugQuery: <Q extends InstaQLQueryParams<Schema>>(query: Q, opts?: { | ||
rules: any; | ||
}) => Promise<{ | ||
result: InstaQLResponse<Schema, Q>; | ||
result: DoNotUseQueryResponse<Q, Schema>; | ||
checkResults: DebugCheckResult[]; | ||
@@ -468,3 +472,3 @@ }>; | ||
} | ||
export { init, init_experimental, id, tx, lookup, i, type Config, type ImpersonationOpts, type TransactionChunk, type DebugCheckResult, type InstantAdmin, type User, type InstaQLParams, type Query, type QueryResponse, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type IInstantDatabase, type InstantObject, type InstantEntity, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type InstantSchemaDef, type InstantUnknownSchema, }; | ||
export { init, init_experimental, do_not_use_init_experimental, id, tx, lookup, i, type Config, type ImpersonationOpts, type TransactionChunk, type DebugCheckResult, type InstantAdmin, type User, type InstaQLQueryParams, type Query, type QueryResponse, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type InstantObject, type InstantEntity, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type DoNotUseInstantSchema, type DoNotUseUnknownSchema, }; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,2 +18,3 @@ "use strict"; | ||
exports.init_experimental = init_experimental; | ||
exports.do_not_use_init_experimental = do_not_use_init_experimental; | ||
const core_1 = require("@instantdb/core"); | ||
@@ -32,3 +33,3 @@ Object.defineProperty(exports, "tx", { enumerable: true, get: function () { return core_1.tx; } }); | ||
} | ||
function instantConfigWithDefaults(config) { | ||
function doNotUseConfigWithDefaults(config) { | ||
const defaultConfig = { | ||
@@ -115,4 +116,7 @@ apiURI: "https://api.instantdb.com", | ||
function init_experimental(config) { | ||
return new InstantAdminDatabase(config); | ||
return new InstantAdmin(config); | ||
} | ||
function do_not_use_init_experimental(config) { | ||
return new DoNotUseInstantAdmin(config); | ||
} | ||
/** | ||
@@ -519,3 +523,3 @@ * | ||
*/ | ||
class InstantAdminDatabase { | ||
class DoNotUseInstantAdmin { | ||
constructor(_config) { | ||
@@ -533,3 +537,3 @@ this.tx = (0, core_1.txInit)(); | ||
this.asUser = (opts) => { | ||
const newClient = new InstantAdminDatabase(Object.assign({}, this.config)); | ||
const newClient = new DoNotUseInstantAdmin(Object.assign({}, this.config)); | ||
newClient.impersonationOpts = opts; | ||
@@ -659,3 +663,3 @@ return newClient; | ||
}; | ||
this.config = instantConfigWithDefaults(_config); | ||
this.config = doNotUseConfigWithDefaults(_config); | ||
this.auth = new Auth(this.config); | ||
@@ -662,0 +666,0 @@ this.storage = new Storage(this.config); |
@@ -1,2 +0,2 @@ | ||
import { tx, lookup, i, id, type TransactionChunk, type AuthToken, type Exactly, type User, type Query, type QueryResponse, type InstaQLResponse, type InstaQLParams, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type InstantObject, type InstantEntity, type IInstantDatabase, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type InstantSchemaDef, type InstantUnknownSchema } from "@instantdb/core"; | ||
import { tx, lookup, i, id, type TransactionChunk, type AuthToken, type Exactly, type User, type Query, type QueryResponse, type DoNotUseQueryResponse, type InstaQLQueryParams, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type InstantObject, type InstantEntity, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type DoNotUseInstantSchema, type DoNotUseUnknownSchema } from "@instantdb/core"; | ||
type DebugCheckResult = { | ||
@@ -17,3 +17,3 @@ /** The ID of the record. */ | ||
}; | ||
type InstantConfig<Schema extends InstantSchemaDef<any, any, any>> = { | ||
type DoNotUseConfig<Schema extends DoNotUseInstantSchema<any, any, any>> = { | ||
appId: string; | ||
@@ -24,3 +24,3 @@ adminToken: string; | ||
}; | ||
type InstantConfigFilled<Schema extends InstantSchemaDef<any, any, any>> = InstantConfig<Schema> & { | ||
type DoNotUseFilledConfig<Schema extends DoNotUseInstantSchema<any, any, any>> = DoNotUseConfig<Schema> & { | ||
apiURI: string; | ||
@@ -59,3 +59,7 @@ }; | ||
declare function init<Schema extends {} = {}>(config: Config): InstantAdmin<Schema, false>; | ||
declare function init_experimental<Schema extends InstantSchemaDef<any, any, any> = InstantUnknownSchema>(config: InstantConfig<Schema>): InstantAdminDatabase<Schema>; | ||
declare function init_experimental<Schema extends InstantGraph<any, any, any>, WithCardinalityInference extends boolean = true>(config: Config & { | ||
schema: Schema; | ||
cardinalityInference?: WithCardinalityInference; | ||
}): InstantAdmin<Schema, WithCardinalityInference>; | ||
declare function do_not_use_init_experimental<Schema extends DoNotUseInstantSchema<any, any, any> = DoNotUseUnknownSchema>(config: DoNotUseConfig<Schema>): DoNotUseInstantAdmin<Schema>; | ||
/** | ||
@@ -102,3 +106,3 @@ * | ||
*/ | ||
query: <Q extends Schema extends InstantGraph<any, any> ? InstaQLParams<Schema> : Exactly<Query, Q>>(query: Q) => Promise<QueryResponse<Q, Schema, WithCardinalityInference>>; | ||
query: <Q extends Schema extends InstantGraph<any, any> ? InstaQLQueryParams<Schema> : Exactly<Query, Q>>(query: Q) => Promise<QueryResponse<Q, Schema, WithCardinalityInference>>; | ||
/** | ||
@@ -357,4 +361,4 @@ * Use this to write data! You can create, update, delete, and link objects | ||
*/ | ||
declare class InstantAdminDatabase<Schema extends InstantSchemaDef<any, any, any>> { | ||
config: InstantConfigFilled<Schema>; | ||
declare class DoNotUseInstantAdmin<Schema extends DoNotUseInstantSchema<any, any, any>> { | ||
config: DoNotUseFilledConfig<Schema>; | ||
auth: Auth; | ||
@@ -364,3 +368,3 @@ storage: Storage; | ||
tx: import("@instantdb/core").TxChunk<Schema>; | ||
constructor(_config: InstantConfig<Schema>); | ||
constructor(_config: DoNotUseConfig<Schema>); | ||
/** | ||
@@ -375,3 +379,3 @@ * Sometimes you want to scope queries to a specific user. | ||
*/ | ||
asUser: (opts: ImpersonationOpts) => InstantAdminDatabase<Schema>; | ||
asUser: (opts: ImpersonationOpts) => DoNotUseInstantAdmin<Schema>; | ||
/** | ||
@@ -392,3 +396,3 @@ * Use this to query your data! | ||
*/ | ||
query: <Q extends InstaQLParams<Schema>>(query: Q) => Promise<InstaQLResponse<Schema, Q>>; | ||
query: <Q extends InstaQLQueryParams<Schema>>(query: Q) => Promise<DoNotUseQueryResponse<Q, Schema>>; | ||
/** | ||
@@ -439,6 +443,6 @@ * Use this to write data! You can create, update, delete, and link objects | ||
*/ | ||
debugQuery: <Q extends InstaQLParams<Schema>>(query: Q, opts?: { | ||
debugQuery: <Q extends InstaQLQueryParams<Schema>>(query: Q, opts?: { | ||
rules: any; | ||
}) => Promise<{ | ||
result: InstaQLResponse<Schema, Q>; | ||
result: DoNotUseQueryResponse<Q, Schema>; | ||
checkResults: DebugCheckResult[]; | ||
@@ -468,3 +472,3 @@ }>; | ||
} | ||
export { init, init_experimental, id, tx, lookup, i, type Config, type ImpersonationOpts, type TransactionChunk, type DebugCheckResult, type InstantAdmin, type User, type InstaQLParams, type Query, type QueryResponse, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type IInstantDatabase, type InstantObject, type InstantEntity, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type InstantSchemaDef, type InstantUnknownSchema, }; | ||
export { init, init_experimental, do_not_use_init_experimental, id, tx, lookup, i, type Config, type ImpersonationOpts, type TransactionChunk, type DebugCheckResult, type InstantAdmin, type User, type InstaQLQueryParams, type Query, type QueryResponse, type InstantQuery, type InstantQueryResult, type InstantSchema, type InstantSchemaDatabase, type InstantObject, type InstantEntity, type AttrsDefs, type CardinalityKind, type DataAttrDef, type EntitiesDef, type EntitiesWithLinks, type EntityDef, type InstantGraph, type LinkAttrDef, type LinkDef, type LinksDef, type ResolveAttrs, type ValueTypes, type DoNotUseInstantSchema, type DoNotUseUnknownSchema, }; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,3 +19,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
} | ||
function instantConfigWithDefaults(config) { | ||
function doNotUseConfigWithDefaults(config) { | ||
const defaultConfig = { | ||
@@ -102,4 +102,7 @@ apiURI: "https://api.instantdb.com", | ||
function init_experimental(config) { | ||
return new InstantAdminDatabase(config); | ||
return new InstantAdmin(config); | ||
} | ||
function do_not_use_init_experimental(config) { | ||
return new DoNotUseInstantAdmin(config); | ||
} | ||
/** | ||
@@ -506,3 +509,3 @@ * | ||
*/ | ||
class InstantAdminDatabase { | ||
class DoNotUseInstantAdmin { | ||
constructor(_config) { | ||
@@ -520,3 +523,3 @@ this.tx = txInit(); | ||
this.asUser = (opts) => { | ||
const newClient = new InstantAdminDatabase(Object.assign({}, this.config)); | ||
const newClient = new DoNotUseInstantAdmin(Object.assign({}, this.config)); | ||
newClient.impersonationOpts = opts; | ||
@@ -646,3 +649,3 @@ return newClient; | ||
}; | ||
this.config = instantConfigWithDefaults(_config); | ||
this.config = doNotUseConfigWithDefaults(_config); | ||
this.auth = new Auth(this.config); | ||
@@ -652,3 +655,3 @@ this.storage = new Storage(this.config); | ||
} | ||
export { init, init_experimental, id, tx, lookup, i, }; | ||
export { init, init_experimental, do_not_use_init_experimental, id, tx, lookup, i, }; | ||
//# sourceMappingURL=index.js.map |
export default version; | ||
declare const version: "v0.15.0"; | ||
declare const version: "v0.15.1"; | ||
//# sourceMappingURL=version.d.ts.map |
// Autogenerated by publish_packages.clj | ||
const version = "v0.15.0"; | ||
const version = "v0.15.1"; | ||
export default version; | ||
//# sourceMappingURL=version.js.map |
export default version; | ||
declare const version: "v0.15.0"; | ||
declare const version: "v0.15.1"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
// Autogenerated by publish_packages.clj | ||
const version = "v0.15.0"; | ||
const version = "v0.15.1"; | ||
exports.default = version; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@instantdb/admin", | ||
"version": "v0.15.0", | ||
"version": "v0.15.1", | ||
"description": "Admin SDK for Instant DB", | ||
@@ -28,4 +28,4 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@instantdb/core": "v0.15.0" | ||
"@instantdb/core": "v0.15.1" | ||
} | ||
} |
@@ -19,4 +19,4 @@ import { | ||
type QueryResponse, | ||
type InstaQLResponse, | ||
type InstaQLParams, | ||
type DoNotUseQueryResponse, | ||
type InstaQLQueryParams, | ||
type InstantQuery, | ||
@@ -28,3 +28,2 @@ type InstantQueryResult, | ||
type InstantEntity, | ||
type IInstantDatabase, | ||
@@ -44,4 +43,4 @@ // schema types | ||
type ValueTypes, | ||
type InstantSchemaDef, | ||
type InstantUnknownSchema, | ||
type DoNotUseInstantSchema, | ||
type DoNotUseUnknownSchema, | ||
} from "@instantdb/core"; | ||
@@ -68,3 +67,3 @@ | ||
type InstantConfig<Schema extends InstantSchemaDef<any, any, any>> = { | ||
type DoNotUseConfig<Schema extends DoNotUseInstantSchema<any, any, any>> = { | ||
appId: string; | ||
@@ -76,4 +75,4 @@ adminToken: string; | ||
type InstantConfigFilled<Schema extends InstantSchemaDef<any, any, any>> = | ||
InstantConfig<Schema> & { apiURI: string }; | ||
type DoNotUseFilledConfig<Schema extends DoNotUseInstantSchema<any, any, any>> = | ||
DoNotUseConfig<Schema> & { apiURI: string }; | ||
@@ -95,5 +94,5 @@ type FilledConfig = Config & { apiURI: string }; | ||
function instantConfigWithDefaults< | ||
Schema extends InstantSchemaDef<any, any, any>, | ||
>(config: InstantConfig<Schema>): InstantConfigFilled<Schema> { | ||
function doNotUseConfigWithDefaults< | ||
Schema extends DoNotUseInstantSchema<any, any, any>, | ||
>(config: DoNotUseConfig<Schema>): DoNotUseFilledConfig<Schema> { | ||
const defaultConfig = { | ||
@@ -198,7 +197,19 @@ apiURI: "https://api.instantdb.com", | ||
function init_experimental< | ||
Schema extends InstantSchemaDef<any, any, any> = InstantUnknownSchema, | ||
>(config: InstantConfig<Schema>) { | ||
return new InstantAdminDatabase<Schema>(config); | ||
Schema extends InstantGraph<any, any, any>, | ||
WithCardinalityInference extends boolean = true, | ||
>( | ||
config: Config & { | ||
schema: Schema; | ||
cardinalityInference?: WithCardinalityInference; | ||
}, | ||
) { | ||
return new InstantAdmin<Schema, WithCardinalityInference>(config); | ||
} | ||
function do_not_use_init_experimental< | ||
Schema extends DoNotUseInstantSchema<any, any, any> = DoNotUseUnknownSchema, | ||
>(config: DoNotUseConfig<Schema>) { | ||
return new DoNotUseInstantAdmin<Schema>(config); | ||
} | ||
/** | ||
@@ -269,3 +280,3 @@ * | ||
Q extends Schema extends InstantGraph<any, any> | ||
? InstaQLParams<Schema> | ||
? InstaQLQueryParams<Schema> | ||
: Exactly<Query, Q>, | ||
@@ -713,4 +724,6 @@ >( | ||
*/ | ||
class InstantAdminDatabase<Schema extends InstantSchemaDef<any, any, any>> { | ||
config: InstantConfigFilled<Schema>; | ||
class DoNotUseInstantAdmin< | ||
Schema extends DoNotUseInstantSchema<any, any, any>, | ||
> { | ||
config: DoNotUseFilledConfig<Schema>; | ||
auth: Auth; | ||
@@ -722,4 +735,4 @@ storage: Storage; | ||
constructor(_config: InstantConfig<Schema>) { | ||
this.config = instantConfigWithDefaults(_config); | ||
constructor(_config: DoNotUseConfig<Schema>) { | ||
this.config = doNotUseConfigWithDefaults(_config); | ||
this.auth = new Auth(this.config); | ||
@@ -738,4 +751,4 @@ this.storage = new Storage(this.config); | ||
*/ | ||
asUser = (opts: ImpersonationOpts): InstantAdminDatabase<Schema> => { | ||
const newClient = new InstantAdminDatabase<Schema>({ | ||
asUser = (opts: ImpersonationOpts): DoNotUseInstantAdmin<Schema> => { | ||
const newClient = new DoNotUseInstantAdmin<Schema>({ | ||
...this.config, | ||
@@ -762,5 +775,5 @@ }); | ||
*/ | ||
query = <Q extends InstaQLParams<Schema>>( | ||
query = <Q extends InstaQLQueryParams<Schema>>( | ||
query: Q, | ||
): Promise<InstaQLResponse<Schema, Q>> => { | ||
): Promise<DoNotUseQueryResponse<Q, Schema>> => { | ||
return jsonFetch(`${this.config.apiURI}/admin/query`, { | ||
@@ -832,7 +845,7 @@ method: "POST", | ||
*/ | ||
debugQuery = async <Q extends InstaQLParams<Schema>>( | ||
debugQuery = async <Q extends InstaQLQueryParams<Schema>>( | ||
query: Q, | ||
opts?: { rules: any }, | ||
): Promise<{ | ||
result: InstaQLResponse<Schema, Q>; | ||
result: DoNotUseQueryResponse<Q, Schema>; | ||
checkResults: DebugCheckResult[]; | ||
@@ -895,2 +908,3 @@ }> => { | ||
init_experimental, | ||
do_not_use_init_experimental, | ||
id, | ||
@@ -910,3 +924,3 @@ tx, | ||
type User, | ||
type InstaQLParams, | ||
type InstaQLQueryParams, | ||
type Query, | ||
@@ -920,3 +934,2 @@ | ||
type InstantSchemaDatabase, | ||
type IInstantDatabase, | ||
type InstantObject, | ||
@@ -938,4 +951,4 @@ type InstantEntity, | ||
type ValueTypes, | ||
type InstantSchemaDef, | ||
type InstantUnknownSchema, | ||
type DoNotUseInstantSchema, | ||
type DoNotUseUnknownSchema, | ||
}; |
// Autogenerated by publish_packages.clj | ||
const version = "v0.15.0"; | ||
const version = "v0.15.1"; | ||
export default version; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
207902
3147
Updated@instantdb/core@v0.15.1