You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ignite/cmd/generate_typescript_client.go
+10-8
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,13 @@ import (
12
12
13
13
const (
14
14
flagUseCache="use-cache"
15
-
msgBufAuth="Generate ts-client depends on a 'buf.build' remote plugin, and as of August 1, 2024, Buf will begin limiting remote plugin requests from unauthenticated users on 'buf.build'. If you send more than ten unauthenticated requests per hour using remote plugins, you’ll start to see rate limit errors. Please authenticate before running ts-client command using 'buf registry login' command and follow the instructions. For more info, check https://buf.build/docs/generate/auth-required."
15
+
msgBufAuth="Generate ts-client uses a 'buf.build' remote plugin. Buf is begin limiting remote plugin requests from unauthenticated users on 'buf.build'. Intensively using this function will get yourate limited. Authenticate with 'buf registry login' to avoid this (https://buf.build/docs/generate/auth-required)."
16
16
)
17
17
18
18
funcNewGenerateTSClient() *cobra.Command {
19
19
c:=&cobra.Command{
20
-
Hidden: true, // hidden util we have a better ts-client.
21
-
Use: "ts-client",
22
-
Short: "TypeScript frontend client",
20
+
Use: "ts-client",
21
+
Short: "TypeScript frontend client",
23
22
Long: `Generate a framework agnostic TypeScript client for your blockchain project.
24
23
25
24
By default the TypeScript client is generated in the "ts-client/" directory. You
0 commit comments