Genshii
Genshii
Aarktype
Created by Genshii on 3/21/2025 in #questions
Record with specific keys?
Oh apparently I didn't search hard enough: https://discord.com/channels/957797212103016458/1310628677561618513 Object.fromEntries it is :(
3 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
can't find it in the source
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
Can you point me to where this is?
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
yeah i could see there being a json and json.stringify keyword
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
yeah that would be awesome
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
oh right, thats for objects specifically
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
Sort of related, but how do you feel about allowing json primitives? Currently object.json rejects something like 10 but that is also a valid Json value.
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
I'll open an issue
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
Yeah I think anything that's not assignable to the internal Json type should be rejected by object.json
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
Hmm this isn't working how I would expect
const jsonSchema = type("object.json")
const shouldBeArkErrors = jsonSchema(new Map())
if (shouldBeArkErrors instanceof type.errors) console.log(shouldBeArkErrors.summary)
// doesn't log
const jsonSchema = type("object.json")
const shouldBeArkErrors = jsonSchema(new Map())
if (shouldBeArkErrors instanceof type.errors) console.log(shouldBeArkErrors.summary)
// doesn't log
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
ty
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
yeah idk how i missed that lol
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
object.json.stringify
27 replies
Aarktype
Created by Genshii on 3/4/2025 in #questions
type for valid JSON value?
wait im blind
27 replies
Aarktype
Created by Genshii on 2/26/2025 in #questions
Configure errors in a scope
thanks!
44 replies
Aarktype
Created by Genshii on 2/26/2025 in #questions
Configure errors in a scope
gotcha, I'll play around with this, I think I'm on the right track
44 replies
Aarktype
Created by Genshii on 2/26/2025 in #questions
Configure errors in a scope
Dumb example but are saying that if I do something like this:
const foo = type.module(
{
bar: {
name: "string",
myKey: "number",
},
},
{
domain: {
message: (ctx) => {
console.log(ctx)
return "foo"
},
},
},
)
const foo = type.module(
{
bar: {
name: "string",
myKey: "number",
},
},
{
domain: {
message: (ctx) => {
console.log(ctx)
return "foo"
},
},
},
)
it would show "foo" for every validation failure on bar?
44 replies
Aarktype
Created by Genshii on 2/26/2025 in #questions
Configure errors in a scope
well i suppose then i'm back to square one lol, because error handlers only apply shallowly anyway
44 replies
Aarktype
Created by Genshii on 2/26/2025 in #questions
Configure errors in a scope
ohh i see, i thought modules defined an object type, but I realize that's not the case at all what I'm really trying to do is this I think:
const foo = type.module({
bar: {
name: "string",
myKey: "number",
},
})
const fooArray = foo.bar.array()
const foo = type.module({
bar: {
name: "string",
myKey: "number",
},
})
const fooArray = foo.bar.array()
44 replies
Aarktype
Created by Genshii on 2/26/2025 in #questions
Configure errors in a scope
right, my intention was to then set the error handlers on domain etc for that module
44 replies