oak-pay-business/lib/oak-app-domain/ShipOrder/Storage.js

21 lines
476 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.desc = void 0;
const action_1 = require("oak-domain/lib/actions/action");
exports.desc = {
attributes: {
shipId: {
notNull: true,
type: "ref",
ref: "ship"
},
orderId: {
notNull: true,
type: "ref",
ref: "order"
}
},
actionType: "crud",
actions: action_1.genericActions
};