1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
/**
* Registered as `js-data` in NPM and Bower.
* #### Script tag
* ```js
* window.JSData
* ```
* #### CommonJS
* ```js
* var JSData = require('js-data')
* ```
* #### ES6 Modules
* ```js
* import JSData from 'js-data'
* ```
* #### AMD
* ```js
* define('myApp', ['js-data'], function (JSData) { ... })
* ```
*
* @module js-data
*/
/**
* Details of the current version of the `js-data` module.
*
* @name version
* @memberof module:js-data
* @type {Object}
* @property {string} full The full semver value.
* @property {number} major The major version number.
* @property {number} minor The minor version number.
* @property {number} patch The patch version number.
* @property {(string|boolean)} alpha The alpha version value, otherwise `false`
* if the current version is not alpha.
* @property {(string|boolean)} beta The beta version value, otherwise `false`
* if the current version is not beta.
*/
const version = {
full: '<%= pkg.version %>',
major: parseInt('<%= major %>', 10),
minor: parseInt('<%= minor %>', 10),
patch: parseInt('<%= patch %>', 10),
alpha: '<%= alpha %>' !== 'false' ? '<%= alpha %>' : false,
beta: '<%= beta %>' !== 'false' ? '<%= beta %>' : false
}
/**
* {@link Collection} class.
* @name module:js-data.Collection
*/
import Collection from './Collection'
/**
* {@link Container} class.
* @name module:js-data.Container
*/
import Container from './Container'
/**
* {@link DataStore} class.
* @name module:js-data.DataStore
*/
import DataStore from './DataStore'
/**
* {@link LinkedCollection} class.
* @name module:js-data.LinkedCollection
*/
import LinkedCollection from './LinkedCollection'
/**
* {@link Mapper} class.
* @name module:js-data.Mapper
*/
import Mapper from './Mapper'
/**
* {@link Query} class.
* @name module:js-data.Query
*/
import Query from './Query'
/**
* {@link Record} class.
* @name module:js-data.Record
*/
import Record from './Record'
/**
* {@link Schema} class.
* @name module:js-data.Schema
*/
import Schema from './Schema'
import utils from './utils'
export * from './decorators'
const DS = DataStore
export {
Collection,
Container,
DataStore,
DS, // Backwards compatiblity
LinkedCollection,
Mapper,
Query,
Record,
Schema,
utils,
version
}