├── .gitignore ├── .npmignore ├── README.md ├── curve-thrift ├── AccountSupervisorService.js ├── AgeCheckService.js ├── AuthService.js ├── BotService.js ├── BuddyManagementService.js ├── BuddyService.js ├── CallService.js ├── ChannelApplicationProvidedService.js ├── ChannelService.js ├── LineService.js ├── MessageService.js ├── ShopService.js ├── SnsAdaptorService.js ├── SpotService.js ├── SquareService.js ├── UniversalNotificationService.js └── line_types.js ├── helpers ├── instagram.js └── lirik.js ├── package.json └── src ├── api.js ├── bot.js ├── command.js ├── config.js ├── connect.js ├── main.js └── pinVerifier.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/README.md -------------------------------------------------------------------------------- /curve-thrift/AccountSupervisorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/AccountSupervisorService.js -------------------------------------------------------------------------------- /curve-thrift/AgeCheckService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/AgeCheckService.js -------------------------------------------------------------------------------- /curve-thrift/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/AuthService.js -------------------------------------------------------------------------------- /curve-thrift/BotService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/BotService.js -------------------------------------------------------------------------------- /curve-thrift/BuddyManagementService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/BuddyManagementService.js -------------------------------------------------------------------------------- /curve-thrift/BuddyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/BuddyService.js -------------------------------------------------------------------------------- /curve-thrift/CallService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/CallService.js -------------------------------------------------------------------------------- /curve-thrift/ChannelApplicationProvidedService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/ChannelApplicationProvidedService.js -------------------------------------------------------------------------------- /curve-thrift/ChannelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/ChannelService.js -------------------------------------------------------------------------------- /curve-thrift/LineService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/LineService.js -------------------------------------------------------------------------------- /curve-thrift/MessageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/MessageService.js -------------------------------------------------------------------------------- /curve-thrift/ShopService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/ShopService.js -------------------------------------------------------------------------------- /curve-thrift/SnsAdaptorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/SnsAdaptorService.js -------------------------------------------------------------------------------- /curve-thrift/SpotService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/SpotService.js -------------------------------------------------------------------------------- /curve-thrift/SquareService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/SquareService.js -------------------------------------------------------------------------------- /curve-thrift/UniversalNotificationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/UniversalNotificationService.js -------------------------------------------------------------------------------- /curve-thrift/line_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/curve-thrift/line_types.js -------------------------------------------------------------------------------- /helpers/instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/helpers/instagram.js -------------------------------------------------------------------------------- /helpers/lirik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/helpers/lirik.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/package.json -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/api.js -------------------------------------------------------------------------------- /src/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/bot.js -------------------------------------------------------------------------------- /src/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/command.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/config.js -------------------------------------------------------------------------------- /src/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/connect.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pinVerifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfathdirk/LineAlphatJS/HEAD/src/pinVerifier.js --------------------------------------------------------------------------------