initial commit

This commit is contained in:
2026-03-16 13:53:01 +02:00
parent 631dc7df36
commit 81e6e0a7a2
23381 changed files with 8224173 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
/** Specific type of node for media. All nodes returned by {@link jibo.kb.media.MediaModel}
* will be MediaNodes.
*
* @class MediaNode
* @extends jibo.kb.Node
* @memberof jibo.kb.media
*/
/** UUID of the media.
*
* @name jibo.kb.media.MediaNode#id
* @type {String}
*/
/** The loopId this media belongs to.
*
* @name jibo.kb.media.MediaNode#loopId
* @type {String}
*/
/** The url that points to the actual media content.
*
* @name jibo.kb.media.MediaNode#url
* @type {String}
*/
/** Get the content ID of the thumbnail for this media item.
* @method jibo.kb.media.MediaNode#getThumbnailId
* @param {jibo.media#ThumbnailType} [type=thumb_robot] Type of thumbnail.
* @returns {string} Content ID of the thumbnail, if any,
* `undefined` otherwise.
*/