Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/zoom-client / src / helpers / constants.js
Size: Mime:
var CONSTANTS = {
  errorTypes: {
    invalid: 'invalid',
    unknown: 'unknown',
    unreachable: 'unreachable',
    missing: 'missing',
    tooLong: 'too-long',
    tooShort: 'too-short',
    alreadyUsed: 'already-used',
    invalidWithThirdParty: 'invalid-with-thirdparty',
    notActivated: 'not-activated',
  },
  userType: {
    premium: 'premium user',
    free: 'free user',
  },
  userPlan: {
    business: 'business',
    indvidual: 'individual',
    free: 'free',
    trial: 'TRIAL',
  },
  timeZone: {
    undefined: 'floating',
  },
  errors: {
    WINDOW_NOT_CLOSED_WITHIN_TIMEOUT: 'window not closed within the timeout',
  },
};

module.exports = CONSTANTS;