This message was deleted.
# general
m
This message was deleted.
s
There is a bug in the last release, we will have another one hopefully tomorrow https://github.com/ory/keto/pull/1025
You have to use deep imports right now in that package
f
is there a slightly earlier version i can use that's confirmed to work? happy to use that to prototype stuff until the fix is out
s
You can use deep imports, something similar to
import acl from '@ory/keto-grpc-client/ory/keto/relation_tuples/v1alpha2/acl'
Alternatively master should work https://github.com/ory/keto/tree/master/proto
f
hmm when i do that i still don't get correct typing though
s
What is the error specifically?
f
Not being able to read type definitions.
the same happens when trying to import just v1alpha2; the imported module doesn't have any definitions
s
are you on the latest version?
maybe try
import relationTuples from '@ory/keto-grpc-client/ory/keto/relation_tuples/v1alpha2/relation_tuples_pb'
f
yeah latest version. that seems to let me import something that i can use... but can't seem to actually figure out how to use it. would you be able to write a couple of lines of code with an expand/check request?