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 9c5d2c1 commit 5c677c5Copy full SHA for 5c677c5
packages/sdk/src/shared/component.ts
@@ -90,11 +90,11 @@ export type ConfiguredProps<T extends ConfigurableProps> = {
90
// as returned by API (configurable_props_json from `afterSave`)
91
export type V1Component<T extends ConfigurableProps = any> = { // eslint-disable-line @typescript-eslint/no-explicit-any
92
name: string;
93
- description: string;
94
- component_type: string;
95
key: string;
96
version: string;
97
configurable_props: T;
+ description?: string;
+ component_type?: string;
98
};
99
100
export type V1DeployedComponent<T extends ConfigurableProps = any> = { // eslint-disable-line @typescript-eslint/no-explicit-any
0 commit comments