We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6fa1c0 commit 381a5a2Copy full SHA for 381a5a2
packages/sdk/src/shared/index.ts
@@ -800,13 +800,19 @@ export abstract class BaseClient {
800
params.q = opts.q;
801
}
802
if (opts?.hasActions != null) {
803
- params.has_actions = opts.hasActions ? "1" : "0";
+ params.has_actions = opts.hasActions
804
+ ? "1"
805
+ : "0";
806
807
if (opts?.hasComponents != null) {
- params.has_components = opts.hasComponents ? "1" : "0";
808
+ params.has_components = opts.hasComponents
809
810
811
812
if (opts?.hasTriggers != null) {
- params.has_triggers = opts.hasTriggers ? "1" : "0";
813
+ params.has_triggers = opts.hasTriggers
814
815
816
817
818
this.addRelationOpts(params, opts);
0 commit comments