From cf62ee5ccbeda547ff1faea2b685e9fbe5b7a1fe Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Thu, 3 Oct 2019 15:54:49 -0700 Subject: [PATCH] plugin: Add Id and ParentId to ApiInstance type definitions --- plugin/src/Types.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/src/Types.lua b/plugin/src/Types.lua index 047f4c08..c3bea3a9 100644 --- a/plugin/src/Types.lua +++ b/plugin/src/Types.lua @@ -15,6 +15,8 @@ local ApiInstanceMetadata = t.interface({ }) local ApiInstance = t.interface({ + Id = RbxId, + ParentId = t.optional(RbxId), Name = t.string, ClassName = t.string, Properties = t.map(t.string, ApiValue),