diff --git a/lib/commands/command.ts b/lib/commands/command.ts index 4748d40..f76f4b0 100644 --- a/lib/commands/command.ts +++ b/lib/commands/command.ts @@ -38,12 +38,13 @@ export type Attributes = { * SchemaAttribute defines an attribute for schema */ export type SchemaAttribute = { - name: string, - description: string, - type: string, - required?: boolean, - multi?: boolean, - managed?: boolean, + name: string + description: string + type: string + required?: boolean + multi?: boolean + managed?: boolean + schemaObjectType?: string entitlement?: boolean }