From 57b28faa741f48a3fe10afd44f3a3f1308037f43 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Thu, 14 Nov 2019 18:15:33 -0800 Subject: [PATCH] Update ApiSubcribeMessage signature --- plugin/src/Types.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/src/Types.lua b/plugin/src/Types.lua index ff7d7267..dac5f06c 100644 --- a/plugin/src/Types.lua +++ b/plugin/src/Types.lua @@ -33,9 +33,9 @@ local ApiInstanceUpdate = t.interface({ }) local ApiSubscribeMessage = t.interface({ - removedInstances = t.array(RbxId), - addedInstances = t.map(RbxId, ApiInstance), - updatedInstances = t.array(ApiInstanceUpdate), + removed = t.array(RbxId), + added = t.map(RbxId, ApiInstance), + updated = t.array(ApiInstanceUpdate), }) local ApiInfoResponse = t.interface({