├── LICENSE ├── README.md ├── data └── square.json ├── download └── x.jpg ├── examples ├── getchatmid.js ├── square.js └── talk.js ├── package.json ├── pkg ├── BotLib.js ├── config.js ├── main.js └── pinVerifier.js ├── thrift ├── AccountSupervisorService.js ├── AgeCheckService.js ├── AuthService.js ├── BotService.js ├── BuddyManagementService.js ├── BuddyService.js ├── CallService.js ├── ChannelApplicationProvidedService.js ├── ChannelService.js ├── MessageService.js ├── ShopService.js ├── SnsAdaptorService.js ├── SpotService.js ├── SquareService.js ├── TalkService.js ├── UniversalNotificationService.js └── line_types.js └── version.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/README.md -------------------------------------------------------------------------------- /data/square.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/data/square.json -------------------------------------------------------------------------------- /download/x.jpg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/getchatmid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/examples/getchatmid.js -------------------------------------------------------------------------------- /examples/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/examples/square.js -------------------------------------------------------------------------------- /examples/talk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/examples/talk.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/package.json -------------------------------------------------------------------------------- /pkg/BotLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/pkg/BotLib.js -------------------------------------------------------------------------------- /pkg/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/pkg/config.js -------------------------------------------------------------------------------- /pkg/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/pkg/main.js -------------------------------------------------------------------------------- /pkg/pinVerifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/pkg/pinVerifier.js -------------------------------------------------------------------------------- /thrift/AccountSupervisorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/AccountSupervisorService.js -------------------------------------------------------------------------------- /thrift/AgeCheckService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/AgeCheckService.js -------------------------------------------------------------------------------- /thrift/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/AuthService.js -------------------------------------------------------------------------------- /thrift/BotService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/BotService.js -------------------------------------------------------------------------------- /thrift/BuddyManagementService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/BuddyManagementService.js -------------------------------------------------------------------------------- /thrift/BuddyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/BuddyService.js -------------------------------------------------------------------------------- /thrift/CallService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/CallService.js -------------------------------------------------------------------------------- /thrift/ChannelApplicationProvidedService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/ChannelApplicationProvidedService.js -------------------------------------------------------------------------------- /thrift/ChannelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/ChannelService.js -------------------------------------------------------------------------------- /thrift/MessageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/MessageService.js -------------------------------------------------------------------------------- /thrift/ShopService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/ShopService.js -------------------------------------------------------------------------------- /thrift/SnsAdaptorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/SnsAdaptorService.js -------------------------------------------------------------------------------- /thrift/SpotService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/SpotService.js -------------------------------------------------------------------------------- /thrift/SquareService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/SquareService.js -------------------------------------------------------------------------------- /thrift/TalkService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/TalkService.js -------------------------------------------------------------------------------- /thrift/UniversalNotificationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/UniversalNotificationService.js -------------------------------------------------------------------------------- /thrift/line_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BroNils/LINE-FreshBot/HEAD/thrift/line_types.js -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.0 2 | --------------------------------------------------------------------------------