-
Notifications
You must be signed in to change notification settings - Fork 52
feat(zitadel-proto): add CJS and ESM support; export in Zitadel api s… #398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…tructure; add build configuration
@tafaust is attempting to deploy a commit to the zitadel Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Do you see a way to not have to map every service like we do in |
Ah, you're asking for an unstructured export on top of the structured export? Sure, I can add that! |
@peintnermax I added the required changes. Please be aware that
Side note: Import from |
@peintnermax when writing a test for the legacy imports to work, I came across: import { Organization as Org1 } from "@zitadel/proto/zitadel/org/v2/org_pb"; // does not work; has no exported member and defaults to the .d.ts file
import { Organization as Org2 } from "@zitadel/proto/zitadel/org/v2/org_pb.d.ts"; // works; exports the Organization type Just to give you a taste what the omit of file ending (in a *.mjs file) will entail regarding my side note of the previous comment. |
@peintnermax please let me know if you want me to drop commit 347b418. |
…tructure; add build configuration
Definition of Ready