Update ApiSubcribeMessage signature

This commit is contained in:
Lucien Greathouse
2019-11-14 18:15:33 -08:00
parent d0d7c58af1
commit 57b28faa74

View File

@@ -33,9 +33,9 @@ local ApiInstanceUpdate = t.interface({
}) })
local ApiSubscribeMessage = t.interface({ local ApiSubscribeMessage = t.interface({
removedInstances = t.array(RbxId), removed = t.array(RbxId),
addedInstances = t.map(RbxId, ApiInstance), added = t.map(RbxId, ApiInstance),
updatedInstances = t.array(ApiInstanceUpdate), updated = t.array(ApiInstanceUpdate),
}) })
local ApiInfoResponse = t.interface({ local ApiInfoResponse = t.interface({