@medusajs/utils
Version:
Medusa utilities functions shared by Medusa core and Modules
58 lines • 1.53 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextProperty = void 0;
const base_1 = require("./base");
const primary_key_1 = require("./primary-key");
/**
* The TextProperty is used to define a textual property
*/
class TextProperty extends base_1.BaseProperty {
constructor() {
super(...arguments);
this.dataType = {
name: "text",
options: {
searchable: false,
},
};
}
/**
* This method indicates that the property is the data model's primary key.
*
* @example
* import { model } from "@medusajs/framework/utils"
*
* const Product = model.define("Product", {
* code: model.text().primaryKey(),
* // ...
* })
*
* export default Product
*
* @customNamespace Property Configuration Methods
*/
primaryKey() {
return new primary_key_1.PrimaryKeyModifier(this);
}
/**
* This method indicates that a text property is searchable.
*
* @example
* import { model } from "@medusajs/framework/utils"
*
* const MyCustom = model.define("my_custom", {
* name: model.text().searchable(),
* // ...
* })
*
* export default MyCustom
*
* @customNamespace Property Configuration Methods
*/
searchable() {
this.dataType.options.searchable = true;
return this;
}
}
exports.TextProperty = TextProperty;
//# sourceMappingURL=text.js.map
;