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
|`reactQuery.enabled`| if true, will create react hooks that use `@tanstack/react-query` hooks |`false`|
260
+
|`reactQuery.include.protos`| if set, will create the hooks on matched proto filenames or patterns using minimatch |`[]`|
261
+
|`reactQuery.include.packages`| if set, will create the hooks on matched packages files using minimatch |`[]`|
262
+
|`reactQuery.include.patterns`| if set, will create the hooks on matched patterns of files using minimatch(deprecated in favor of packages and protos have been supported minimatch) |`[]`|
|`mobx.enabled`| if true, will create mobx stores that use `mobx`|`false`|
269
+
|`mobx.include.protos`| if set, will create the mobx stores on matched proto filenames or patterns using minimatch |`[]`|
270
+
|`mobx.include.packages`| if set, will create the mobx stores on matched packages files using minimatch |`[]`|
271
+
|`mobx.include.patterns`| if set, will create the mobx stores on matched patterns of proto files using minimatch(deprecated in favor of packages and protos have been supported minimatch) |`[]`|
|`pinia.enabled`| if true, will create pinia stores that use `pinia`|`false`|
279
+
|`mobx.include.protos`| if set, will create the pinia stores on matched proto filenames or patterns using minimatch |`[]`|
280
+
|`mobx.include.packages`| if set, will create the pinia stores on matched packages files using minimatch |`[]`|
281
+
|`mobx.include.patterns`| if set, will create the pinia stores on matched patterns of proto files using minimatch(deprecated in favor of packages and protos have been supported minimatch) |`[]`|
|`prototypes.typingsFormat.customTypes.useCosmosSDKDec`| enable handling "prototypes.typingsFormat.customTypes.useCosmosSDKDec" proto custom type. Used to show decimal fields with the custom type correctly. Highly recommend set to true. |`false`|
289
+
|`prototypes.typingsFormat.longLibrary`| 'long' or 'bigint', the way of generating int64 proto types, set to 'bigint' to enable using more stable built-in type |`long`|
277
290
|`prototypes.typingsFormat.useDeepPartial`| defaults to true, but if disabled uses the `Partial` TS type |`true`|
278
291
|`prototypes.typingsFormat.useExact`| defaults to false, but if enabled uses the `Exact` TS type |`false`|
279
292
|`prototypes.typingsFormat.timestamp`| use either `date` or `timestamp` for `Timestamp` proto type | "date" |
280
293
|`prototypes.typingsFormat.duration`| use either `duration` or `string` for `Duration` proto type | "duration"|
|`classesUseArrowFunctions`| classes use arrow functions instead of `bind()`ing in constructors |`false`|
318
332
|`includeExternalHelpers`| exports a few helpers functions in `extern.ts`|`false`|
@@ -462,7 +476,7 @@ const res = await signAndBroadcast({
462
476
463
477
## LCD Clients
464
478
465
-
For querying data via REST endpoints, you can use LCD Clients. For a better developer experience, you can generate a factory of scoped bundles of all LCD Clients with the `lcdClients` option.
479
+
For querying data via REST endpoints, you can use LCD Clients. For a better developer experience, you can generate a factory of scoped bundles of all LCD Clients with the `lcdClients` option.
466
480
467
481
```ts
468
482
const options:TelescopeOptions= {
@@ -540,7 +554,7 @@ main().then(() => {
540
554
```
541
555
## RPC Clients
542
556
543
-
For querying data via RPC endpoints, you can use RPC Clients. For a better developer experience, you can generate a factory of scoped bundles of all RPC Clients with the `rpcClients` option.
557
+
For querying data via RPC endpoints, you can use RPC Clients. For a better developer experience, you can generate a factory of scoped bundles of all RPC Clients with the `rpcClients` option.
544
558
545
559
```ts
546
560
const options:TelescopeOptions= {
@@ -593,7 +607,7 @@ const main = async () => {
593
607
594
608
If you want to instantiate a single client, you can generate RPC classes with the `rpcClients` option;
595
609
596
-
For any module that has a `Msg`, `Query` or `Service` type, a
610
+
For any module that has a `Msg`, `Query` or `Service` type, a
0 commit comments