Skip to content

Commit

Permalink
Update VariableValueType type to include undefined
Browse files Browse the repository at this point in the history
After upgrading openapi-typescript to latest version it changed back...
  • Loading branch information
davelopez committed Jul 17, 2024
1 parent aa09e82 commit 3dcada2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/api/configTemplates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type TemplateVariable =
| components["schemas"]["TemplateVariablePathComponent"]
| components["schemas"]["TemplateVariableBoolean"];
export type TemplateSecret = components["schemas"]["TemplateSecret"];
export type VariableValueType = string | boolean | number;
export type VariableValueType = (string | boolean | number) | undefined;
export type VariableData = { [key: string]: VariableValueType };
export type SecretData = { [key: string]: string };

Expand Down

0 comments on commit 3dcada2

Please sign in to comment.