Type alias ErrorType

Possible error types generated when the Meet Web Add-ons SDK throws an error.

Signature

type ErrorType =
  | 'CoactivityIsOngoing' // Cannot perform operation while a collaboration is ongoing.
  | 'DestinationNotReady' // The recipient frame isn't connected using the Meet Add-ons SDK and cannot receive the notification.
  | 'InvalidCloudProjectNumber' // Cloud Project Number provided by Meet doesn't match the one passed in by the Meet Add-ons SDK.
  | 'InvalidCollaborationStartingState' // CollaborationStartingState iframe URLs don't match the origins of the URLs provided in the add-on manifest.
  | 'MissingUrlParameter' // Missing required Meet Add-ons SDK URL parameter.
  | 'NeedsMainStageContext' // This method can only be invoked if the add-on is running in the main stage.
  | 'NeedsSidePanelContext' // This method can only be invoked if the add-on is running in the side panel.
  | 'NotSupportedInStandalone' // This method isn't supported in standalone mode.
  | 'RequiresEapEnrollment' // Requested method requires EAP enrollment.
  | 'SizeLimitExceededCollaborationStartingState' // The size of the collaborationStartingState URLs and/or its data exceeds the limits allowed.
  | 'SizeLimitExceededFrameToFrameMessage' // The size of the frame-to-frame message exceeds the limits allowed.
  | 'UserNotInitiator' // The user isn't the initiator of the current collaboration.
  | 'InternalError'; // An internal Meet error has occurred.