Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
feature/PC-1028 | Initial migration (#1)
Browse files Browse the repository at this point in the history
* Initial code migration

* Separate out auth0 specific logic.

* Almost done with auth0 tests.

* Finish auth0 tests.

* Refactor.

* Add ato tests.

* Add console tests.

* Fix fetch-mock type declarations

* Rename ato files to login

* Rename ato class to login

* Add process import

* Split isGoodLogin type

* Added default response parameter
  • Loading branch information
polson136 authored Apr 22, 2019
1 parent befbfdb commit aabd1f6
Show file tree
Hide file tree
Showing 20 changed files with 7,168 additions and 1 deletion.
111 changes: 111 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
dist/

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# IntelliJ project files
.idea
*.iml
out
gen

# Emacs
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*

# Org-mode
.org-id-locations
*_archive

# flymake-mode
*_flymake.*

# eshell files
/eshell/history
/eshell/lastdir

# elpa packages
/elpa/

# reftex files
*.rel

# AUCTeX auto folder
/auto/

# cask packages
.cask/

# Flycheck
flycheck_*.el

# projectiles files
.projectile

# directory configuration
.dir-locals.el

# Mac OS Finder metadata
.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Decision AI Node.js SDK
# Decision-AI Node.js SDK
Loading

0 comments on commit aabd1f6

Please sign in to comment.