From 4aa013611c5f5102ea0574d2e64676126e354331 Mon Sep 17 00:00:00 2001 From: Ashley George Date: Wed, 14 Jun 2023 15:09:53 -0400 Subject: [PATCH] PLTCONN-3397-add-schema-obj-type --- lib/commands/command.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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 }