feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
require('../lib/node_loader');
var Jibo = require('../lib/core');
var Service = require('../lib/service');
var apiLoader = require('../lib/api_loader');
apiLoader.services['notification'] = {};
Jibo.Notification = Service.defineService('notification', ['2015-05-05']);
require('../lib/services/notification');
Object.defineProperty(apiLoader.services['notification'], '2015-05-05', {
get: function get() {
var model = require('../apis/notification-2015-05-05.min.json');
return model;
},
enumerable: true,
configurable: true
});
module.exports = Jibo.Notification;