For about 6 months we have been using without fail item instanceof gapi.drive.realtime.CollaborativeList to detect if a property was a CollaborativeList. This started failing last week and we checked gapi.drive.realtime and it does not appear that CollabroativeList or any of the other models described in the documentation are present. https://developers.google.com/drive/realtime/reference/. We are still able to access the standard drive functionality so it does not appear that an authentication issue. And the function that makes that call is wrapped in gapi.load("drive-realtime", function() {}). Does any have any clue why the models are no longer present?
gapi.load("drive-realtime", function() {
if("test" instanceof gapi.drive.realtime.CollaborativeList){
console.log("hi")
}
})
This function will return Uncaught TypeError: Expecting a function in instanceof check, but got undefined
This is because gapi.drive.realtime.CollaborativeList does not exist in in gapi.drive.realtime