remove disabled from createInterface

This commit is contained in:
Matt Hill
2024-08-08 22:26:42 -06:00
parent c289629a28
commit 9237984782
2 changed files with 8 additions and 9 deletions

View File

@@ -256,7 +256,6 @@ export class StartSdk<Manifest extends T.Manifest, Store> {
id: string
description: string
hasPrimary: boolean
disabled: boolean
type: ServiceInterfaceType
username: null | string
path: string

View File

@@ -249,15 +249,15 @@ export type SdkPropertiesValue =
}
| {
type: "string"
/** Value */
/** The value to display to the user */
value: string
/** A human readable description or explanation of the value */
description?: string
/** (string/number only) Whether or not to mask the value, for example, when displaying a password */
/** Whether or not to mask the value, for example, when displaying a password */
masked: boolean
/** (string/number only) Whether or not to include a button for copying the value to clipboard */
/** Whether or not to include a button for copying the value to clipboard */
copyable?: boolean
/** (string/number only) Whether or not to include a button for displaying the value as a QR code */
/** Whether or not to include a button for displaying the value as a QR code */
qr?: boolean
}
@@ -273,15 +273,15 @@ export type PropertiesValue =
}
| {
type: "string"
/** Value */
/** The value to display to the user */
value: string
/** A human readable description or explanation of the value */
description: string | null
/** (string/number only) Whether or not to mask the value, for example, when displaying a password */
/** Whether or not to mask the value, for example, when displaying a password */
masked: boolean
/** (string/number only) Whether or not to include a button for copying the value to clipboard */
/** Whether or not to include a button for copying the value to clipboard */
copyable: boolean | null
/** (string/number only) Whether or not to include a button for displaying the value as a QR code */
/** Whether or not to include a button for displaying the value as a QR code */
qr: boolean | null
}