0.23.3

(fix): The NPM publish job is not generated if the token environment variable is not specified.

(feat): The snippets now use the client variable name like so:

1import { AcmeClient } from "acme";
2
3const client = new AcmeClient({ apiKey: "YOUR_API_KEY" });
4await client.users.create({
5 firstName: "john",
6 lastName: "doe"
7});